@charset "utf-8";

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    height: 100%;
    position: relative;
    -webkit-text-size-adjust: 100%;
}

body {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
    font-family: Noto Sans JP, 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 300;
    color: #333;
    margin: 0 auto;
    line-height: 1;
    position: relative;
    min-width: 1280px;
}

body.fixed {
    height: 100%;
    position: fixed;
    width: 100%;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

main {
    overflow: hidden;
    margin-top: 65px;
}

iframe {
    max-width: 100%;
    width: calc(1100px / 2);
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #1c1c1c;
    cursor: pointer;
}

@media screen and (max-width:600px) {
    body {
        font-size: 14px;
        font-size: 1.4rem;
        min-width: initial;
    }

    main {
        margin-top: 60px;
    }
}

/* ------------------------------------- */
/*デバイス切り替えここから*/
/* ------------------------------------- */
@media screen and (max-width: 600px) {
    .pc {
        display: none !important;
    }
}

@media print, screen and (min-width: 601px) {
    .sp {
        display: none !important;
    }
}

/* ------------------------------------- */
/*レイアウトスタイルここから*/
/* ------------------------------------- */
section {
    padding: 40px 0;
}

section:first-of-type {
    padding: 70px 0 40px;
}

section:last-of-type {
    padding: 40px 0 80px;
}

.sec-inner {
    max-width: 1110px;
    margin: 0 auto;
}

.main-inner {
    position: relative;
    height: 100%;
    background: url(../img/common/body_bg.jpg) no-repeat;
    background-position: top center;
    background-size: 100%;
}

@media screen and (max-width: 600px) {
    section {
        padding: 40px 4%;
    }

    section:first-of-type {
        padding: 40px 4%;
    }

    section:last-of-type {
        padding: 40px 4% 80px;
    }

    .main-inner {
        background: url(../img/common/body_bg_sp.jpg) no-repeat;
        background-position: top center;
        background-size: 100%;
    }
}

/* ------------------------------------- */
/*共通スタイル*/
/* ------------------------------------- */
.anchor {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

.txt-center {
    text-align: center;
}

.txt-b {
    font-weight: bold;
}

a.disabled {
    pointer-events: none;
}

/* ------------------------------------- */
/*タイトルスタイル*/
/* ------------------------------------- */
.heading-border {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    border-bottom: 5px solid #2d8dd7;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.heading-normal {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
    .heading-normal {
        font-size: 1.8rem;
    }
}

/* ------------------------------------- */
/*ボタンスタイル*/
/* ------------------------------------- */
.btn {
    max-width: 350px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-weight: 700;
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.5;
}

.btn-blue {
    color: #fff;
    background: #2d8dd7;
}

.btn-yellow {
    color: #194e73;
    background: #f2ba1c;
}

.btn-pdf {
    background: #2d8dd7;
    color: #fff;
    position: relative;
}

.btn-pdf::after {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/common/icon_pdf.png) no-repeat;
    background-size: 24px 24px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 25px;
}

@media screen and (max-width: 600px) {}

/* ------------------------------------- */
/*ニュースのカテゴリ*/
/* ------------------------------------- */
.news-wrap .category {
    display: inline-block;
    border: 1px solid #2d8dd7;
    border-radius: 100px;
    padding: 5px 10px;
}

.news-wrap .category span {
    position: relative;
    padding: 1em 1em 1em 1.2em;
    font-size: 1.3rem;
}

.news-wrap .category span::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
}

.news-wrap .category.category-1 span::before {
    background-color: #4aaaec;
}

.news-wrap .category.category-2 span::before {
    background: #8abb20;
}

.news-wrap .category.category-3 span::before {
    background: #784D94;
}

.news-wrap .category.category-4 span::before {
    background: #f2771c;
}

/* ------------------------------------- */
/*ヘッダーここから*/
/* ------------------------------------- */
header {
    width: 100%;
    min-width: 1280px;
    background: #fff;
    transition: all .8s;
    position: fixed;
    top: 0;
    z-index: 9999;
}

header .header-wrap {
    position: relative;
    width: 100%;
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
}

header .header-wrap .inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    width: 160px;
}

header h1 a {
    display: block;
    transition: 0.3s;
}

header h1 a:hover {
    opacity: 0.5;
}

header nav {
    width: 60%;
    max-width: 600px;
}

/* ------------------------------------- */
/* ①メニューボタンのスタイル */
header .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .menu li {
    width: 17.5%;
}

header .menu li a {
    display: block;
    text-align: center;
    transition: .3s;
    padding: 25px 0;
    position: relative;
}

header .menu li a::before {
    content: "";
    height: 3px;
    width: 100%;
    background: #2d8dd7;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s;
    opacity: 0;
}

header .menu li a.e-border::before,
header .menu li a.current::before {
    opacity: 1;
}

header .menu .menu-list a.arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 5px;
    width: 6px;
    height: 6px;
    border-bottom: 1px solid #2d8dd7;
    border-right: 1px solid #2d8dd7;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s;
}

header .menu .menu-list a.arrow.add:after {
    transform: rotate(225deg);
}

/* ------------------------------------- */
/* ②メガメニューのスタイル */
header .menu-contents {
    background: #f5f5f5;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

header .menu-contents ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 30px auto 0;
}

header .menu-contents li {
    width: calc(33.3% - 20px);
    margin-right: 30px;
    margin-bottom: 30px;
}

header .menu-contents li:nth-of-type(3n) {
    margin-right: 0;
}

header .menu-contents li a {
    color: #333;
    text-align: left;
    background: #fff;
    -moz-box-shadow: 0px 10px 20px 0px rgba(25, 78, 115, 0.15);
    -webkit-box-shadow: 0px 10px 20px 0px rgba(25, 78, 115, 0.15);
    -ms-box-shadow: 0px 10px 20px 0px rgba(25, 78, 115, 0.15);
    box-shadow: 0px 10px 20px 0px rgba(25, 78, 115, 0.15);
    border-radius: 10px;
    padding: 15px 0 15px 40px;
    position: relative;
    transition: 0.3s;
}

header .menu-contents li a:hover {
    color: #fff;
}

header .menu-contents li a:hover {

    background-color: #2d8dd7;
}

header .menu-contents li a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 15px;
    width: 10px;
    height: 1px;
    opacity: 1;
}

header .menu-contents li a::before {
    background: #2d8dd7;
}

header .menu-contents li a:hover:before {
    background: #fff;
}

header .menu-contents li a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 18px;
    width: 6px;
    height: 6px;
    border-top: 1px solid;
    border-right: 1px solid;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

header .menu-contents li a::after {
    border-color: #2d8dd7;
}

header .menu-contents li a:hover:after {
    border-color: #fff;
}

/* ------------------------------------- */
header .right-block {
    /* width: 18%; */
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* header .right-block a.facebook {
    width: 30px;
    display: block;
    margin-right: 8%;
} */

header .right-block #form1 {
    position: relative;
    width: 160px;
    height: 38px;
}

header .right-block #form1 #sbox1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    height: 38px;
    outline: 0;
    border: 0;
    background: #f5f5f5;
    border-radius: 4px;
}

header .right-block #form1 #sbox1::placeholder {
    color: #cccccc;
}

header .right-block #form1 #sbtn1 {
    position: absolute;
    top: 0;
    right: 3px;
    width: 30px;
    height: 38px;
    background: url(../img/common/icon_search.png) no-repeat;
    background-size: 15px 15px;
    background-position: center;
    border: 0;
}

header .right-block #form1 #sbtn1:hover {
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    header {
        min-width: initial;
        height: 60px;
    }

    header .header-wrap {
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2%;
    }

    header h1 {
        width: 38%;
        max-width: 140px;
    }

    header a.logo {
        display: block;
    }

    header .right-block {
        margin-right: 60px;
        width: 40%;
    }

    header .right-block a.facebook {
        display: block;
        width: 24px;
        margin-right: 15%;
    }

    /* ------------------------------------- */
    /* 検索エリア */
    header .right-block .search-btn {
        display: block;
        width: 20px;
    }

    .header.search-block {
        display: none;
        width: 100%;
        height: 60px;
        background: #fff;
        position: fixed;
        top: 0;
        z-index: 99999;
    }

    .header.search-block .inner {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header.search-block .inner #form1 {
        position: relative;
        width: 100%;
        height: 38px;
        margin: 0 2%;
    }

    .header.search-block .inner #form1 #sbox1 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 10px;
        height: 38px;
        outline: 0;
        border: 0;
        background: #f5f5f5;
        border-radius: 4px;
    }

    .header.search-block .inner #form1 #sbox1::placeholder {
        color: #cccccc;
    }

    .header.search-block .inner #form1 #sbtn1 {
        position: absolute;
        top: 0;
        right: 3px;
        width: 30px;
        height: 38px;
        background: url(../img/common/icon_search.png) no-repeat;
        background-size: 15px 15px;
        background-position: center;
        border: 0;
    }

    .header.search-block .search-overlay {
        background: rgba(0, 0, 0, 0.6);
        height: 100vh;
        position: absolute;
        width: 100%;
    }

    /* ------------------------------------- */
    /* スマホメニュー */
    header .menu-wrapper {
        position: absolute;
        top: 50%;
        right: 2%;
        transform: translate(0, -50%);
    }

    header .menu-btn {
        height: 46px;
        width: 46px;
        position: relative;
        cursor: pointer;
        display: inline-block;
        user-select: none;
        z-index: 99;
        border-radius: 50px;
    }

    header .menu__line {
        background: #2d8dd7;
        display: block;
        height: 2px;
        border-radius: 100px;
        position: absolute;
        transition: transform .5s;
        width: 20px;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    header .menu__line--top {
        top: 30%;
    }

    header .menu__line--center {
        top: 50%;
        transform: translateY(-50%);
    }

    header .menu__line--bottom {
        bottom: 30%;
    }

    header .active .menu__line--top {
        top: 50%;
        transform: rotate(45deg) translateY(-50%);
    }

    header .active .menu__line--center {
        transform: scaleX(0);
    }

    header .active .menu__line--bottom {
        bottom: 50%;
        transform: rotate(135deg) translateY(-50%);
    }

    header .menu-area {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9999;
        height: calc(100% - 60px);
        overflow-y: scroll;
    }

    header .menu-nav {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        border-top: 1px solid #e5ebef;
    }

    header .menu-nav li {
        width: 100%;
    }

    header .menu-nav li.half {
        width: 50%;
        text-align: center;
    }

    header .menu-nav li.half.odd {
        border-right: 1px solid #e5ebef;
    }

    header .menu-nav a {
        position: relative;
        color: #333;
        display: block;
        padding: 15px 4%;
        border-bottom: 1px solid #e5ebef;
        font-weight: 500;
    }

    header .menu-nav li .menu-btn {
        border: 0 none;
        width: 100%;
    }

    header .menu-nav li .menu-btn .line {
        background: #2d8dd7;
        display: block;
        height: 2px;
        border-radius: 100px;
        position: absolute;
        transition: transform .5s;
        width: 20px;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    header .menu-nav li .menu-btn .line-top {
        top: 50%;
        transform: rotate(45deg) translateY(-50%);
    }

    header .menu-nav li .menu-btn .line-bottom {
        bottom: 50%;
        transform: rotate(135deg) translateY(-50%);
    }

    /* ------------------------------------- */
    /* アコーディオン */
    /* クリック領域 */
    header .menu-nav .ac-parent {
        padding: 15px 4%;
        border-bottom: 1px solid #e5ebef;
        cursor: pointer;
        position: relative;
        font-weight: 500;
    }

    /* 擬似要素で下三角形を作成 */
    header .menu-nav .ac-parent:after {
        content: "";
        display: inline-block;
        position: absolute;
        top: 45%;
        right: 30px;
        width: 10px;
        height: 10px;
        border-right: 2px solid #2d8dd7;
        border-bottom: 2px solid #2d8dd7;
        transform: translateY(-50%) rotate(45deg);
        transition: .3s;
    }

    /* オープン時にopenクラスを付与 */
    header .menu-nav .ac-parent.open:after {
        transform: rotate(225deg);
    }

    /* クリックしたら表示される領域 */
    header .menu-nav .ac-child {
        display: none;
        background-color: #f5f5f5;
    }

    header .menu-nav .ac-child a {
        font-size: 1.3rem;
        font-weight: 400;
        padding: 15px 4% 15px 12%;
        border-bottom: 1px solid #e5ebef;
    }

    .header .header-overlay {
        background: rgba(0, 0, 0, 0.6);
        height: 100vh;
        position: absolute;
        width: 100%;
    }
}

/* ------------------------------------- */
/*パンくずリスト*/
/* ------------------------------------- */
.bread_wrap {
    position: relative;
    padding: 15px 0;
}

.bread_wrap a, .bread_wrap a:visited {
    color: #333;
    display: inline;
}

.bread_wrap ol {
    font-size: 1.2rem;
    margin: 0 auto;
    max-width: 1110px;
}

.bread_wrap ol li {
    display: inline-block;
    color: #333;
    padding-right: 0.5em;
}

.bread_wrap ol li:not(:last-of-type) a {
    text-decoration: underline;
}

.bread_wrap ol li:after {
    content: "/";
    color: #333;
    margin-left: 0.5em
}

.bread_wrap ol li:last-child:after {
    content: "";
}

@media screen and (max-width:600px) {
    .bread_wrap {
        padding: 10px 0;
    }

    .bread_wrap ol{
        margin:0 4%;
    }

    .bread_wrap a, .bread_wrap a:visited {
        color: #333;
        display: inline;
    }

    .bread_wrap ol li {
        margin-bottom: 5px;
        font-size: 1rem;
    }

    .bread_wrap ol li:first-child {
        background-size: contain;
        margin-left: 0;
    }
}

/* ------------------------------------- */
/* ページトップボタン */
/* ------------------------------------- */
#page-top {
    position: fixed;
    width: 60px;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

/* ------------------------------------- */
/*下層メインビジュアルここから*/
/* ------------------------------------- */
.ud-layer .mv {
    padding-top: 300px;
    position: relative;
}

.ud-layer .mv h2 {
    font-size: 3.6rem;
    font-family: 'Zen Old Mincho', serif;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(45, 141, 215, 0.85);
    border-radius: 0 30px 0 0;
}

.ud-layer .mv h2 span {
    display: block;
    font-size: 1.2rem;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}
@media screen and (min-width: 601px) {
    .ud-layer .mv h2 {
        padding: 15px 30px 15px 0px;
        padding-left: calc(calc(100% - 1110px)/2);
    }
}
@media screen and (max-width: 600px) {
    .ud-layer .mv {
        padding-top: 140px;
        margin-bottom: 65px;
    }

    .ud-layer .mv h2 {
        font-size: 2.6rem;
        bottom: -60px;
        padding:15px 30px 15px 4%;
    }
}

/* ------------------------------------- */
/*下層レイアウトここから*/
/* ------------------------------------- */
.ud_layer .sec_inner {
    max-width: 1100px;
    margin: 0 auto;
}

@media screen and (max-width: 600px) {
    .ud_layer .sec_inner {
        margin: 0 4%;
    }
}