/* 共通 */
* {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    margin: 0;
    padding: 0;
}

.SP {
    display: none;
}

@media all and (max-width: 480px) {}

body {
    /* background-color: #193A56; */
    background-color: #ececec;
}

#Header_Wrap,
#News_Wrap {
    display: flex;
    /* 子要素をflexboxで揃える */
    /*flex-direction: column;*/
    /* 子要素をflexboxにより縦方向に揃える */
    justify-content: space-between;
    /* 子要素をflexboxにより中央に配置する */
    align-items: center;
    /* 子要素をflexboxにより中央に配置する */
}

h1 {
    font-size: 0px;
}

h2 {
    letter-spacing: 2 !important;
    font-size: 2.5rem;
    font-weight: bold;
}

h2 small {
    font-size: 0.91666666666667rem;
    position: relative;
}

h3 {
    letter-spacing: 2 !important;
    font-size: 2rem;
    font-weight: bold;
}

h3 small {
    font-size: 0.83333333333333rem;
    position: relative;
    padding-left: 20px;
}

h3 p {
    font-size: 0.83333333333333rem;
    font-weight: normal;
    padding: 2%;
}

.Txt_Vertical {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    /* すべて縦方向に表示 */
}

.Ttl_Wrap {
    position: relative;
}

.Ttl_Border {
    border: solid 1px rgba(84, 110, 122, 0.25);
    width: 500px;
    position: absolute;
    top: 50%;
    left: -45%;
}

/*---↓↓↓ HERO ここから ↓↓↓--------------------------------------------------------------------------*/
#Hero_Wrap {
    width: auto;
    min-height: 1080px;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    height: 100vh;
    overflow: hidden;
    position: relative;
}

a {
    text-decoration: none;
}

a img {
    border: none;
}

#SP_Nav_Wrap {
    display: none;
}

#PC_Nav_Wrap {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    z-index: 99;
    justify-content: space-between;
    text-shadow: 0px 0.083333333333333rem 0.625rem rgba(0, 0, 0, 0.50);
    background: linear-gradient(rgba(14, 74, 103, 0.50), rgba(0, 0, 0, 0));
}

#PC_Nav_Wrap ul {
    justify-content: flex-end;
    align-items: center;
    list-style: none;
}

.Logo {
    text-shadow: 0px 0.083333333333333rem 0.625rem rgba(0, 0, 0, 0.50);
    height: 65px;
    width: 100%;
    object-fit: contain;
}

.Nav_Img {
    height: 40px;
    width: auto;
    padding-bottom: 12px;
    text-shadow: 0px 0.083333333333333rem 0.625rem rgba(0, 0, 0, 0.50);
}

.Nav_Txt {
    min-width: 145px;
}

/*==================================================
横並びのための設定
===================================*/

.Header_Nav {
    display: flex;
    margin: 0 0 52.0833333333333rem 0;
    list-style: none;
}

.Header_Nav li a {
    display: block;
    text-decoration: none;
    color: #fefefe;
    font-size: 0.83333333333333rem;
}

.Header_Nav li {
    margin: 0 10px;
}

/*==================================================U
 5-3-9 テキストが入れ替わる
===================================*/


.Header_Nav li a {
    /*テキストの基点とするためrelativeを指定*/
    position: relative;
    /*はみ出る要素を隠す*/
    overflow: hidden;
    padding: 23px;
}

.Header_Nav li p {
    /*絶対配置でテキストの位置を決める*/
    position: absolute;
    left: 50%;
    top: 0;
    /*アニメーションの指定*/
    transition: all .5s;
    transform: translate(-50%, 0);
    /*X方向に-50% ※中央寄せにするため*/
    /*ブロック要素にして透過なし、テキスト折り返しなし*/
    display: inline-block;
    opacity: 1;
    white-space: nowrap;
}

/*差し替わるテキストの設定*/
.Header_Nav li p:nth-child(2) {
    opacity: 0;
    /*透過0に*/
    transform: translate(-50%, 100%);
    /*X方向に-50% Y方向に100%*/
}

/*hoverするとテキストが入れ替わる設定*/
.Header_Nav li:hover p:nth-child(1) {
    opacity: 0;
    /*透過0に*/
    transform: translate(-50%, -100%);
    /*X方向に-50% Y方向に-100%*/
}

.Header_Nav li:hover p:nth-child(2) {
    opacity: 1;
    /*不透明に*/
    transform: translate(-50%, 0);
    /*X方向に-50% Y方向に0*/
}

#Hero_Txt_Wrap img {
    position: absolute;
    top: 50%;
    left: 65%;
}


@media screen and (min-width:1181px) and (max-width:1440px) {
    .Header_Nav li p {
        /*絶対配置でテキストの位置を決める*/
        position: absolute;
        left: 50%;
        top: 0;
        /*アニメーションの指定*/
        transition: all .5s;
        transform: translate(-50%, 0);
        /*X方向に-50% ※中央寄せにするため*/
        /*ブロック要素にして透過なし、テキスト折り返しなし*/
        display: inline-block;
        opacity: 1;
        white-space: nowrap;
        font-size: 18px;
    }

    .Nav_Txt {
        min-width: 25%;
    }

    .Nav_Img {
        height: 3.5vh;
        width: auto;
        padding-bottom: 1vh;
        text-shadow: 0px 0.083333333333333rem 0.625rem rgb(0 0 0 / 50%);
    }

    .Logo {
        text-shadow: 0px 0.083333333333333rem 0.625rem rgb(0 0 0 / 50%);
        height: 50px;
        width: 100%;
        object-fit: contain;
    }

    .Header_Nav li a {
        position: relative;
        overflow: hidden;
        padding: 13px;
    }

}

/*====== 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.Scrolldown1 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    left: 10%;
    bottom: 0;
    /*全体の高さ*/
    height: 80px;
}

/*Scrollテキストの描写*/
.Scrolldown1 span {
    /*描画位置*/
    position: absolute;
    left: -35px;
    top: -35px;
    /*テキストの形状*/
    color: #eee;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

/* 線の描写 */
.Scrolldown1::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    /*線の形状*/
    width: 1px;
    height: 60px;
    background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }

    50% {
        height: 45px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 70px;
        opacity: 0;
    }
}

/*---↑↑↑ HERO ここまで ↑↑↑--------------------------------------------------------------------------*/

/*---↓↓↓ NEWS ここから ↓↓↓--------------------------------------------------------------------------*/
#News_Wrap {
    background-color: #193A56;
    color: #c0c4c5;
}

.News_Ttl,
.breadcrumbs {
    white-space: nowrap;
    /*折り返させない*/
    overflow: hidden;
    /*1行のみで、はみ出したものは隠す*/
    text-overflow: ellipsis;
    /*文末を・・・にする*/
    max-width: 65vw;
}

.News_Nav {
    display: flex;
    flex-wrap: wrap;
    /*スマホ表示折り返し用なのでPCのみなら不要*/
    margin: 0 100px 20px 100px;
    list-style: none;
}

.News_Nav li a {
    display: block;
    /*padding:10px 30px;*/
    text-decoration: none;
    color: #c0c4c5;
}


/*==================================================
 5-3-3 左から右に線が伸びる（下部）
===================================*/
.News_Nav li a {
    /*線の基点とするためrelativeを指定*/
    position: relative;
    color: #c0c4c5;
}

.News_Nav li.current a,
.News_Nav li a:hover {
    color: #c0c4c5;
}

.News_Nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c0c4c5;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
}

/*現在地とhoverの設定*/
.News_Nav li.current a::after,
.News_Nav li a:hover::after {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
}

/*記事一覧はこちらBtn*/
.Navy_Page_Link_Btn a p,
.Navy_Page_Link_Btn a {
    border-bottom: #c0c4c5 solid 1px;
    text-underline-offset: 8px;
    color: #c0c4c5;
    transition: color .3s;
}

.Navy_Page_Link_Btn a p:hover {
    color: #78c2c4;
}


.News_Under_Img {
    background-image: url("common/img/Navy_Tryangle.png");
}

.Link_Border_News_Parent {
    position: relative;
    border-bottom: 1px solid #546e7a;
}

.Link_Border_News {
    width: 507px;
    border: solid 1px #c0c4c5;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 60;
}

/*---↑↑↑ NEWS ここまで ↑↑↑--------------------------------------------------------------------------*/

/*---↓↓↓ ABOUT ここから ↓↓↓--------------------------------------------------------------------------*/
#About_Wrap {
    color: #546e7a;
    /* padding-top: 15rem; */
    background: #d4d4d5;
}

.Gray_Page_Link_Btn a p {
    text-underline-offset: 8px;
    color: #546e7a;
    /* padding-bottom: 8rem; */
    padding-top: 3rem;
    transition: color .3s;
    margin-top: 10%;
}

.Gray_Page_Link_Btn a p:hover {
    color: #78c2c4;
}

.Txt_Wrap {
    padding-left: 2rem;
    padding-top: 3rem;
}

.About_Txt {
    line-height: 3rem;
    letter-spacing: 5px;
    color: #546e7a;
}

.Link_Txt {
    z-index: 60;
}

.Link_Border_Parent {
    position: relative;
}

.Link_Border {
    width: 507px;
    border: solid 1px rgba(84, 110, 122, 0.25);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 60;
}

/*---↑↑↑ ABOUT ここまで ↑↑↑--------------------------------------------------------------------------*/

/*---↓↓↓ TRAVEL ここから ↓↓↓--------------------------------------------------------------------------*/
#Travel_Wrap {
    color: #546e7a;
    /* padding-top: 20rem; */
    height: 100%;
    background: #ececec;
}

#Travel_Wrap h2 small {
    font-size: 0.91666666666667rem;
    position: relative;
}

.White_Page_Link_Btn a p {
    text-decoration: underline double;
    text-underline-offset: 8px;
    color: #546e7a;
    padding-bottom: 8rem;
    padding-top: 3rem;
    transition: color .3s;
}

.White_Page_Link_Btn a p:hover {
    color: #78c2c4;
}

/*TRAVEL 左に文字（個人、その他）*/
.Travel_Left_Wrap {
    height: 80vh;
}

.Travel_Left_Case {
    position: relative;
}

.Travel_Img_Txt_Back_Left {
    width: auto;
    height: 100%;
    z-index: 20;
    position: absolute;
    bottom: -164px;
    left: 0;
}

.Travel_Img_Left_Wrap {
    width: 100%;
    height: 840px;
    z-index: 10;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
}

.Travel_Img_Left {
    width: 70vw;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.Travel_Img_Back_Left {
    height: 100%;
    position: absolute;
    top: 107px;
    left: 148px;
}

.Txt_Left_Bg {
    position: relative;
}

.Txt_Left {
    position: absolute;
    overflow-wrap: normal;
    top: 24%;
    right: 6%;
    z-index: 32;
}

/*TRAVEL 右に文字（個人、その他）*/
.Travel_Right_Wrap {
    height: 80vh;
}

.Travel_Right_Case {
    position: relative;
}

.Travel_Img_Txt_Back_Right {
    width: auto;
    height: 100%;
    z-index: 20;
    position: absolute;
    bottom: -164px;
    right: 0;
}

.Travel_Img_Right_Wrap {
    width: 100%;
    height: 840px;
    z-index: 10;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
}

.Travel_Img_Right {
    width: 70vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.Travel_Img_Back_Right {
    height: 100%;
    position: absolute;
    top: 107px;
    right: 148px;
}

.Txt_Right_Bg {
    position: relative;
}

.Txt_Right {
    position: absolute;
    z-index: 32;
    overflow-wrap: normal;
    bottom: 0%;
    top: 29%;
    right: 6%;
}

.Travel_Ul {
    padding: 10% 10%;
    list-style: square;
}

.Travel_Ul>li {
    padding: 0 5%;
}

.Txt_Catalog {
    position: absolute;
    overflow-wrap: normal;
    top: 24%;
    right: 0;
    z-index: 32;
}

.Catalog_Ul li {
    padding: 0 3% 0px;
    list-style: square;
}

.Catalog_Btn {
    color: #546e7a;
    transition: color .3s;
    margin-top: 5%;
}

.Contact_Btn a {
    border-bottom: 1px solid #546e7a;
    color: #546e7a;
    transition: color .3s;
    margin-top: 5%;
}

.Contact_Btn a:hover,
.Catalog_Btn:hover {
    color: #78c2c4;
}

.arrow_drop_down {
    height: 1%;
}

.arrow_drop_down_circle {
    transform: rotate(-90deg);
    vertical-align: -3px;
}

/*---↑↑↑ TRAVEL ここまで ↑↑↑--------------------------------------------------------------------------*/

/*---↓↓↓ GOURMET ここから ↓↓↓--------------------------------------------------------------------------*/
#Gourmet_Wrap {
    color: #546e7a;
    height: 100%;
    /* padding-top: 15rem; */
    background: #d4d4d5;
}

.Gourmet_Case {
    position: relative;
}

.Groumet_Txt_Slider_Wrap {
    height: 60vh;
    width: 20%;
    padding: 0;
}

.Groumet_Item_Slider_Wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 70vh;
}

.Gourmet_Txt_Wrap {
    margin: 0 0 0 198px;
}

.Gourmet_Txt {
    letter-spacing: 3px;
    color: #546e7a;
    text-align: center !important;
}

.Gourmet_Btn div a {
    color: #546e7a;
    border-bottom: #546e7a 1px solid;
}

@media screen and (min-width:1025px) and (max-width:1440px) {
    .Gourmet_Txt {
        text-align: right !important;
    }
}

/*---↑↑↑ GOURMET ここまで ↑↑↑--------------------------------------------------------------------------*/


/*---↓↓↓ ACCESS ここから ↓↓↓--------------------------------------------------------------------------*/
#Access_Wrap {
    color: #546e7a;
    /* padding-top: 13rem; */
    height: 100%;
    background: #ececec;
}

.Access_Txt {
    letter-spacing: 2px;
}



/*---↑↑↑ ACCESS ここまで ↑↑↑--------------------------------------------------------------------------*/


/*---↓↓↓ FOOTER ここから ↓↓↓--------------------------------------------------------------------------*/
#Footer_Wrap {
    background-color: #193A56;
    color: #c0c4c5;
    /* padding-top: 5rem; */
    position: relative;
}

.Footer_Case {
    align-items: flex-end;
}

.Footer_Txt,
.Footer_Nav_Txt {
    letter-spacing: 3px;
    line-height: .75rem;
    text-shadow: 0px 2px 25px rgba(0, 0, 0, 0.50);
    z-index: 90;
}

#Copy_Right {
    font-size: 0.41666666666667rem;
    background-color: #0c253b;
}

.Footer_Nav_Txt p {
    color: #c0c4c5;
    transition: color .3s;
    display: inline-block;
}

.Footer_Nav_Txt p:hover {
    color: #78c2c4;
}

.Footer_Logo img {
    position: absolute;
    top: 69.2%;
    left: 48%;
    opacity: 0.2;
}

/*---↑↑↑ FOOTER ここまで ↑↑↑--------------------------------------------------------------------------*/


/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---サブページ共通------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
#Subpage_Header {
    background-image: url("../img/Header.png");
    min-height: 511px;
    height: 55vh;
    width: 100%;
    background-color: #ececec;
    position: relative;
    overflow: visible;
    background-size: cover;
    background-position: center center;
    z-index: 2;
}

#Subpage_Title_Wrap {
    position: relative
}

#Subpage_Title_Case {
    font-weight: bold;
    color: #fefefe;
    position: absolute;
    top: 35%;
    left: 15%;
}

.Breadcrumb,
/* .Subpage_Title h1, */
.Subpage_Title_JP {
    letter-spacing: 2px;
}

.Breadcrumb a {
    text-decoration: none;
    color: #fefefe;
    transition: color .3s;
}

.Breadcrumb a:hover {
    color: #78c2c4;
}

/* .Subpage_Title h1 {
    width: 100%;
    letter-spacing: 7px;
    font-size: 2.5rem;
    font-weight: bold;
} */

#Subpage_Footer_Wrap {
    color: #c0c4c5;
    padding-top: 5rem;
    position: relative;
    background-color: #ececec;
}

.Subpage_Footer_Parent {
    background-image: url("../img/Footer.png");
    min-height: 850px;
    height: 98vh;
    width: 100%;
    position: relative;
    overflow: visible;
    background-size: cover;
    background-position: center center;
}

.Subpage_Footer_Child {
    position: absolute;
    /*自由に配置する指定*/
    bottom: 0;
    /*下寄せの指定*/
    left: 0;
    margin: 0;
}

#Subpage_Wrap {
    background: #ececec;
    color: #546e7a;
    position: relative;
}

/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---Company.html------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
.Text_Bg_Img {
    position: relative;
}

.Text_Bg_Img img {
    width: 100%;
}

.Company_Txt {
    position: absolute;
    left: 6%;
    top: 5%;
    letter-spacing: 0px;
    inline-size: 58%;
    line-height: 34px;
}

.Table_Company {
    width: 140%;
    height: 100vh;
    position: relative;
}

.Table_Company td,
.Table_History td {
    vertical-align: top;
}

.Table_Company td:first-child {
    border-right: 1px solid #ccc;
}

.Philosophy_Txt {
    inline-size: 70%;
}

.Company_Ttl {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 48%;
}

/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---NewsList.html----------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
.News_Category_Nav_Wrap {
    display: flex;
    justify-content: end;
}

.News_Category_Nav {
    list-style: none;
}

.News_Category_Nav>a {
    text-decoration: none;
    color: #546e7a;
    transition: color .3s;
}

.News_Category_Nav>a:hover {
    color: #78c2c4;
}

.News_Card_Ttl {
    white-space: nowrap;
    /*折り返させない*/
    overflow: hidden;
    /*1行のみで、はみ出したものは隠す*/
    text-overflow: ellipsis;
    /*文末を・・・にする*/
}

.News_Card_Wrap {
    background-color: #fefefe;
    height: 470px;
    width: 420px;
    margin: 10px;
    justify-content: space-evenly;
    cursor: pointer;
    transition-duration: 0.5s;
}

.News_Card_Wrap:hover {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
    transition-duration: 0.5s;
}

.News_Card_Case {
    padding: 25px;
}

.News_Card_Img {
    height: 300px;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
}

.News_Card_Ttl {
    font-weight: bold;
    color: #546e7a;
    font-size: 1rem;
    margin-top: 10%;
}

.News_Card_Box,
.News_Card_Box span {
    color: #546e7a;
    font-size: 0.75rem;
}

.News_Card_Category {
    font-size: 16px !important;
}



.page-item {
    border: 1px solid #546e7a;
    color: #546e7a;
    transition: all .3s;
}

.page-item.Single_Nav {
    position: relative;
    width: 15%;
}

.page-item.Single_Nav>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ececec;
    color: #546e7a;
    transition: all .3s;
    align-items: center;
    display: flex;
    justify-content: center;
}

/* .page-item>a:hover {
    background-color: #78c2c4;
    color: #ececec;
} */

.page-item.Single_Nav>a:hover {
    background-color: #78c2c4;
    color: #ececec;
}

.pagenation.Single_UL {
    width: 80%;
    max-width: 900px;
}

.page-link:hover {
    background-color: #78c2c4;
    color: #ececec;
}

.page-link a:hover {
    background-color: #78c2c4;
    color: #ececec;
}

.page-link,
.page-link a {
    background-color: #ececec;
    color: #546e7a;
}

.page-item.active .page-link {
    z-index: 3;
    border: 1px solid #546e7a;
    background-color: #546e7a;
    color: #ececec;
}

.page-item:not(:first-child) .page-link {
    margin-left: 0px;
    z-index: 1;
}

.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.NewsList_Header_Ttl {
    position: absolute;
    z-index: 2;
    top: 25%;
    left: 0%;
}

/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---News.html----------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/

.News_Ttl_Border {
    border: solid 1px rgba(84, 110, 122, 0.25);
    width: 500px;
    position: absolute;
    top: 25%;
    left: -45%;
}

.News_Ttl_Wrap {
    font-size: 26px;
    font-weight: bold;
}

.News_Bg {
    background-color: #fefefe;
    height: auto;
    width: 100%;
}

.News_Case {
    padding: 5%;
}

.News_Img {
    margin: 0 auto;
}

.News_Img img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.News_Txt {
    overflow-wrap: break-word;
    margin: 0 auto;
    width: 81%;
}

/* .News_Txt>p>img {
    text-align: center !important;
    max-width: 828px;
    overflow: hidden;

} */

.News_Category {
    margin-right: 10%;
    border-bottom: solid 1px #546e7a;
}

.News_Category,
.News_Category a {
    font-size: 16px;
}

.News_Header_Ttl {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 45%;
}

.News_Header_Ttl {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 98%;
}

/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---Covid-19.html----------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
.Covid-19_Case {
    background-color: #fefefe;
    height: auto;
    width: 100%;
    font-size: 0.83333333333333rem;
}

.Covid_Ttl_Border {
    border: solid 1px rgba(84, 110, 122, 0.25);
    width: 500px;
    position: absolute;
    top: 16%;
    left: -45%;
}

.Covid-19_Txt {
    font-size: 0.83333333333333rem;
    font-weight: normal !important;
    margin: 1% 10%;
}

.Covid-19_Txt strong,
.Covid-19_Txt p,
.Covid-19_Txt ul,
.Covid-19_Txt ul li {
    font-size: 0.83333333333333rem;
}

.Covid-19_Ttl {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 35%;
}

/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---GeneralConditions.html----------------------------------------------------------------------------------------------------------------*/
/*---PrivacyPolicy.html----------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
.GeneralConditions_Ttl_Border {
    border: solid 1px rgba(84, 110, 122, 0.25);
    width: 500px;
    position: absolute;
    top: 55%;
    left: -45%;
}

.GeneralConditions_Case {
    background: #fcfcfc;
    padding: 2%;
    padding-right: 3rem;
}


.GeneralConditions_OrderType_Wrap {
    width: 100%;
    height: 100%;
}

.GeneralConditions_Chapter li {
    margin-bottom: 2rem;
    list-style: none;
    font-size: 1.25rem;
    font-weight: bold;
}

.GeneralConditions_Article li {
    list-style: none;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.GeneralConditions_Term li {
    margin-top: 0.5rem;
    list-style: decimal;
    font-size: 0.75rem;
    font-weight: normal !important;
}

.GeneralConditions_Term2 li {
    list-style: none !important;
    font-size: 0.75rem;
    font-weight: normal !important;
}

.GeneralConditions_CJK li {
    list-style-type: cjk-decimal;
    font-size: 0.75rem;
    font-weight: normal !important;
}

.GeneralConditions_CJK_B li {
    list-style-type: cjk-decimal;
    font-size: 0.75rem;
    font-weight: bold;
}

.GeneralConditions_Iroha li {
    list-style-type: katakana-iroha;
    font-size: 0.75rem;
    font-weight: normal !important;
}

.GeneralConditions_Table,
.GeneralConditions_Tb tr td,
.GeneralConditions_Tb tr th {
    vertical-align: top;
    width: 100%;
    font-size: 0.75rem;
    font-weight: normal;
    border: 1px solid #595959;
    border-collapse: collapse;
}

.GeneralConditions_Tb tr td,
.GeneralConditions_Tb tr th {
    padding: 10px 15px;
    width: 30px;
    height: 25px;
}

.GeneralConditions_Tb tr th {
    background: rgba(84, 110, 122, 0.3);
    text-align: center;
    color: #193A56;
}

.even {
    background: #fbf8f0;
}

.odd {
    background: #fefcf9;
}

.GeneralConditions_Iroha_Table li {
    list-style-type: katakana-iroha;
    font-size: 0.75rem;
    font-weight: normal;
    margin: 0 !important;
}

.bold {
    font-weight: bold !important;
}

.GeneralConditions_Term_Table li {
    list-style-type: decimal !important;
    font-size: 0.75rem;
    font-weight: normal !important;
    margin: 0 !important;
}

.Table_Note ol {
    counter-reset: count 0;
}

.Table_Note ol li {
    /* counter-reset: count 0;*/
    list-style: none;
    font-size: 0.75rem;
    font-weight: normal !important;
    text-indent: -3.7em;
    padding-left: 1em;
    margin: 10px;
}

.Table_Note ol li:before {
    content: "※注"counter(count) "：";
    counter-increment: count 1;
}

.PrivacyPolicy_Ul {
    padding-left: 20px;
}

.PrivacyPolicy_Ul li {
    list-style: square !important;
}

.PrivacyPolicy_Ttl_Border {
    border: solid 1px rgba(84, 110, 122, 0.25);
    width: 500px;
    position: absolute;
    top: 16%;
    left: -45%;
}

/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
/*---Contact.html----------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------*/
.Contact_Item_Wrap {
    background: #fcfcfc;
    padding: 2% 10%;
}

.Contact_Now {
    color: #193A56;
    font-size: 2rem !important;
    font-weight: bold;
}

.Item_Ttl {
    font-weight: bold;
    margin-bottom: 1%;
}

.Contact_Item_Wrap>div>span {
    margin-left: 18px;
    color: brown;
    font-size: 0.75rem;
    font-weight: normal;
}

.Not_Color {
    font-weight: normal;
    color: #546e7a !important;
}

.mwform-radio-field-text,
.mwform-checkbox-field-text {
    color: #546e7a !important;
}

.mwform-radio-field-text,
.mwform-checkbox-field-text {
    margin-right: 3rem !important;
}

.Agree_Check>span {
    display: none;
}

.form-check-input:checked {
    background-color: #546e7a;
    border-color: #546e7a;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #193A56;
    background-color: #fcfcfc;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.Contact_Underline {
    color: #546e7a;
    border-bottom: #546e7a 1px solid;
    transition: color .3s;
}

.Contact_Underline:hover {
    color: #78c2c4;
}

.btn-outline-secondary {
    text-align: center;
    border-radius: 0%;
    transition: all .3s;
}

.btn-outline-secondary:hover {
    background-color: #78c2c4;
}

.Contact_Ttl_Wrap {
    position: relative;
}

.Contact_Ttl_Wrap span {
    display: inline-block;
    font-size: 2rem;
}

.Contact_Ttl_Border {
    border: solid 1px rgba(84, 110, 122, 0.25);
    width: 500px;
    position: absolute;
    top: 20%;
    left: -45%;
}

.Contact_Btn {
    text-align: center;
    padding: 20px 125px;
}

.Contact_Btn button {
    padding: 20px 125px;
}

.arrow_right {
    vertical-align: -8px;
}

.Contact_Icon {
    vertical-align: -5px;
    ;
}

#Contact_Side_Wrap {
    position: absolute;
    top: 165px;
    right: 0;
    background-color: #546e7a;
    color: #ececec;
    height: 500px;
    width: 190px;
    padding: 22px 27px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    z-index: 30;
}

#Contact_Side_Case1 p,
#Contact_Side_Case1 p span {
    text-orientation: upright;
    font-size: 0.75rem !important;
}

#Contact_Side_Case2 {
    font-size: 36px !important;
    letter-spacing: 8px;
    font-weight: bold;
}

#Contact_Side_Case2 span {
    font-size: 34px;
    vertical-align: -7px;
}

.Tryangle {
    width: 100%;
    height: 0;
    border-style: solid;
    border-width: 200px 50vw 0 49vw;
    border-color: #193a56 transparent transparent transparent;
}

.Tryangle2 {
    width: 100%;
    height: 0;
    border-style: solid;
    border-width: 200px 50vw 0 49vw;
    border-color: #d4d4d5 transparent transparent transparent;
}

.Tryangle3 {
    width: 100%;
    height: 0;
    border-style: solid;
    border-width: 200px 50vw 0 49vw;
    border-color: #ececec transparent transparent transparent;
}


.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
}


.page-link:focus,
.btn-outline-secondary:focus,
.btn:focus {
    background-color: #78c2c4;
    color: #ececec;
    outline: none;
    box-shadow: none;
}

.News_Txt {
    /* display: flex; */
    flex-wrap: wrap;
}

.News_Txt>img {
    display: block;
}