@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    -webkit-text-size-adjust: none;
    line-height: 1;
}

* {
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

a {
    color: #000000;
}

a:hover {
    opacity: 0.8;
    transition: all .3s ease;
}

a[href^="tel:"] {
    cursor: default;
}

/*-----------------------------------
-------------   共通  --------------
------------------------------------*/

html {
    font-size: 62.5%;
}

body {
    width: 100%;
    min-width: 1200px;
    font-size: 1.6rem;
    color: #000000;
}

a,
a:hover {
    text-decoration: none;
    transition: all ease 0.3s;
}

p {
    line-height: 3.0rem;
}

.cf::after {
    content: "";
    display: block;
    clear: both;
}

.wrapper {
    width: 1200px;
    margin: 0 auto;
}

.t-mincho {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.text12 {
    font-size: 12px;
}

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

.center {
    text-align: center;
}

.mt30 {
    margin-top: 30px;
}

.fl {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
}

.fl-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.fl-end {
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
}

.fl-bt {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.fl-wr {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.fl-c {
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.arrow {
    position: relative;
}

.arrow-right::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 14px;
    margin: auto;
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.arrow-up::before {
    content: "";
    position: absolute;
    top: 19px;
    bottom: 0;
    width: 18px;
    height: 18px;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.btn {
    margin: 0 auto;
    width: 300px;
    height: 60px;
}

.btn a {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

.btn.d-blue {
    background-color: #5FA2B5;
    font-weight: bold;
}

.btn.l-blue {
    background-color: #2FB0D5;
    font-weight: bold;
}

.btn.d-pink {
    background-color: #EF7373;
    font-weight: bold;
    margin-top: 2em;
}

.text-blue {
    color: #5FA2B5;
    font-weight: bold;
}

.pc-none {
    display: none;
}

.pc-none2 {
    display: none;
}

.sp-none {
    display: block;
}

.float-l {
    float: left;
}

.float-r {
    float: right;
}

@media screen and (max-width: 1024px) {
    body {
        min-width: 100%;
    }
    .wrapper {
        width: 96%;
    }
}

@media screen and (max-width: 768px) {
    body {
        min-width: 300px;
    }
    .wrapper {
        width: 96%;
    }
    .fl-md {
        display: flex;
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
    }
    .fl-st-md {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .fl-wr-md {
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }
    .fl-column-md {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .fl-bt-md {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media screen and (max-width: 480px) {
    .fl-column-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .pc-none {
        display: block;
    }
    .sp-none {
        display: none;
    }
}

@media screen and (max-width: 320px) {
    .pc-none2 {
        display: block;
    }
}

/*----------------------------------
---------------- Top ---------------
------------------------------------*/

/* ------------ header --------------*/

header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    min-width: 1200px;
    background-color: #fff;
}

.header-top {
    margin-bottom: 10px;
    margin-top: 15px;
}

.header-logo img {
    padding-right: 10px;
    float: left;
}

.header-text {
    float: left;
    margin-left: 10px;
}

.header-top h1 {
    font-size: 13px;
    color: #46C8B5;
    margin-top: 6px;
    margin-bottom: 4px;
    display: block;
}

.header-top p {
    font-size: 13px;
    font-weight: bold;
    display: block;
    line-height: 1.5em;
}


.header-top-right a {
    font-size: 26px;
    color: #FC77B6;
    background: url(img/top-icon1.png) no-repeat center left 4px;
    display: inline-block;
    font-weight: bold;
    padding-left: 26px;
}

.header-menu {
    background-color: #46C8B5;
}

.header-menu ul li {
    width: 25%;
    text-align: center;
}

.nav ul li:hover > a {
    opacity: 1;
    color: #164B44;
}

.nav ul li a {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    height: 32px;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
    transition: 0.3s;
    position: relative;
    margin: 11px 0;
    border-left: 1px solid #fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.nav ul li:last-child a {
    border-right: 1px solid #fff;
}

.nav ul li a span::before {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #164B44;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    -moz-transform: scaleX(0);
    -o-transform: scaleX(0);
}

.nav ul li:hover span::before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -moz-transform: scaleX(1);
    -o-transform: scaleX(1);
}

.nav ul li:hover .sub-menu {
    max-height: 500px;
    transition: max-height ease 0.6s 1ms;
    -webkit-transition: max-height ease 0.6s 1ms;
    -moz-transition: max-height ease 0.6s 1ms;
    -ms-transition: max-height ease 0.6s 1ms;
    -o-transition: max-height ease 0.6s 1ms;
}

.main-nav {
    position: relative;
}

.nav ul .sub-menu {
    position: absolute;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    max-width: 1200px;
    background: #13549D;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height ease 0.6s 1ms;
    -webkit-transition: max-height ease 0.6s 1ms;
    -moz-transition: max-height ease 0.6s 1ms;
    -ms-transition: max-height ease 0.6s 1ms;
    -o-transition: max-height ease 0.6s 1ms;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.nav ul .sub-menu li {
    margin: 10px 0 10px 2.2%;
    width: 22%;
    border: 1px solid #fff;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    ;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
}

.nav ul .sub-menu li a {
    color: #fff;
    padding: 15px 10px;
    height: 100%;
    width: 100%;
    margin: 0;
    display: block;
    font-size: 14px;
}

.nav ul .sub-menu li a:hover {
    color: #fff;
    background-color: #ccc;
}

.main-nav-item a span {
    width: 100%;
    bottom: 10px;
}

@media screen and (max-width: 1024px) {
    header {
        min-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    header {
        min-width: 350px;
        box-shadow: 0px 4px 5px -5px #333333;
        -webkit-box-shadow: 0px 4px 5px -5px #333333;
        -moz-box-shadow: 0px 4px 5px -5px #333333;
    }
    .header-top {
        padding-bottom: 15px;
    }
    .header-top h1 {
        font-size: 10px;
    }
    .header-top p {
        line-height: 1.2;
        font-size: 10px;
    }
    .header-logo {
        margin-top: 0px;
    }
    .header-logo img {
        width: 80px;
        margin-left: 0px;
    }
    .header-top-right a {
        padding: 10px 10px 10px 28px;
        margin: 0px 60px 0 0;
        font-size: 1.6rem;
    }
    .main-nav-item {
        line-height: 4.6rem;
    }
    .main-nav-item a span {
        display: block;
        margin-left: 20px;
    }
}

@media screen and (max-width: 700px) {
    .header-top h1 {
        display: none;
    }
    .header-text {
        margin-left: 0px;
        font-size: 9px;
    }
}

@media screen and (max-width: 480px) {
    .header-text p {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .header-top {
        padding-bottom: 0px;
    }
}

/* ------------- main ------------- */

main {
    padding-top: 145px;
}

.top-about-text {
    margin-right: 50px;
}

.top-about-text h2 {
    font-size: 3.4rem;
    color: #5FA2B5;
    margin: 100px 0 20px;
}

.top-about-text .t-green {
    color: #8EC375;
    font-size: 2.6rem;
    margin-bottom: 60px;
}

.top-about-text p {
    line-height: 4.2rem;
}

.top-con-sec {
    width: 100%;
    margin-top: 5em;
    margin-bottom: 3em;
}

.top-con-sec ul {
    box-shadow: 3px 7px 15px 0px rgba(0, 0, 0, 0.2);
}

.top-con-sec li {
    overflow: hidden;
    width: 33.333%;
}

.top-con-sec a {
    width: 100%;
    display: block;
    transition-duration: 0.3s;
}

.top-con-sec li img {
    width: 100%;
    height: auto;
}

.top-con-sec a img:hover {
    transform: scale(1.1);
    transition-duration: 0.3s;
}

.top-con-sec h2 {
    color: #46C8B5;
    font-weight: bold;
    padding: 0 0 1.3em 0;
    font-size: 2rem;
}

.top-con-sec .more {
    color: #46C8B5;
    font-weight: bold;
    text-align: right;
    text-decoration: underline;
}

.top-con-sec .text {
    padding: 3rem;
}

.top-con-sec a {
    display: block;
}

.top-con-sec a:hover {
    background-color: #F7F7F7;
}

.top-con-sec ul {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.top-con-sec li {
    display: table-cell;
}

.news-con {
    width: 68%;
    float: left;
}

.news-con img {
    margin-top: 2em;
    width: 100%;
    height: auto;
}

.fb-container {
    width: 300px;
    float: right;
}

.top-news-sec {
    padding: 95px 0;
    background: #FCFBF5;
}

.top-news-sec h3 {
    font-size: 3.4rem;
    color: #FCB005;
    letter-spacing: 0.8rem;
}

.top-news-sec h3 span {
    font-size: 2.0rem;
    padding-top: 7px;
}

.top-news-sec ul {
    margin-top: 1em;
}


.top-news-sec ul li {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    line-height: 3.2rem;
}

.top-news-sec ul li a:hover {
    background: #f8ebcc;
}

.top-news-sec ul li span.date {
    color: #FEB200;
    padding: 25px 15px;
    width: 150px;
    font-weight: bold;
    border-top: 1px solid #FEB200;
}

.top-news-sec ul li:last-child span.date {
    border-bottom: 1px solid #FEB200;
}

.top-news-sec ul li span.list-text {
    padding: 25px 18px;
    border-top: 1px solid #C8C8C8;
    width: 780px;
}

.top-news-sec ul li:last-child span.list-text {
    border-bottom: 1px solid #C8C8C8;
}

.banner-sec {
    padding: 60px 0 40px;
}

.banner-box a {
    margin-left: 19px;
    margin-bottom: 20px;
}

.banner-box a:first-child,
.banner-box a:nth-child(7) {
    margin-left: 0;
}

.banner-box a:nth-child(13) {
    margin-left: 0;
}

.go-top {
    background: #46C8B5;
    height: 50px;
    text-align: center;
}

.go-top a {
    display: block;
}

footer {
    background-color: #ECF9F7;
}

.footer-box {
    border-bottom: 1px solid #46C8B5;
    padding: 30px 0;
}

.footer-right img {
    width: 132px;
}

.footer-right p {
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin-left: 15px;
    font-weight: bold;
}

.footer-menu ul li {
    margin-left: 16px;
    padding-left: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    background: url(img/arrow1.png) no-repeat left 3px / 3px 5px;
}

.footer-menu ul li a:hover {
    color: #006481;
}

.copy-right {
    text-align: center;
    font-size: 1.2rem;
    color: #46C8B5;
    padding: 15px 0 15px;
}

@media screen and (max-width: 1024px) {
    .top-news-sec ul li span.list-text {
        width: 70%;
    }
    .top-news-sec ul li span.date {
        width: 20%;
    }
}

@media screen and (max-width: 1000px) {
    .news-con {
        width: 55%;
    }
}

@media screen and (max-width: 768px) {
    main {
        padding-top: 86px;
    }
    .top-about-sec {
        margin-bottom: 30px;
    }
    .top-about-text {
        margin: 0 10px;
    }
    .top-about-text h2 {
        font-size: 2rem;
        margin: 20px 0;
    }
    .top-about-text .t-green {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    .top-about-text p {
        line-height: 2.6rem;
        font-size: 1.4rem;
    }
    .top-about-sec img {
        display: none;
    }
    .top-news-sec {
        padding: 25px 0 30px;
    }
    .top-news-sec h3 {
        width: 100%;
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    .top-news-sec h3 span {
        font-size: 1.8rem;
    }
    .top-news-sec ul li {
        width: 100%;
    }
    .top-news-sec ul li {
        font-size: 1.4rem;
    }
    .top-news-sec ul li a {
        line-height: 2.4rem;
    }
    .top-news-sec ul li span.date {
        padding: 10px;
        width: 120px;
    }
    .top-news-sec ul li span.list-text {
        width: calc(100% - 120px);
        padding: 10px;
    }
    .news-con {
        width: 55%;
    }
    .banner-sec {
        padding: 2em 0 1em;
    }
    .banner-box a {
        width: 18%;
        margin-right: 1%;
        margin-left: 1%;
    }
    .banner-box a:first-child,
    .banner-box a:nth-child(7) {
        margin-left: 1%;
    }
    .banner-box a:nth-child(13) {
        margin-left: 1%;
    }
    .banner-box a img {
        width: 100%;
    }
    .banner-sec .fl-bt-md {
        justify-content: stretch;
    }
    .footer-menu {
        display: none;
    }
    .footer-right {
        width: 100%;
    }
    .footer-box {
        padding: 20px 0;
    }
}


@media screen and (max-width: 680px) {
    main {
        padding-top: 70px;
    }
    .top-con-sec h2 {
        padding: 0 0 0.6rem 0;
        font-size: 1.6rem;
    }

    .top-con-sec .more {
        padding-top: 1rem;
    }
    .top-con-sec ul {
        display: block;
        box-shadow: none;
    }
    .top-con-sec li {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        display: block;
        box-shadow: 3px 7px 15px 0px rgba(0, 0, 0, 0.2);
        font-size: 1.4rem;
        margin-bottom: 2em;
    }
    .news-con {
        width: 100%;
        float: none;
    }
    .fb-container {
        width: 100%;
        float: none;
        padding-top: 2em;
        text-align: center;
    }
}

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

    .footer-top .f-logo-box,
    .footer-top div {
        width: 300px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .top-con-sec {
        margin-top: 3em;
    }
    .news-con {
        font-size: 1.4rem;
    }
    .news-con img {
        display: none;
    }
    .top-news-sec ul li span.date {
        padding: 10px 10px 0 10px;
        width: 100%;
    }
    .top-news-sec ul li span.list-text {
        width: 100%;
        padding: 0 10px 10px 10px;
        border: none;
    }
    .top-news-sec ul li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .top-news-sec ul li:last-child span.date {
        border-bottom: none;
    }
    .footer-right p {
        margin-top: 10px;
    }
}

/*----------------------------------
---------------- sub ---------------
------------------------------------*
/* ------------ テーブル01 --------------*/

.box01 table {
    width: 100%;
    margin-top: 2em;
}

.box01 th {
    width: 15%;
    padding: 25px;
    text-align: left;
    font-weight: bold;
    border-bottom: 1px solid #46C8B5;
}

.box01 td {
    padding: 25px;
    line-height: 3.2rem;
}

.box01 tr {
    border-bottom: 1px solid #000;
}

@media screen and (max-width: 786px) {
    .box01 table {
        font-size: 1.4rem;
        line-height: 2;
    }

    .box01 th {
        width: 100%;
        display: block;
        padding: 15px 5px 0 5px;
    }

    .box01 td {
        display: block;
        padding: 5px;
        padding-bottom: 15px;
    }
}

.bread-crumb {
    padding: 13px 0;
    background-color: #46C8B5;
}

.bread-crumb li {
    padding-right: 6px;
    color: #fff;
    font-size: 1.2rem;
}

.bread-crumb li a {
    padding: 0 6px;
    color: #fff;
}

.sub-visual {
    height: 200px;
    background: url(img/sub-visual1.png) no-repeat center center / cover;
}

.sub-visual h2 {
    text-align: center;
    padding-top: 85px;
    color: #fff;
    font-size: 3.6rem;
    font-weight: bold;
}

.content-box {
    margin: 100px 0;
}

.content-box .title-line {
    text-align: center;
}

.content-box h2 {
    font-size: 3.4rem;
    font-weight: bold;
    color: #000000;
}

.content-box h3 {
    font-size: 2.4rem;
    line-height: 1.6;
    font-weight: bold;
    color: #5FA2B5;
    display: inline-block;
    position: relative;
}


.apply-sec ul.flow-list {
    margin: 40px 0 50px;
    line-height: 3.2rem;
}

.apply-sec ul.flow-list li {
    margin-bottom: 25px;
    text-indent: -20px;
    margin-left: 20px;
}

.content-box .img-box {
    text-align: center;
    border: 1px solid #CFCFCF;
    padding: 30px 0;
    margin-top: 2em;
}

.content-box .img-box img {
    margin: 0 auto;
}

.content-box .title-text {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
}

.content-box .table-block {
    margin-top: 90px;
}

.table-block table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #CECECE;
}

.table-block table tr td {
    border: 1px solid #CECECE;
    padding: 13px 0;
    text-align: center;
    vertical-align: middle;
}

.table-block table tr .t-left {
    text-align: left;
    padding-left: 10px;
}

.table-block table span {
    font-size: 1.3rem;
}

.table-block table tr a {
    color: #B25900;
    text-decoration: underline;
}

.table-block th {
    color: #fff;
    background-color: #999999;
    vertical-align: middle;
    border-right: 1px solid #CCCCCC;
    padding: 15px 0;
    font-weight: bold;
    line-height: 1.4;
}

.table-block table .b-gray {
    background-color: #F4F4F4;
}

.table-block .note-block {
    padding-top: 13px;
}

.table-block .note-block ul li {
    font-size: 1.4rem;
    color: #000000;
    line-height: 2.4rem;
    margin: 0 0 0 38px;
    text-indent: -38px;
}

.document-sec p {
    padding: 42px 0;
    color: #000000;
}

.cost-sec .btn {
    margin-top: 60px;
}

.cost-sec .form-box {
    margin-top: 120px;
}

.cost-sec .form-item {
    width: 580px;
    padding: 25px 15px;
    border: 1px solid #A4A4A4;
    border-top: 5px solid #2FB0D5;
}

.cost-sec .form-title {
    font-size: 2.4rem;
    margin-bottom: 25px;
    text-align: center;
    color: #2FB0D5;
    font-weight: bold;
}

.cost-sec .form-item p {
    color: #000000;
    margin-bottom: 30px;
}

.cost-sec .form-item .btn {
    margin-top: auto;
}

.content-box .text-box {
    margin-top: 35px;
    color: #000000;
}

.content-box .float-r {
    text-align: center;
    margin: 0 0 30px 60px;
}

.content-box .contact-box {
    display: inline-block;
    margin-top: 70px;
    padding: 20px;
    border: 1px solid #DFDFDF;
    background-color: #F8F8F8;
    color: #000000;
}

.content-box .contact-box .card-head {
    border-left: 5px solid #000;
    font-size: 1.8rem;
    padding: 6px 0 6px 10px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 2.6rem;
}

.content-box .contact-box p {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
}

.content-box .contact-box p span:first-child {
    width: 90px;
}

.content-box .contact-box p span:last-child {
    width: calc(100% - 90px);
}

.link-box {
    margin: 100px 0;
}

.link-box ul li {
    width: 47%;
    line-height: 2.6rem;
    border-bottom: 1px solid #D6D6D6;
    padding: 30px 0 30px 30px;
    background-image: url(img/link-li.png);
    background-repeat: no-repeat;
    background-position: 10px center;
}

.link-box ul li:nth-child(1),
.link-box ul li:nth-child(2) {
    border-top: 1px solid #D6D6D6;
}

.link-box a {
    font-weight: bold;
    text-decoration: underline;
}

.content-box .project h3 {
    font-size: 2.4rem;
    font-weight: bold;
    color: #5FA2B5;
    border-left: 3px solid #5FA2B5;
    padding-left: 10px;
    margin-bottom: 1em;
}

.content-box .project h3::before,
.content-box .project h3::after {
    display: none;
}

.content-box .project {
    line-height: 2;
}

.content-box .project ol {
    list-style-type: decimal;
    margin-left: 20px;
}

.content-box .project li {
    margin-bottom: 1em;
}

.content-box .project a {
    text-decoration: underline;
}

@media screen and (max-width: 1024px) {
    .content-box .img-box img {
        width: 87%;
    }
}

@media screen and (max-width: 768px) {
    .content-box {
        margin: 50px 0;
    }
    .content-box p {
        font-size: 1.4rem;
        line-height: 2;
    }
    .content-box h2 {
        font-size: 2.2rem;
    }
    .content-box h3 {
        font-size: 1.8rem;
        line-height: 2.6rem;
    }
    .content-box h3::before {
        left: -70px;
    }
    .content-box h3::after {
        right: -70px;
    }
    .content-box .title-text {
        font-size: 1.6rem;
    }
    .content-box .text-box img {
        width: 100%;
    }
    .content-box .img-box img {
        width: 87%;
    }
    .cost-sec .form-item {
        width: 100%;
        margin-bottom: 30px;
    }
    .content-box .float-r {
        margin: 0 0 20px 15px;
        width: 45%;
    }
    .content-box .text-box {
        margin-top: 20px;
    }
    .content-box .contact-box .card-head {
        font-size: 1.6rem;
    }
    .apply-sec ul.flow-list {
        font-size: 1.4rem;
        line-height: 2;
    }
    .table-block table {
        font-size: 1.2rem;
        line-height: 2;
    }
    .link-box ul li {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .sub-visual {
        height: 120px;
    }
    .sub-visual h2 {
        font-size: 2.0rem;
        padding-top: 50px;
    }
    .content-box h3 {
        width: 100%;
    }
    .content-box h3::before,
    .content-box h3::after {
        display: none;
    }
}


/* ------------ 社会貢献 --------------*/

.activity h3 {
    font-size: 2.4rem;
    line-height: 1.6;
    font-weight: bold;
    color: #5FA2B5;
    border-bottom: 2px solid #5FA2B5;
    display: block;
    margin-bottom: 2em;
}

.content-box .activity h3::before,
.content-box .activity h3::after {
    display: none;
}

.activity {
    margin-bottom: 80px;
}

.activity li {
    float: left;
    width: 50%;
    margin-bottom: 3em;
}


.activity li img {
    float: left;
    width: 200px;
}

.activity li p {
    float: left;
    width: 60%;
    margin-left: 1em;
}


@media screen and (max-width: 768px) {
    .activity h3 {
        font-size: 1.8rem;
        width: 100%;
    }
    .activity {
        margin-bottom: 20px;
    }
    .activity li {
        width: 46%;
        margin-left: 2%;
        margin-right: 2%;
    }
    .activity li img {
        float: none;
        width: 100%;
    }
    .activity li p {
        float: none;
        width: 100%;
        margin-left: 0em;
    }
}


/* ------------ プライバシー --------------*/

.privacy {
    width: 100%;
    margin-top: 30px;
    padding-top: 30px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #CCC;
    line-height: 30px
}

.privacy dt {
    width: 100%;
    color: #5FA2B5;
    font-weight: bold;
    font-size: 110%;
}

.privacy dd {
    width: 100%;
    padding-bottom: 30px;
}

.privacy-box {
    width: 100%;
    background-color: #1B2E67;
    color: #FFF;
    padding: 5px;
    margin-bottom: 10px;
}


/* ------------ カフェ --------------*/

.cafe_main {
    width: 100%;
    height: 300px;
    background-image: url(img/cafe-bg.png);
    background-repeat: no-repeat;
    background-position: right top;
    margin-bottom: 4em;
    padding-top: 100px;
}

.cafe_main p {
    color: #693400;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 200%;
    font-weight: bold;
    background-color: #fff;
    display: inline-block;
    margin-left: 100px;
    line-height: 160%;
}

.cafe_text02 p {
    color: #693400;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 140%;
    font-weight: bold;
    margin-bottom: 0.7em;
}

.cafe_box {
    clear: both;
    width: 100%;
    margin-bottom: 120px;
}

.box01 .cafe_box th {
    border-bottom: 1px solid #693400;
}

.cafe_box h3 {
    font-size: 2.4rem;
    line-height: 1.6;
    font-weight: bold;
    color: #693400;
    border-bottom: 3px solid #693400;
    display: block;
    margin-bottom: 1.5em;
}

.content-box .cafe_box h3::before,
.content-box .cafe_box h3::after {
    display: none;
}

.cafe_box p {
    margin-bottom: 2em;
}

.cafe_box ul {
    clear: both;
    width: 100%;
    margin-top: 10px;
    border-bottom: 1px dotted #CCCCCC;
    margin-bottom: 2%;
}

.cafe_box li {
    width: 48%;
    float: left;
    background-image: url(img/cafe_li.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 1%;
    color: #B07C4B;
    font-weight: bold;
    margin-bottom: 2%;
}

@media screen and (max-width: 768px) {
    .cafe_main {
        background-size: 80%;
    }
    .cafe_main p {
        font-size: 2rem;
        margin-left: 0px;
    }
    .cafe_text02 p {
        font-size: 2rem;
    }
}

@media screen and (max-width: 600px) {
    .content-box .cafe_text02 {
        font-size: 1.8rem;
    }
    .content-box h3 {
        font-size: 1.8rem;
        width: 100%;
    }

    .cafe_box li {
        width: 98%;
        font-size: 1.4rem;
        float: none;
        padding-left: 2%;
        margin-bottom: 14px;
    }
    .cafe_box {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 480px) {
    .cafe_main {
        height: auto;
        margin-bottom: 2em;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .cafe_main p {
        font-size: 1.6rem;
        margin-left: 0px;
    }
    .content-box .cafe_text02 {
        font-size: 1.6rem;
    }
}

/* ------------ ショップ --------------*/

.shop_main {
    width: 100%;
    height: 300px;
    background-image: url(img/shop-bg.png);
    background-repeat: no-repeat;
    background-position: right top;
    margin-bottom: 4em;
    padding-top: 100px;
}

.shop_main p {
    color: #46C8B5;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 200%;
    font-weight: bold;
    background-color: #fff;
    display: inline-block;
    margin-left: 100px;
    line-height: 160%;
}

.shop {
    margin-bottom: 80px;
}

.shop_text02 {
    color: #46C8B5;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 140%;
    font-weight: bold;
    margin-bottom: 0.7em;
}

.shop-p h3 {
    font-size: 2.4rem;
    line-height: 1.6;
    font-weight: bold;
    color: #5FA2B5;
    border-bottom: 2px solid #5FA2B5;
    display: block;
    margin-bottom: 1em;
}

.content-box .shop-p h3::before,
.content-box .shop-p h3::after {
    display: none;
}

.shop-p table {
    border-top: 1px solid #000;
}

.shop-p tr:nth-child(odd) {
    background: #F4F4F4;
}

.shop-p li {
    font-weight: bold;
    margin-bottom: 1em;
}

.content-box .shop-p li::before {
    content: "・";
}

.lp-no {
    white-space: nowrap;
}


@media screen and (max-width: 768px) {
    .shop_main {
        background-size: 80%;
    }
    .shop_main p {
        font-size: 2rem;
        margin-left: 0px;
    }
    .shop_text02 p {
        font-size: 2rem;
    }

    .box01 .shop td {
        line-height: 2.6rem;
        padding: 5px;
        padding-bottom: 1px;
    }
    .shop-p li {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 600px) {
    .content-box .shop_text02 {
        font-size: 1.8rem;
    }
    .content-box h3 {
        font-size: 1.8rem;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .shop_main {
        height: auto;
        margin-bottom: 2em;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .shop_main p {
        font-size: 1.6rem;
        margin-left: 0px;
    }
    .content-box .shop_text02 {
        font-size: 1.6rem;
    }
    .content-box .shop-p li {
        text-indent: -1em;
        padding-left: 1em;
        line-height: 2rem;
    }

}


/* ------------ レース --------------*/

.race h3 {
    display: block;
    margin-top: 4em;
    display: block;
}

.race h3::before {
    display: none;
}

.race h3 {
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 1em;
    border-bottom: 3px solid #46C8B5;
    position: relative;
}

.race h3::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: 2;
    content: '';
    width: 20%;
    height: 3px;
    background-color: #FC77B6;
}

.race th {
    background: #666;
    border-bottom: none;
    text-align: center;
    color: #fff;
}

.race td {
    text-align: center;
}

.race tr:nth-child(odd) {
    background: #eee;
}

.race a {
    text-decoration: underline;
}

.race ul {
    margin-top: 3em;
}

.race li {
    text-align: center;
    margin-bottom: 1em;
    margin-left: 0.6em;
    margin-right: 0.6em;
}

.race li img {
    width: 100%;
}

.name-l {
    width: 50%;
    float: left;
}

.name-l .photo {
    float: left;
    margin-right: 1em;
}

.name-l dl {
    width: 40%;
    float: left;
    border-top: 1px solid #ccc;
}

.name-l dt {
    float: left;
    font-weight: bold;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    border-bottom: 1px solid #ccc;
}

.name-l dd {
    padding-left: 80px;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 1060px) {
    .name-l img {
        width: 36%;
    }
    .name-l dl {
        width: 50%;
    }

    .name-l dt {
        font-size: 1.4rem;
    }

    .name-l dd {
        font-size: 1.4rem;
    }

    @media screen and (max-width: 768px) {
        .name-l img {
            width: 24%;
        }
        .name-l dl {
            width: 70%;
        }

        .name-l dt {
            font-size: 1.4rem;
        }

        .name-l dd {
            font-size: 1.4rem;
        }
        .box01 .race th {
            width: 33.3333%;
            display: inline-block;
            padding: 15px 5px 0 5px;
        }
        .box01 .race td {
            width: 33.3333%;
            display: inline-block;
            padding: 15px 5px 0 5px;
        }
        .race li {
            width: 47.2%;
        }
        .race li img {
            width: 100%;
        }
    }


    @media screen and (max-width: 480px) {
        .race h3 {
            margin-top: 2em;
        }

        .name-l .photo {
            float: none;
            margin-right: 0em;
        }
        .name-l img {
            width: 96%;
        }
        .name-l dl {
            width: 96%;
        }
        .name-l dt {
            font-size: 1.2rem;
        }

        .name-l dd {
            padding-left: 60px;
            font-size: 1.2rem;
        }

        .race li {
            width: 44.5%;
        }
    }
