@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.6rem;
}

.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;
}

.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;
}

.pc-none {
    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;
    }
    .pc-none {
        display: block;
    }
    .sp-none {
        display: none;
    }
}

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



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

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

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

.header-top {
    margin-bottom: 11px;
}

.header-top h1 {
    font-size: 13px;
}

.header-logo {
    font-size: 1.0rem;
    color: #004EA2;
    margin-top: 20px;
}

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

.header-top-right a {
    color: #6DB077;
    background: url(img/top-icon1.png) no-repeat center left 4px;
    display: inline-block;
    border: 1px solid #6DB077;
    padding: 12px 32px 12px 48px;
}

.header-menu {
    background-color: #65C6E2;
}

.header-menu ul li {
    width: 150px;
    text-align: center;
}

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

.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: #fff;
    -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: 0px;
    }
    .header-top h1 {
        display: none;
    }
    .header-logo {
        margin-top: 15px;
    }
    .header-logo img {
        width: 110px;
        margin-left: 0px;
    }
    .header-top-right a {
        padding: 10px 10px 10px 48px;
        margin: 10px 60px 0 0;
        font-size: 1rem;
    }
    .main-nav-item {
        line-height: 4.6rem;
    }
    .main-nav-item a span {
        text-align: center;
        display: block;
    }
}

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

main {
    padding-top: 150px;
}
.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-news-sec {
    padding: 95px 0;
    background: #FCFBF5;
}

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

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

.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 30px;
    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;
}

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

.go-top a {
    display: block;
}

footer {
    background-color: #F2FCFF;
}

.footer-box {
    border-bottom: 1px solid #86D2E8;
    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 4px / 3px 5px;
}

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

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

@media screen and (max-width: 1024px) {
.top-news-sec ul li span.list-text {
    width: 680px;
}
}
@media screen and (max-width: 768px) {
    main {
        padding-top: 66px;
    }
    .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;
        text-align: center;
    }
    .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;
    }
    .banner-box {
        max-width: 63 0px;
        margin: 0 auto;
    }
    .banner-box a {
        margin: 0 5px 10px;
    }
    .footer-menu {
        display: none;
    }
    .footer-right {
        width: 100%;
    }
    .footer-box {
        padding: 20px 0;
    }
}

@media screen and (max-width: 630px) {
    .banner-box {
        max-width: 400px;
    }
    .banner-box a {
        width: 47%;
        margin: 5px 0;
    }
    .banner-box a img {
        width: 100%;
    }
    .footer-top .f-logo-box,
    .footer-top div {
        width: 300px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .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%;
}

.box01 th {
    width: 15%;
    padding: 25px;
    text-align: left;
    font-weight: bold;
}

.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: #2FB0D5;
}

.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: #0C5B71;
    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;
}

.content-box h3::before,
.content-box h3::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 5px;
    top: 50%;
    background-color: #5FA2B5;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.content-box h3::before {
    left: -90px;
}

.content-box h3::after {
    right: -90px;
}

.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;
}
.vertical {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.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 {
        width: 70%;
        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%;
    }
   .vertical {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
　　}
}

@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;
    }
}
