@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://use.fontawesome.com/releases/v5.15.4/css/all.css");
/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
font setting 2026
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/
body {
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Noto Sans JP",
    sans-serif;
    overflow-wrap: anywhere;
     word-break: normal;
}
/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
base module & style
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

:root {
	--color-primary: #E63C1E;
	--color-secondary: #F7931E;
	--color-tertiary: #554641;
}


/* 表示切り替え */
.sp_on {
    display: block;

    @media (width >= 768px) {
        & {
            display: none;
        }
    }
}

.pc_on {
    display: none;

    @media (width >= 768px) {
        & {
            display: block;
        }
    }
}

/* ページトップへもどる */
.page_top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 60px;
    position: fixed;
    background-image: linear-gradient(var(--color-tertiary), var(--color-tertiary));
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;

    @media (width >= 768px) {
        & {
            right: 20px;
            bottom: 20px;
        }
    }

    &::before {
        content: "";
        display: block;
        width: 5px;
        height: 5px;
        border-top: 1px solid #FFFFFF;
        border-right: 1px solid #FFFFFF;
        transform: rotate(-45deg);
    }
}

.wrapper {
    width: 100%;
}

/* @group ヘッダーエリア
------------------------------------------------------*/

.header {
    width: 100%;
}

/* スライダー用のスタイル */
.header:has(> .slide_wrap.swiper) {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}

.header:has(> .slide_wrap.swiper) > .slide_wrap.swiper {
    grid-column: 1;
    grid-row: 1;
}

.header:has(> .slide_wrap.swiper) > .header_container {
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
}

.header > .slide_wrap.swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 660px;

    @media (width >= 414px) {
        height: 701px;
    }

    @media (width >= 430px) {
        height: 728px;
    }

    @media (width >= 768px) {
        height: 428px;
    }

    @media (width >= 820px) {
        height: 457px;
    }

    @media (width >= 1024px) {
        height: 571px;
    }

    @media (width >= 1200px) {
        height: 780px;
    }
}

.header > .slide_wrap .swiper-slide {
    height: 100%;
}

.header > .slide_wrap .swiper-slide picture,
.header > .slide_wrap .swiper-slide picture > img {
    display: block;
    width: 100%;
    height: 100%;
}

.header > .slide_wrap .swiper-slide picture > img {
    object-fit: cover;
}

.header_container.home > .hero_slider_pagination {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding-inline: 12px;
    pointer-events: auto;
}

.header_container.home > .hero_slider_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0;
    opacity: 1;
    background: rgba(255, 255, 255, 0.55);
}

.header_container.home > .hero_slider_pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
}

.header_container {
    position: relative;
    width: 100%;
    min-height: 660px;

    & > .society_logo {
        width: 100%;

        @media (width >= 1200px) {
            width: 1200px;
            margin-inline: auto;
            display: flex;
            justify-content: flex-end;
            background-image: linear-gradient(var(--color-primary), var(--color-primary));
            background-position: center center;
            background-repeat: no-repeat;
            background-size: 780px 100%;
        }
    }

    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-image: url(../images/header_small.png);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 1;
    }

    @media (width >= 414px) {
        min-height: 701px;
    }

    @media (width >= 430px) {
        min-height: 728px;
    }

    @media (width >= 768px) {
        & {
            min-height: 428px;
        }

        &::before {
            background-image: url(../images/header_large.png);
        }
    }

    @media (width >= 820px) {
        & {
            min-height: 457px;
        }
    }

    @media (width >= 1024px) {
        & {
            min-height: 571px;
        }
    }

    @media (width >= 1200px) {
        & {
            width: 1400px;
            margin-inline: auto;
            min-height: 780px;
        }

    }

    &.child_page {
        height: auto;
        min-height: 0px;
        
        &::before {
            background-image: none;
        }
    }

} /* header_containerここまで */


/* ヘッダーのテキスト非表示 */
.header_container > .society_title,
.header_container > .society_overview {
    position: absolute;
    left: -9999em;
}


/* @group メインエリア
------------------------------------------------------*/
.main {
    width: 100%;
    background-color: #FFFFFF;
}

/* @group フッターエリア
------------------------------------------------------*/

.footer {
    width: 100%;
    background-color: var(--color-secondary);
    background-image: linear-gradient(#FFFFFF, #FFFFFF);
    background-position: center bottom 70px;
    background-repeat: no-repeat;
    background-size: 100% 1px;

    @media (width >= 768px) {
        & {
            background-position: center bottom 50px;
        }
    }
}

@media (width >= 1200px) {
    .footer_container {
        width: 1200px;
        margin-inline: auto;
    }
}

.secretariat_wrap {
    width: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 30px;

    @media (width >= 768px) {
        & {
            min-height: 150px;
            flex-direction: row;
            align-items: flex-start;
            column-gap: 90px;
            row-gap: 0;
        }
    }
}

.secretariat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    row-gap: 17px;
    font-feature-settings: "palt";

    @media (width >= 768px) {
        & {
            justify-content: flex-start;
            align-items: flex-start;
            text-align: left;
            column-gap: 10px;
            row-gap: 20px;
        }
    }
}

.secretariat h3 {
    width: 220px;
    height: 35px;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  }
  
  .secretariat h3 span {
    margin-left: 25px;
    font-size: 15px;
    font-weight: bold;
    color: var(--color-secondary);
    line-height: 1;
  }
  

.secretariat dl {
    margin-left: 24px;
    margin-right: 24px;
    color: #fff;
    line-height: 1.5;

    @media (width >= 768px) {
        & {
            margin-left: 15px;
        }
    }

    @media (width >= 1200px) {
        & {
            margin-left: 0;
        }
    }
}

.secretariat dt {
    display: grid;
    gap: 5px;
    font-size: 15px;
    font-weight: bold;
}

.secretariat dd {
    font-size: 13px;

    & > .tel {
        margin-right: 10px;
    }

    & > .fax {
        margin-right: 10px;
    }

    & > .email {
        display: block;

        @media (width >= 768px) {
            display: inline;
        }
    }
}

.secretariat dd a {
    color: #1b4d9f;
}

.footer-copyright {
    width: 90%;
    margin-inline: auto;
    min-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (width >= 768px) {
        & {
            min-height: 50px;
        }
    }
    @media (width >= 1200px) {
        & {
            width: 1200px;
            justify-content: flex-start
        }
    }
}

.footer-copyright p {
    font-size: 13px;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: center;
}

/* @group トップページ
------------------------------------------------------*/

/* Welcome Message */

.welcome-message {
    position: relative;
    width: 100%;
    min-height: 1140px;
    padding-top: 60px;

    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-image: url(../images/bg_welcome_small.jpg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 0;
    }

    @media (width >= 768px) {
        min-height: 590px;

        &::before {
            background-image: url(../images/bg_welcome_large.jpg);
        }
    } 
}

.welcome-message > * {
    position: relative;
    z-index: 1;
    width: 86%;
    margin-inline: auto;

    @media (width >= 1200px) {
        & {
            width: 1200px;
        }
    }
}

.welcome-message-title {
    border-bottom: 1px solid var(--color-primary);
    margin-bottom: 25px;
    padding-bottom: 10px;

    & > span {
        margin-left: 5px;
        font-size: 18px;
        font-weight: bold;
        color: var(--color-primary);
    }
}

.welcome-message-body > p + p {
    margin-top: 20px;
}

.welcome-message-body > p {
    font-size: 14px;
    line-height: 1.4;
    color: #646464;
}

/* What’s New */
.news {
    width: 86%;
    margin-inline: auto;
    margin-top: 140px;
    margin-bottom: 40px;

    @media (width >= 1200px) {
        & {
            width: 810px;
            margin-top: 160px;
            margin-bottom: 60px;
        }
    }

    & > h2 {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        margin-bottom: 50px;
      
        & > span {
          position: relative;
          font-size: 18px;
          font-weight: bold;
          color: var(--color-primary);
          text-align: center;
    
          &::before {
            position: absolute;
            content: "";
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 5px;
            background-image: linear-gradient(to right, var(--color-secondary) 0%, var(--color-secondary) 50%, var(--color-primary) 50%, var(--color-primary) 100%);
            background-position: left top;
            background-repeat: no-repeat;
            background-size: 100% 100%;
          }
        }
    }

    & > .news-list {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 15px;
        height: 170px;
        overflow-y: auto;
        line-height: 1.4;
    
        & > li {
            display: flex;
            align-items: baseline;
        
            & > .date {
            width: 95px;
            font-size: 13px;
            font-weight: bold;
            color: var(--color-primary);
            }
        
            & > .excerpt {
            width: calc(100% - 95px);
            font-size: 12px;
            color: #666666;
            }
        }
    }
  } /* .news 終わり */


/* @group ページ共通
------------------------------------------------------*/

.page-contents {
    width: 94%;
    margin-inline: auto;
    min-height: 80vh;
    background-color: #FFFFFF;
    margin-top: 30px;

    @media (width >= 768px) {
        & {
            min-height: 1150px;
        }
    }

    @media (width >= 1200px) {
        & {
            width: 1200px;
        }
    }
}

.page-title {
    position: relative;
    padding: 25px 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-primary);
    

    & > span {
        position: relative;
        padding-left: 7px;
        font-size: clamp(1.25rem, 0.875rem + 1.2vi, 1.625rem);
        font-weight: bold;
        font-feature-settings: "palt";
        color: var(--color-primary);
        text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
        line-height: 1.2;
    }

    @media (width >= 768px) {
        & {
            padding: 30px 15px 20px 10px;
        }
    }
    
}

.page-body {
    padding: 20px 20px 30px 20px;
}
@media (width >= 768px) {
    .page-body {
        padding: 40px 20px 40px 20px;
    }
}

/* 既存の垂直マージンを削除 */
.page-body>* {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.7;
}

/* 連続する要素だけに上方向のマージンを適用 */
.page-body>*+* {
    margin-block-start: 20px;
}

.page-body>*+*>*+* {
    margin-block-start: 10px;
}

.page-body > section > section > * + *   {
    margin-block-start: 10px;
}

.under_construction {
    text-align: center;
    font-size: 1.1em;
    padding-top: 50px;
}

/* アイコン
--------------------------*/

.exlink::after {
    content: "\f360";
    font-family: "Font Awesome 5 Free";
    font-size: 0.85em;
    font-weight: 900;
    margin-left: .5em;
}

.download:before {
    content: '\f019';
    /* ダウンロードのアイコン */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: .5em;
    margin-right: .5em;
}

.pdf:after {
    content: '\f1c1';
    /* PDFファイルの後（fa-file-pdf） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.25em;
    margin-right: 0.25em;
}

.word:after {
    content: '\f1c2';
    /* WORDファイルの後（fa-file-word） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.ppt:after {
    content: '\f1c4';
    /* PPTファイルの後（fa-file-powerpoint） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.excel:after {
    content: '\f1c3';
    /* Excelファイルの後（fa-file-excel） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.mail:after {
    content: '\f0e0';
    /* メールアイコン（fa-envelope） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.cipher a:before {
    content: '\f023';
    /* 暗号通信の前（fa-lock） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: .5em;
}

.check::before {
    content: '\f00c';
    /* チェックマーク（fa-check） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: .3em;
}

/*罫線*/

hr {
    border: none;
    border-top: 1px solid #ccc;
}

hr.hr-full {
    margin: 0 .75em 1.5em;
    box-shadow: 1px 1px 1px rgba(0, 71, 157, 0.2);
}

/* ハイライト */
.text-highlight {
    background: linear-gradient(transparent 40%, #f6ff5f 40%);;
}

.inline {
    display: inline;
}

/*文字詰め*/

.feature {
    font-feature-settings: "palt";
}

/*囲み*/

.enclosure01 {
    border: 1px;
    border-style: solid;
    padding: 0.75em 1em;
}

.enclosure02 {
    display: inline-block;
    border: 1px;
    border-style: solid;
    padding: .5em 1em;
}

.enclosure-style01 {
    border-color: #DDDDDD;
    background: #FFFFFF;
}

.enclosure-style02 {
    border: 3px solid rgba(245, 200, 200, 0.4);
    background: rgba(245, 200, 200, 0.1);
}
.enclosure-style03 {
	border: 3px solid #ff0000;
	background: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;

}


/*リストスタイル*/
.list-style01 {
    margin-left: 2em;
    margin-right: 2em;
    font-size: clamp(0.875rem, 0.818rem + 0.242vw, 1rem);
}

.list-style01 li {
    margin-bottom: .3em;
}

.list-style {
    list-style-position: outside;
    padding-left: 1.8em;
}

.list-style > * + * {
    margin-top: 0.25em;
}

.list-disc {
    list-style-type: disc;
}

.list-num {
    list-style-type: decimal;
}

.list-num2 {
    list-style-type: decimal-leading-zero;
}

/* 方法1: text-indent と padding-left の組み合わせ */
.asterisk {
    padding-left: 1.2em;
    text-indent: -0.9em;
}

/* 方法2: table レイアウトを使用 */
.kome_ja > * {
    display: table;
    width: 100%;
}

.kome_ja > *:before {
    display: table-cell;
    content: "※";
    width: 1em;
}
/* 英語　* */
.kome_en > * {
	display:table;
	width: 100%;
	
	&:before {
		display: table-cell;
		content: "*";
		width: 1em;
	}
}

/*表組み*/
.tbl-sp {
    overflow-x: auto;
}

.tbl-sp table {
    min-width: 690px;
}
.tbl-width100 {
    width: 100%;
}

.tbl-width50 {
    width: 50%;
}

.tbl-style01 thead th {
    /* background-color: #DDD; */
    background-color: var(--color-primary);
    border: 1px #CCCCCC;
    border: 1px #CCCCCC;
    border-style: solid;
    padding: .5em;
}

.tbl-style01 tbody th,
.tbl-style01 tbody td {
    border: 1px #CCCCCC;
    border-style: solid;
}

.tbl-style01 tbody th {
    background-color: #EEEEEE;
    padding: .5em;
}
.tbl-style01 tbody td {
    background-color: #FFFFFF;
    padding: 10px
}

.tbl-style02 tbody th,
.tbl-style02 tbody td {
    border: 1px #FFFFFF;
    border-style: solid;
}

.tbl-style02 tbody th {
    background-color: #FFFFFF;
    padding: .5em;
}

.tbl-style02 tbody td {
    background-color: #FFFFFF;
    padding: .5em;
}

.th-c-m th {
    text-align: center;
    vertical-align: middle;
}

.th-l-m th {
    text-align: left;
    vertical-align: middle;
}

.th-l-t th {
    text-align: left;
    vertical-align: top;
}

.td-c-m td {
    text-align: center;
    vertical-align: middle;
}

.td-l-m td {
    text-align: left;
    vertical-align: middle;
}

.td-l-t td {
    text-align: left;
    vertical-align: top;
}
