@charset "utf-8";
@import url("default.css");

/*==========================================
body
===========================================*/

body {
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 18px;
    -webkit-text-size-adjust: 100%;
}


a {
    text-decoration: none;
    color: #000;
}

ul {
    list-style: none;
}

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
}

@media screen and (min-width:1024px) {
    /*pc用のcssを記述*/
}

/*==========================================
Font Awesome
===========================================*/

.fa-facebook {
    color: #1877f2;
    height: 30px;
}

/*==========================================
SP改行
===========================================*/

.sp_Kaigyo {
    display: none;
}

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    .sp_Kaigyo {
        display: block;
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    .sp_Kaigyo {
        display: block;
    }
}

/*==========================================
header
===========================================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 75px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .2);
}

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    header {
        padding: 0px;
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    header {
        padding: 0px;
    }
}

/*==========================================
nav_pc
===========================================*/

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    div.nav_pc {
        display: none;
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    div.nav_pc {
        display: none;
    }
}

@media screen and (min-width:1024px) {
    /*pc用のcssを記述*/
    div.nav_left {
        float: left;
    }

    div.nav_left img {
        height: 50px;
        width: auto;
        vertical-align: bottom;
    }
}

/*==========================================
nav_pc gnav
===========================================*/

.gnav {
    float: right;
    display: flex;
    list-style: none;
    font-size: 15px;
    font-weight: bold;
    /*    text-shadow: 0 0 1px #000;*/
    margin-top: 5px;
}

.gnav > li {
    text-align: left;
    margin-right: 10px;
}

.gnav li {
    position: relative;
}

.gnav li a {
    display: block;
    text-align: center;
    text-decoration: none;
    /*    color: #004EA2;*/
    width: 100%;
    height: 30px;
    transition: .5s;
    padding: 5px 10px;
    line-height: 35px;
}

.gnav li a:hover {
    background-color: #004EA2;
    color: #fff;
}

.gnav li:nth-of-type(6) a:hover {
    background-color: #fff;
    opacity: 0.5;
}

/*==========================================
nav_sp
===========================================*/

@media screen and (max-width:1000px) {
    div.nav_sp {
        width: 100%;
        height: 80px;
        margin: 0 auto;
    }

    div.nav_sp img {
        height: 60px;
        width: auto;
        vertical-align: bottom;
        margin-top: 10px;
        margin-left: 10px;
    }
}

@media screen and (min-width:1001px) {
    div.nav_sp {
        display: none;
    }
}

/*==========================================
nav_sp menu
===========================================*/

/*ボタン部分*/

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    /*    background-color: #004EA2;*/
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background-color: #004EA2;
    position: absolute;
}

.menu-btn span:before {
    bottom: 12px;
}

.menu-btn span:after {
    top: 12px;
}

#menu-btn-check:checked ~ .menu-btn {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

/*メニュー部分*/

.menu-content {
    width: 100%;
    height: auto;
    position: fixed;
    top: 80px;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.5s;
    /*アニメーション設定*/
    overflow: scroll;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .2);
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;
    /*メニューを画面内へ*/
}

.menu-content ul li:checked ~ .menu-content {
    display: none;
}

.menu-content ul {
    padding: 0px 20px;
}

.menu-content ul li {
    border-bottom: solid 1px #ddd;
    list-style: none;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    box-sizing: border-box;
    color: #004EA2;
    text-decoration: none;
    padding: 25px 15px 25px 0;
    position: relative;
}

.menu-content ul li:not(:last-child) a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #004EA2;
    border-right: solid 2px #004EA2;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 29px;
}

.menu-content ul li a img {
    height: 45px;
    width: auto;
    vertical-align: bottom;
    display: block;
    margin: 0 auto;
}

/*==========================================
title
===========================================*/

.title {
    margin-bottom: 50px;
}

.heading06 {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    color: #004EA2;
}

.heading06::before {
    content: attr(data-en);
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(10, 72, 145, 0.2);
    font-size: 80px;
    font-style: italic;
}

.heading06::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%) rotate(30deg);
    width: 1px;
    height: 40px;
    background-color: rgba(10, 72, 145, 1);
}

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    .heading06 {
        padding-top: 25px;
        font-size: 24px;
    }

    .heading06::before {
        font-size: 50px;
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    .heading06 {
        padding-top: 25px;
        font-size: 24px;
    }

    .heading06::before {
        font-size: 50px;
    }
}

}

/*==========================================
home
===========================================*/

div#home img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    margin-top: 80px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .2);
}









@media screen and (min-width:1024px) {
    /*pc用のcssを記述*/
    div#home div#slideshow.sp {
        display: none;
    }
    div#home img {
        width: 100%;
        height: auto;
        vertical-align: bottom;
        margin-top: 80px;
        box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .2);
    }
}

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    div#home div#slideshow.pc {
        display: none;
    }
    div#home img {
        width: 100%;
        height: auto;
        vertical-align: bottom;
        margin-top: 80px;
        box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .2);
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    div#home div#slideshow.pc {
        display: none;
    }
    div#home img {
        width: 100%;
        height: auto;
        vertical-align: bottom;
        margin-top: 80px;
        box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .2);
    }
}

/*==========================================
slideshow
===========================================*/

@keyframes slide1 {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes slide2 {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes slide3 {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    70% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes slide4 {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


@keyframes slide5 {
    0% {
        opacity: 0;
    }
    80% {
        opacity: 0;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*逕ｻ蜒上ヶ繝ｭ繝�け*/

#slideshow {
    clear: left;
    width: 100%;
    height: auto;
    position: relative;
}

#slide1,
#slide2,
#slide3,
#slide4,
#slide5 {
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

#slide1 {
    -webkit-animation-name: slide1;
    animation-name: slide1;
    position: relative;
    width: 100%;
    height: auto;
}

#slide2 {
    -webkit-animation-name: slide2;
    animation-name: slide2;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
}

#slide3 {
    -webkit-animation-name: slide3;
    animation-name: slide3;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
}

#slide4 {
    -webkit-animation-name: slide4;
    animation-name: slide4;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
}

#slide5 {
    -webkit-animation-name: slide5;
    animation-name: slide5;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
}

/*==========================================
message
===========================================*/

#message {
    padding-top: 100px;
    background-color: rgb(252, 254, 253);
}

#message h1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    /*    font-weight: normal;*/
    font-weight: 600;
    text-align: center;
    line-height: 1.8;
    color: #004EA2;
}

#message h1 span {
    font-family: 'HG行書体', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
    font-size: 22px;
    line-height: 1.2;
    display: block;
    width: 850px;
    margin: 0 auto;
    text-align: right;
}

#message h1 span b {
    font-size: 26px;
}

.message_1 {
    display: block;
    content: "";
    margin: 10px 0;
}

.message_2 {
    width: 100%;
    height: auto;
    position: relative;
}

.message_2 img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    margin-top: 100px;
}

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    #message h1 {
        font-size: 15px;
    }

    .message_2 img {
        margin-top: 500px;
    }

    #message h1 span {
        font-size: 14px;
        line-height: 1.2;
        display: block;
        width: 100%;
        text-align: rigcht;
    }

    #message h1 span b {
        font-size: 22px;
        padding-right: 50px;
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    #message h1 {
        font-size: 15px;
    }

    .message_2 img {
        margin-top: 500px;
    }

    #message h1 span {
        font-size: 14px;
        line-height: 1.2;
        display: block;
        width: 500px;
        text-align: rigcht;
    }

    #message h1 span b {
        font-size: 22px;
        padding-right: 50px;
    }
}

/*==========================================
policy
===========================================*/

#policy {
    padding-top: 150px;
    width: 1200px;
    margin: 0 auto;
}

#policy section {
    width: 1200px;
    margin: 0 auto;
    margin-bottom: 100px;
    line-height: 1.5;
}

#policy section h2 {
    font-size: 24px;
}

#policy section ul {
    display: flex;
    margin-top: 25px;
}

#policy section ul li {
    width: 400px;
}

#policy section ul li img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

#policy section ul li p {
    margin-top: 15px;
    padding-right: 25px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.1;
}

/*policyのタイトル*/

.heading09 {
    font-size: 50px;
    margin-bottom: 25px;
    color: #004EA2;
}

.heading09 span {
    text-shadow: 5px 10px 3px #ddd;
    font-size: 60px;
}

.heading09::before {
    content: attr(data-en);
    display: block;
    color: #404040;
    font-size: 24px;
}

.heading09::after {
    content: '';
    display: block;
    width: 85px;
    height: 1px;
    background-color: #ddd;
}

@media screen and (max-width:639px) {
    #policy {
        width: 100%;
        padding-top: 100px;
    }

    #policy section {
        width: 95%;
    }

    #policy section h2 {
        font-size: 14px;
    }

    #policy section ul {
        display: block;
    }


    #policy section ul li {
        width: 100%;
        margin-bottom: 25px;
    }

    #policy section ul li p {
        font-size: 18px;
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    #policy {
        width: 100%;
        padding-top: 100px;
    }

    #policy section {
        width: 95%;
    }

    #policy section h2 {
        font-size: 14px;
    }

    #policy section ul {
        display: block;
    }


    #policy section ul li {
        width: 100%;
        margin-bottom: 25px;
    }

    #policy section ul li p {
        font-size: 18px;
    }
}

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    /*policyのタイトル*/
    .heading09 {
        font-size: 18px;
        font-weight: bold;
    }

    .heading09 span {
        text-shadow: 1px 2px 3px #808080;
        font-size: 30px;
    }

    .heading09::before {
        content: attr(data-en);
        display: block;
        color: #ddd;
        font-size: 16px;
    }

    .heading09::after {
        content: '';
        display: block;
        width: 85px;
        height: 1px;
        background-color: #ddd;
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    /*policyのタイトル*/
    .heading09 {
        font-size: 18px;
        font-weight: bold;
    }

    .heading09::before {
        content: attr(data-en);
        display: block;
        color: #ddd;
        font-size: 16px;
    }

    .heading09::after {
        content: '';
        display: block;
        width: 85px;
        height: 1px;
        background-color: #ddd;
    }
}

/*==========================================
profile
===========================================*/

#profile {
    padding-top: 150px;
}

/*ul.profile_1*/

#profile ul.profile_1 {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}

#profile ul.profile_1 li img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

#profile ul.profile_1 li.pc {
    display: block;
}

#profile ul.profile_1 li.sp {
    display: none;
}

#profile ul.profile_1 li:nth-of-type(1) {
    width: 750px;
}

#profile ul.profile_1 li:nth-of-type(3) {
    margin-left: 50px;
    width: 300px;
}

#profile ul.profile_1 li h1 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #004EA2;
}

#profile ul.profile_1 li h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #004EA2;
}

#profile ul.profile_1 li table {
    line-height: 1.5;
}

#profile ul.profile_1 li table th {
    width: 80px;
}

#profile ul.profile_1 li table td {
    padding-bottom: 5px;
}

/*ul.profile_2*/

#profile ul.profile_2 {
    width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
}

#profile ul.profile_2 h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #004EA2;
}

#profile ul.profile_2 li {
    line-height: 1.5;
    font-size: 14px;
}

#profile ul.profile_2 > li:nth-of-type(2) {
    margin: 0 15px;
}

#profile ul.profile_2 li ul li {
    padding-bottom: 5px;
}

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    #profile ul.profile_1 {
        width: 95%;
        margin: 0 auto;
        display: block;
    }

    #profile ul.profile_1 li:nth-of-type(1) {
        width: 100%;
    }

    #profile ul.profile_1 li img {
        margin-bottom: 15px;
    }

    #profile ul.profile_1 li.pc {
        display: none;
    }

    #profile ul.profile_1 li.sp {
        display: block;
    }
    #profile ul.profile_1 li table th {
        font-size: 14px;
    }

    #profile ul.profile_1 li table td {
        font-size: 14px;
    }

    #profile ul.profile_2 {
        width: 95%;
        display: block;
    }

    #profile ul.profile_2 > li:nth-of-type(2) {
        margin: 15px 0;
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    #profile ul.profile_1 {
        width: 95%;
        margin: 0 auto;
        display: block;
    }

    #profile ul.profile_1 li:nth-of-type(1) {
        width: 100%;
    }

    #profile ul.profile_1 li img {
        margin-bottom: 15px;
    }

    #profile ul.profile_1 li.pc {
        display: none;
    }

    #profile ul.profile_1 li.sp {
        display: block;
    }
    #profile ul.profile_1 li table th {
        font-size: 14px;
    }

    #profile ul.profile_1 li table td {
        font-size: 14px;
    }

    #profile ul.profile_2 {
        width: 95%;
        display: block;
    }

    #profile ul.profile_2 > li:nth-of-type(2) {
        margin: 15px 0;
    }
}

/*==========================================
activity
===========================================*/

.activity_1 {
    width: 100%;
    height: 160px;
    background-color: #004EA2;
    position: relative;
    margin-top: 150px;
}

.activity_1 .title {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.activity_1 .title p {
    color: #fff;
}

.activity_1 .title .heading06::before {
    color: rgba(255, 255, 255, 0.2);
}

.activity_1 .title .heading06::after {
    background-color: rgba(255, 255, 255, 1);
}

.activity_1 img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

#activity {
    padding-top: 100px;
    width: 1200px;
    margin: 0 auto;
}

#activity .pc {
    margin-top: 50px;
}

#activity ul {
    display: flex;
}

#activity ul li {
    width: 380px;
}

#activity ul li.even {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 0 50px 40px;
    border-color: transparent transparent transparent #004EA2;
    margin: 0 10px;
    margin-top: 80px;
}

#activity ul li img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

#activity ul li p {
    margin-top: 15px;
    line-height: 1.5;
    font-weight: bold;
}

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    #activity {
        width: 95%;
        margin: 0 auto;
        padding-top: 10px;
    }

    #activity .pc {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 40px 50px 0px 50px;
        border-color: #004EA2 transparent transparent transparent;
        margin: 10px auto;
    }

    #activity ul {
        display: block;
    }

    #activity ul li {
        width: 380px;
    }

    #activity ul li.even {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 40px 50px 0px 50px;
        border-color: #004EA2 transparent transparent transparent;
        margin: 10px auto;
    }

    #activity ul li img {
        width: 100%;
        height: auto;
        vertical-align: bottom;
    }

    #activity ul li p {
        margin-top: 15px;
        line-height: 1.5;
        font-weight: bold;
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    #activity {
        width: 95%;
        margin: 0 auto;
        padding-top: 10px;
    }

    #activity .pc {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 40px 50px 0px 50px;
        border-color: #004EA2 transparent transparent transparent;
        margin: 10px auto;
    }

    #activity ul {
        display: block;
    }

    #activity ul li {
        width: 100%;
    }

    #activity ul li.even {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 40px 50px 0px 50px;
        border-color: #004EA2 transparent transparent transparent;
        margin: 10px auto;
    }

    #activity ul li img {
        width: 100%;
        height: auto;
        vertical-align: bottom;
    }

    #activity ul li p {
        margin-top: 15px;
        line-height: 1.5;
        font-weight: bold;
    }
}

/*==========================================
history
===========================================*/

.history_1 {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 150px;
}

.history_1 .title {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.history_1 .title p {
    color: #fff;
}

.history_1 .title .heading06::before {
    color: rgba(255, 255, 255, 0.2);
}

.history_1 .title .heading06::after {
    background-color: rgba(255, 255, 255, 1);
}

.history_1 img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

#history {
    padding-top: 100px;
    width: 1200px;
    margin: 0 auto;
}

#history ul {
    display: flex;
}

#history ul li {
    line-height: 1.5;
}

#history ul li.pc {
    display: block;
}

#history ul li.sp {
    display: none;
}

#history ul li:nth-of-type(1) {
    width: 750px;
}

#history ul li:nth-of-type(2) {
    margin-left: 50px;
    width: 400px;
}

#history ul li img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

#history h1 {
    font-size: 24px;
    border-bottom: solid 1px #ddd;
    line-height: 1.2;
    color: #004EA2;
    margin-bottom: 15px;

}

/*h1の左線*/

#history h1 {
    padding: 0.25em 0.5em;
    background: transparent;
    border-left: solid 5px #004EA2;
}

/*h1の左線*/

#history h1 span {
    font-size: 50px;
    padding-right: 25px;
    color: #000;
}

/*history_even*/

#history .history_even {
    margin: 75px 0;
}

#history .history_even ul li:nth-of-type(2) {
    width: 750px;
}

#history .history_even ul li:nth-of-type(1) {
    width: 400px;
}

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    #history {
        width: 95%;
        margin: 0 auto;
        padding-top: 10px;
    }

    #history h1 span {
        font-size: 24px;
        padding-right: 0px;
    }

    #history p {
        margin-bottom: 15px;
    }

    #history ul {
        display: block;
    }

    #history ul li.pc {
        display: none;
    }

    #history ul li.sp {
        display: block;
    }

    #history ul li:nth-of-type(1) {
        width: 100%;
    }

    #history ul li:nth-of-type(2) {
        width: 100%;
        margin-left: 0;
    }

    #history .history_even ul li:nth-of-type(1) {
        width: 100%;
    }

    #history .history_even ul li:nth-of-type(2) {
        width: 100%;
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    #history {
        width: 95%;
        margin: 0 auto;
        padding-top: 10px;
    }

    #history h1 span {
        font-size: 24px;
        padding-right: 0px;
    }

    #history p {
        margin-bottom: 15px;
    }

    #history ul {
        display: block;
    }

    #history ul li.pc {
        display: none;
    }

    #history ul li.sp {
        display: block;
    }

    #history ul li:nth-of-type(1) {
        width: 100%;
    }

    #history ul li:nth-of-type(2) {
        width: 100%;
        margin-left: 0;
    }

    #history .history_even ul li:nth-of-type(1) {
        width: 100%;
    }

    #history .history_even ul li:nth-of-type(2) {
        width: 100%;
    }
}

/*==========================================
appreciate
===========================================*/

#appreciate {
    width: 1200px;
    margin: 0 auto;
    margin-top: 150px;
    line-height: 1.5;
}

#appreciate h1 {
    font-size: 24px;
}

#appreciate p.appreciate_1 {
    text-align: right;
}

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    #appreciate {
        width: 95%;
        margin: 0 auto;
        line-height: 1.5;
    }

    #appreciate h1 {
        font-size: 22px;
    }

    #appreciate p {
        font-size: 14px;
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    #appreciate {
        width: 95%;
        margin: 0 auto;
        line-height: 1.5;
    }

    #appreciate h1 {
        font-size: 22px;
    }

    #appreciate p {
        font-size: 14px;
    }
}

/*==========================================
movie
===========================================*/

#movie {
    width: 1200px;
    margin: 0 auto;
    margin-top: 150px;
    line-height: 1.5;
}

#movie ul {
    display: flex;
}

#movie ul li {
    width: 380px;
}

#movie ul li:nth-of-type(2) {
    margin: 0 30px;
}

#movie ul li video {
    width: 100%;
}

#movie h1 {
    font-size: 24px;
    text-align: center;
}

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    #movie {
        width: 95%;
    }

    #movie ul {
        display: block;
    }

    #movie ul li {
        width: 100%;
    }

    #movie ul li:nth-of-type(2) {
        margin: 30px 0;
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    #movie {
        width: 95%;
    }

    #movie ul {
        display: block;
    }

    #movie ul li {
        width: 100%;
    }

    #movie ul li:nth-of-type(2) {
        margin: 30px 0;
    }
}

/*==========================================
footer
===========================================*/

footer {
    margin-top: 150px;
    background-color: #004EA2;
    padding: 50px 0;
    color: #fff;
}

footer ul {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}

footer ul li {}

footer ul li:nth-of-type(1) {
    width: 500px;
}

footer ul li:nth-of-type(1) p {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

footer ul li:nth-of-type(1) p span {
    letter-spacing: 10px;
    padding-left: 12px;
}

footer ul li:nth-of-type(1) h1 {
    font-size: 50px;
}

footer ul li:nth-of-type(2) {
    width: 500px;
    font-weight: bold;
    font-size: 16px;
}

footer ul li:nth-of-type(2) p:nth-of-type(1) {
    font-size: 24px;
    margin-bottom: 10px;
}

footer ul li:nth-of-type(2) p:nth-of-type(2) {
    margin-bottom: 5px;
}

footer ul li:nth-of-type(2) p:nth-of-type(3) {}


footer .fa-facebook {
    color: #fff;
    font-size: 75px;
}

footer .fa-square-twitter {
    color: #fff;
    font-size: 75px;
    margin-left: 35px;
}

footer li a:hover {
    opacity: 0.6;
}

small {
    display: block;
    text-align: center;
    font-size: 10px;
    color: #777;
    padding: 5px 0;
}


@media screen and (max-width:1000px) {
    /*スマホ用のcssを記述*/
    footer ul {
        width: 95%;
        display: block;
        /*        padding-left: 25px;*/
    }

    footer ul li.sp {
        /*        display: none;*/
        display: inline-block;
        margin-top: 25px;
    }

    footer .fa-facebook,
    footer .fa-square-twitter {
        color: #fff;
        font-size: 75px;
    }

    footer ul li {}

    footer ul li:nth-of-type(1) {
        width: 100%;
    }

    footer ul li:nth-of-type(2) {
        width: 100%;
    }
}

/*==========================================
ページトップへボタンのスタイル
===========================================*/

a#pagetopBtn img {
    position: fixed;
    bottom: 22px;
    right: 0;
    z-index: 999;
}
/*==========================================
schedule_202304
===========================================*/
.schedule_202304 {
    width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
}
.schedule_202304 img {
    width: 100%;
    height: auto;
}

@media screen and (max-width:639px) {
    /*スマホ用のcssを記述*/
    .schedule_202304 {
        width: 95%;
    }
}

@media only screen and (min-width:640px) and (max-width:1023px) {
    /*tablet用のcssを記述*/
    .schedule_202304 {
        width: 95%;
    }
}