@charset "UTF-8";
body,
h1,
h2,
h3,
h4,
h5,
p,
li,
span,
a,
table,
th,
td {
    font-family:
        "Meiryo", "メイリオ", "ヒラギノ角ゴ Pro W3", "HiraKakuPro-W3",
        "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    text-decoration: none;
    list-style: none;
    font-size: 16px;
    line-height: 1.5;
}

body:hover,
h1:hover,
h2:hover,
h3:hover,
h4:hover,
h5:hover,
p:hover,
li:hover,
span:hover,
a:hover,
table:hover,
th:hover,
td:hover {
    text-decoration: none;
}

body {
    background: url(../img/common/bg.png) center top no-repeat;
    background-size: cover;
}

body.modal_on {
    overflow: hidden;
}

.main {
    width: 654px;
}

.side {
    width: 280px;
}

.wrap {
    max-width: 1010px;
    margin: 0 auto;
    padding-inline: 20px;
}

.flex {
    display: -ms-flexbox;
    display: flex;
}

.flex.between_center {
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.flex.between_start {
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex.between_end {
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex.start_start {
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex.start_center {
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
}

.flex.center_center {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex.end_center {
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
}

.flex.flexwrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.fvLower {
    background: no-repeat center center;
    background-size: 100% auto;
    width: 100%;
}

.fvLower img {
    width: 100%;
    height: auto;
}

.fvLower.pdt30 {
    padding-top: 30px;
}

.breadcrumbs {
    padding: 0;
    background: #d0cabd;
}

.breadcrumbs .item {
    font-size: 16px;
    margin-right: 10px;
}

.breadcrumbs .item a {
    color: #2b1f14;
    line-height: 24px;
    font-size: 16px;
}

.breadcrumbs .item a:hover {
    text-decoration: underline;
}

/* .page404 {
  padding: 50px 0;
  text-align: center;
}

.page404 .title {
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 20px;
  color: #775739;
}

.page404 .text {
  font-size: 16px;
  line-height: 30px;
}

.page404 .link {
  border-radius: 50px;
  display: block;
  text-align: center;
  width: 485px;
  background: #3C9AEE;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 22px 0 22px 15px;
  position: relative;
  transition: .3s;
  margin: 24px auto 0;
  letter-spacing: .15em;
}

.page404 .link:hover {
  opacity: .7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  transition: .3s;
} */

img.pc_img {
    display: inline-block;
}

img.sp_img {
    display: none;
}

.pagenation {
    text-align: center;
    margin-top: 50px;
}

.pagenation ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagenation li {
    margin-right: 10px;
}

.pagenation .active {
    display: block;
    border: 2px #3c9aee solid;
    border-radius: 50px;
    background: #3c9aee;
    color: #fff;
    font-size: 12px;
    height: 30px;
    width: 30px;
    line-height: 30px;
}

.pagenation a {
    display: block;
    border: 2px #3c9aee solid;
    border-radius: 50px;
    background: #fff;
    color: #3c9aee;
    font-size: 12px;
    height: 30px;
    width: 30px;
    line-height: 30px;
    transition: 0.3s;
}

.pagenation a:hover {
    background: #3c9aee;
    color: #fff;
    transition: 0.3s;
}

.pagenation .prev a,
.pagenation .next a,
.pagenation .prev a:hover,
.pagenation .next a:hover {
    background: none;
    border: none;
    font-size: 25px;
    color: #3c9aee;
}

@media screen and (min-width: 1500px) {
    body {
        max-width: 1500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    body {
        margin-top: 98.3px;
    }
    .main,
    .side {
        width: 100%;
    }
    .wrap {
        max-width: 100%;
        padding: 0;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    img.pc_img {
        display: none;
    }
    img.sp_img {
        display: inline-block;
    }
    .breadcrumbs {
        padding: 5px 10px;
    }
    .breadcrumbs .item {
        font-size: 12px;
        margin-right: 5px;
    }
    .breadcrumbs .item.link {
        min-width: 50px;
    }
    .breadcrumbs .item a {
        line-height: 20px;
        font-size: 12px;
    }
    .page404 {
        padding: 40px 20px;
    }
    .page404 .title {
        font-size: 20px;
        line-height: 30px;
    }
    .page404 .link {
        width: 80%;
    }
}

header {
    width: 100%;
    margin: 0 auto;
    padding: 17px 20px 0;
    box-sizing: border-box;
}

header .logo_parent {
    width: 25%;
}

header .logo_parent .site_info {
    font-size: 12.5px;
    margin-bottom: 9px;
}

header .logo_parent h1.site_info {
    font-weight: normal;
    font-size: 12.5px;
}

header .logo_parent a {
    width: 285px;
    display: block;
}

header .logo_parent a.current {
    pointer-events: none;
}

header .logo_parent a img {
    width: 100%;
    height: auto;
}

header .logo_parent a:hover {
    opacity: 0.8;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; */
    transition: 0.3s;
}

header .info_parent {
    width: 65%;
}

header .info_parent .info_top {
    margin-bottom: 16px;
}

header .info_parent .info_top a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    color: #2b1f14;
}

header .info_parent .info_top a.current {
    pointer-events: none;
    text-decoration: underline;
}

header .info_parent .info_top a img {
    margin-right: 5px;
    vertical-align: middle;
}

header .info_parent .info_top a:hover {
    text-decoration: underline;
}

header .info_parent .info_bottom .tel_parent {
    text-align: center;
}

header .info_parent .info_bottom .tel_parent.contact {
    overflow: hidden;
}

header .info_parent .info_bottom .tel_parent .tel {
    font-family: "Signika", sans-serif;
    color: #775739;
    font-size: 35px;
    white-space: nowrap;
}

header .info_parent .info_bottom .tel_parent .tel img {
    margin-right: 10px;
}

header .info_parent .info_bottom .tel_parent .time {
    color: #2b1f14;
    font-size: 15px;
    margin-right: -31px;
}

header .info_parent .info_bottom .tel_parent.contact .time {
    margin-right: 0;
}

header .info_parent .info_bottom .cv_parent {
    padding-right: 8px;
    margin-left: 22px;
}

header .info_parent .info_bottom .cv_parent a {
    font-family: "ヒラギノ角ゴ Pro W6", "HiraKakuPro-W6";
    font-size: 18px;
    width: 193px;
    background: #3c9aee;
    color: #fff;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    box-shadow: 1px 3px 0 #1976bd;
    position: relative;
    padding-left: 40px;
}

header .info_parent .info_bottom .cv_parent a.current {
    pointer-events: none;
}

header .info_parent .info_bottom .cv_parent a img {
    position: absolute;
}

header .info_parent .info_bottom .cv_parent a img.free {
    transition: 0.3s;
    top: 9px;
    left: 37px;
    width: 58px;
    height: auto;
}

header .info_parent .info_bottom .cv_parent a img.arrow {
    transition: 0.3s;
    top: 30px;
    right: 44px;
}

header .info_parent .info_bottom .cv_parent a:hover img.free {
    transform: rotate(-20deg);
    transition: 0.3s;
}

header .info_parent .info_bottom .cv_parent a.current img.free {
    transform: rotate(-20deg);
}

header .info_parent .info_bottom .cv_parent a:hover img.arrow {
    right: 40px;
    transition: 0.3s;
}

header .info_parent .info_bottom .cv_parent a.current img.arrow {
    right: 40px;
}

header .info_bottom_sp,
header .info_top_sp {
    display: none;
}

header .gnavi {
    margin-top: 15px;
    padding: 0 125px;
}

header .gnavi li a {
    display: block;
    text-align: center;
    background: center top no-repeat;
    height: 70px;
    line-height: 92px;
    transition: 0.05s;
    color: #2b1f14;
}

header .gnavi li a:hover {
    transition: 0.05s;
    color: #ff8600;
}

header .gnavi li a.current {
    pointer-events: none;
}

header .gnavi li a.current {
    color: #ff8600;
}

header .gnavi li:nth-child(1) a {
    background-image: url(../img/header/item_1.png);
}

header .gnavi li:nth-child(1) a:hover,
header .gnavi li:nth-child(1) a.current {
    background-image: url(../img/header/item_1_hover.png);
}

header .gnavi li:nth-child(2) a {
    background-image: url(../img/header/item_2.png);
}

header .gnavi li:nth-child(2) a:hover,
header .gnavi li:nth-child(2) a.current {
    background-image: url(../img/header/item_2_hover.png);
}

header .gnavi li:nth-child(3) a {
    background-image: url(../img/header/item_3.png);
}

header .gnavi li:nth-child(3) a:hover,
header .gnavi li:nth-child(3) a.current {
    background-image: url(../img/header/item_3_hover.png);
}

header .gnavi li:nth-child(4) a {
    background-image: url(../img/header/item_4.png);
}

header .gnavi li:nth-child(4) a:hover,
header .gnavi li:nth-child(4) a.current {
    background-image: url(../img/header/item_4_hover.png);
}

header .gnavi li:nth-child(5) a {
    background-image: url(../img/header/item_5.png);
}

header .gnavi li:nth-child(5) a:hover,
header .gnavi li:nth-child(5) a.current {
    background-image: url(../img/header/item_5_hover.png);
}

header .gnavi li:nth-child(6) a {
    background-image: url(../img/header/item_6.png);
}

header .gnavi li:nth-child(6) a:hover,
header .gnavi li:nth-child(6) a.current {
    background-image: url(../img/header/item_6_hover.png);
}

header #gnavi_btn,
header .info_parent_sp {
    display: none;
}

header .fixedHeader {
    background: url(../img/common/bg.png) center top no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 5;
    box-shadow: 1px 0 5px rgba(136, 136, 136, 0.7);
    display: none;
    padding: 10px 0;
}

header .fixedHeader .wrap {
    max-width: 1280px;
}

header .fixedHeader .logo_parent {
    width: 12%;
}

header .fixedHeader .logo_parent a {
    width: 100%;
    display: block;
}

header .fixedHeader .logo_parent a img {
    width: 100%;
    height: auto;
}

header .fixedHeader .logo_parent a:hover,
header .fixedHeader .logo_parent a.current {
    opacity: 0.8;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; */
    transition: 0.3s;
}

header .fixedHeader .logo_parent a.current {
    pointer-events: none;
}

header .fixedHeader .gnavi {
    padding: 0;
    margin-top: 10px;
    width: 63%;
}

header .fixedHeader .cv_parent {
    width: 20%;
    padding-right: 8px;
    margin-left: 22px;
}

header .fixedHeader .cv_parent a {
    font-family: "ヒラギノ角ゴ Pro W6", "HiraKakuPro-W6";
    font-size: 18px;
    width: 193px;
    background: #3c9aee;
    color: #fff;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    text-align: center;
    margin: 0;
    padding: 24px 0;
    box-shadow: 1px 3px 0 #1976bd;
    position: relative;
    padding-left: 40px;
}

header .fixedHeader .cv_parent a img {
    position: absolute;
}

header .fixedHeader .cv_parent a img.free {
    transition: 0.3s;
    top: 9px;
    left: 37px;
    width: 58px;
    height: auto;
}

header .fixedHeader .cv_parent a img.arrow {
    transition: 0.3s;
    top: 30px;
    right: 44px;
}

header .fixedHeader .cv_parent a:hover img.free,
header .fixedHeader .cv_parent a.current img.free {
    transform: rotate(-20deg);
    transition: 0.3s;
}

header .fixedHeader .cv_parent a:hover img.arrow,
header .fixedHeader .cv_parent a.current img.arrow {
    right: 40px;
    transition: 0.3s;
}

@media screen and (max-width: 1280px) {
    header .gnavi {
        padding: 0;
    }
    header .gnavi li a {
        font-size: 14px;
    }
    header .info_parent .info_bottom .tel_parent .tel {
        font-size: 30px;
    }
    header .logo_parent {
        width: 33%;
        flex-shrink: 0;
    }

    header .logo_parent .site_info {
        font-size: 11px;
    }

    header .logo_parent .site_info h1 {
        font-size: 11px;
    }

    header .logo_parent a {
        width: 250px;
    }
    header .info_parent {
        width: 66%;
    }
    header .info_parent .info_top li {
        min-width: 75px;
    }
    header .info_parent .info_top a {
        font-size: 12px;
    }
    header .fixedHeader .logo_parent {
        display: none;
    }
    header .fixedHeader .gnavi {
        width: 85%;
    }
    header .fixedHeader .logo_parent a {
        font-size: 11px;
    }
    header .fixedHeader .cv_parent {
        width: 13%;
    }
    header .fixedHeader .cv_parent a {
        width: 100%;
        padding-left: 0;
        border-radius: 15px;
        padding: 15px 0;
    }
    header .fixedHeader .cv_parent a img.free,
    header .fixedHeader .cv_parent a img.arrow {
        display: none;
    }
    @media screen and (max-width: 767px) {
        header {
            background: url(../img/common/bg.png) center top no-repeat;
            background-size: 100% auto;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 10000;
            padding: 6px 0 15px;
            box-shadow: 1px 0 5px rgba(136, 136, 136, 0.7);
        }
        header .logo_parent {
            padding-left: 10px;
            width: 50%;
        }
        header .logo_parent .site_info {
            white-space: nowrap;
            font-size: 10px;
        }
        header .logo_parent a {
            margin-top: 15px;
            width: 130px;
        }
        header .info_parent {
            display: none;
        }
        header .info_parent_sp {
            display: block;
        }
        header .info_parent_sp .tel_parent {
            position: absolute;
            top: 30px;
            right: 80px;
        }
        header .info_parent_sp .tel_parent a {
            display: block;
        }
        header .info_parent_sp .tel_parent a img {
            display: block;
            width: 36px;
            height: auto;
            margin: 0 auto;
        }
        header .info_parent_sp .tel_parent a .text {
            display: block;
            text-align: center;
            font-size: 10px;
            color: #ff8600;
            margin-top: 5px;
        }
        header .info_parent_sp #gnavi_btn {
            position: absolute;
            top: 26px;
            right: 10px;
            display: block;
            height: 60px;
            width: 60px;
            text-align: center;
            font-size: 10px;
            line-height: 20px;
            color: #ff8600;
            background: #fff;
            border-radius: 30px;
        }
        header .info_parent_sp #gnavi_btn .text {
            display: block;
            text-align: center;
            font-size: 10px;
            margin-top: 9px;
        }
        header .info_parent_sp #gnavi_btn .menu-trigger {
            position: relative;
            width: 30px;
            height: 22px;
            top: 14px;
            display: inline-block;
            transition: all 0.4s;
            box-sizing: border-box;
        }
        header .info_parent_sp #gnavi_btn .menu-trigger span {
            display: inline-block;
            transition: all 0.4s;
            box-sizing: border-box;
            position: absolute;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: #ff8600;
            border-radius: 4px;
        }
        header .info_parent_sp #gnavi_btn .menu-trigger span:nth-of-type(1) {
            top: 0;
        }
        header .info_parent_sp #gnavi_btn .menu-trigger span:nth-of-type(2) {
            top: 9px;
        }
        header .info_parent_sp #gnavi_btn .menu-trigger span:nth-of-type(3) {
            top: 18px;
        }
        header
            .info_parent_sp
            #gnavi_btn
            .menu-trigger.active
            span:nth-of-type(1) {
            transform: translateY(9px) rotate(-45deg);
        }
        header
            .info_parent_sp
            #gnavi_btn
            .menu-trigger.active
            span:nth-of-type(2) {
            opacity: 0;
            /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; */
        }
        header
            .info_parent_sp
            #gnavi_btn
            .menu-trigger.active
            span:nth-of-type(3) {
            transform: translateY(-9px) rotate(45deg);
        }
        header .gnavi_parent {
            display: none;
            background: #fff;
            padding-bottom: 50px;
            margin-top: 0;
            position: fixed;
            top: 97.5px;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            overflow-y: scroll;
            overflow-x: hidden;
        }
        header .gnavi_parent .gnavi {
            display: block;
            margin-top: 0;
            padding: 0;
            border-top: 1px #000 dotted;
        }
        header .gnavi_parent .gnavi li a {
            text-align: left;
            background: none;
            height: 60px;
            line-height: 60px;
            border-bottom: 1px #000 dotted;
            padding-left: 20px;
        }
        header .gnavi_parent .gnavi li a .img_parent {
            width: 40px;
            height: auto;
            display: inline-block;
            margin-right: 10px;
            text-align: center;
        }
        header .gnavi_parent .gnavi li a .img_parent img {
            vertical-align: middle;
        }
        header .gnavi_parent .gnavi li:nth-child(1) a {
            background-image: none;
        }
        header .gnavi_parent .gnavi li:nth-child(1) a:hover {
            background-image: none;
        }
        header .gnavi_parent .gnavi li:nth-child(2) a {
            background-image: none;
        }
        header .gnavi_parent .gnavi li:nth-child(2) a:hover {
            background-image: none;
        }
        header .gnavi_parent .gnavi li:nth-child(3) a {
            background-image: none;
        }
        header .gnavi_parent .gnavi li:nth-child(3) a:hover {
            background-image: none;
        }
        header .gnavi_parent .gnavi li:nth-child(4) a {
            background-image: none;
        }
        header .gnavi_parent .gnavi li:nth-child(4) a:hover {
            background-image: none;
        }
        header .gnavi_parent .gnavi li:nth-child(5) a {
            background-image: none;
        }
        header .gnavi_parent .gnavi li:nth-child(5) a:hover {
            background-image: none;
        }
        header .gnavi_parent .gnavi li:nth-child(6) a {
            background-image: none;
        }
        header .gnavi_parent .gnavi li:nth-child(6) a:hover {
            background-image: none;
        }
        header .gnavi_parent .info_bottom_sp {
            margin-bottom: 20px;
            display: block;
        }
        header .gnavi_parent .info_bottom_sp .tel_parent {
            text-align: center;
            margin: 10px 0 20px;
        }
        header .gnavi_parent .info_bottom_sp .tel_parent .tel {
            font-family: "Signika", sans-serif;
            color: #775739;
            font-size: 35px;
            white-space: nowrap;
        }
        header .gnavi_parent .info_bottom_sp .tel_parent .tel img {
            margin-right: 10px;
        }
        header .gnavi_parent .info_bottom_sp .tel_parent .time {
            color: #2b1f14;
            font-size: 15px;
            margin-right: -31px;
        }
        header .gnavi_parent .info_bottom_sp .cv_parent a {
            font-family: "ヒラギノ角ゴ Pro W6", "HiraKakuPro-W6";
            font-size: 18px;
            width: 220px;
            background: #3c9aee;
            color: #fff;
            border-radius: 50px;
            display: block;
            margin: 0 auto;
            text-align: center;
            margin: 0 auto;
            padding: 20px 0;
            box-shadow: 1px 3px 0 #1976bd;
            position: relative;
            padding-left: 40px;
        }
        header .gnavi_parent .info_bottom_sp .cv_parent a img {
            position: absolute;
        }
        header .gnavi_parent .info_bottom_sp .cv_parent a img.free {
            top: 10px;
            left: 51px;
            width: 50px;
            height: auto;
        }
        header .gnavi_parent .info_bottom_sp .cv_parent a img.arrow {
            top: 29px;
            right: 57px;
        }
        header .gnavi_parent .info_top_sp {
            display: block;
            padding-inline: 20px;
        }
        header .gnavi_parent .info_top_sp a {
            display: block;
            font-size: 15px;
            line-height: 30px;
            color: #2b1f14;
        }
        header .gnavi_parent .info_top_sp a.current {
            pointer-events: none;
            text-decoration: underline;
        }
        header .gnavi_parent .info_top_sp a img {
            margin-right: 5px;
            vertical-align: middle;
        }
        header .fixedHeader {
            display: none !important;
        }
    }
}

footer .ft_contact {
    background: #3c9aee;
    text-align: center;
    padding: 30px 0;
}

footer .ft_contact .title {
    color: #fff;
    font-size: 36px;
    font-weight: normal;
}

footer .ft_contact .text {
    color: #fff;
    margin-bottom: 9px;
    font-size: 16px;
}

footer .ft_contact ul li {
    text-align: right;
}

footer .ft_contact ul li.tel,
footer .ft_contact ul li.tel a {
    font-family: "Signika", sans-serif;
    font-size: 52px;
    color: #fff;
    margin: 0 17px 8px 0;
}

footer .ft_contact ul li.tel img,
footer .ft_contact ul li.tel a img {
    display: inline-block;
    margin-right: -5px;
    vertical-align: middle;
}

footer .ft_contact ul li.tel.pc_disp {
    display: block;
}

footer .ft_contact ul li.tel.sp_disp {
    display: none;
}

footer .ft_contact ul li .time {
    font-size: 22px;
    color: #fff;
}

footer .ft_contact ul li:last-child {
    margin-right: -17px;
}

footer .ft_contact .btn {
    color: #fff;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 388px;
    background: #ffcbb7;
    color: #3c9aee;
    font-size: 22px;
    font-weight: bold;
    padding: 21px 0 22px 15px;
    position: relative;
    transition: 0.3s;
}

footer .ft_contact .btn:hover {
    background: #fff url(../img/footer/bg_dot.png) repeat center center;
    background-size: cover;
    transition: 0.3s;
}

footer .ft_contact .btn:hover span.mail {
    background-image: url(../img/footer/mail_hover.png);
}

footer .ft_contact .btn:hover span.arrow {
    transition: 0.3s;
    right: 58px;
}

footer .ft_contact .btn span {
    position: absolute;
    display: block;
    content: "";
}

footer .ft_contact .btn span.mail {
    background: url(../img/footer/mail.png) no-repeat center center;
    background-size: 24px 15.6px;
    width: 24px;
    height: 15.6px;
    top: 28px;
    left: 65px;
}

footer .ft_contact .btn span.arrow {
    background: url(../img/footer/arrow_bl.png) no-repeat center center;
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    top: 30px;
    right: 65px;
    transition: 0.3s;
}

footer .ft_message {
    padding: 39px 0 70px;
    background: url(../img/footer/ground.png) no-repeat bottom center;
    background-size: 100% auto;
}

footer .ft_message .left {
    width: 67%;
}

footer .ft_message .left .text {
    text-align: left;
    line-height: 26px;
    font-size: 16px;
    color: #775739;
}

footer .ft_message .right {
    width: 28%;
}

footer .ft_message .right img {
    width: 100%;
    height: auto;
}

footer .ft_navi .left {
    width: 70%;
    padding-bottom: 28px;
}

footer .ft_navi .left ul {
    width: 28%;
}

footer .ft_navi .left ul:nth-child(2) {
    width: 25%;
}

footer .ft_navi .left ul:nth-child(3) {
    width: 38%;
}

footer .ft_navi .left ul li a {
    color: #071219;
    display: block;
    line-height: 28px;
    font-size: 16px;
}

footer .ft_navi .left ul li a:hover,
footer .ft_navi .left ul li a.current {
    text-decoration: underline;
}

footer .ft_navi .left ul li a.current {
    pointer-events: none;
}

footer .ft_navi .left ul li .title {
    font-size: 18px;
    font-weight: bold;
    color: #775739;
    line-height: 40px;
}

footer .ft_navi .left ul li .title img {
    margin-right: 3px;
    vertical-align: middle;
}

footer .ft_navi .right {
    width: 28%;
}

footer .ft_navi .right a {
    transition: 0.3s;
}

footer .ft_navi .right a.current {
    pointer-events: none;
}

footer .ft_navi .right a:hover {
    opacity: 0.8;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; */
    transition: 0.3s;
}

footer .ft_navi .right a img {
    width: 100%;
    height: auto;
}

footer .ft_company {
    background: #fff;
    padding: 32px 0;
}

footer .ft_company .left {
    width: 60%;
}

footer .ft_company .left h4 {
    margin-bottom: 10px;
    font-size: 15px;
    color: #071219;
}

footer .ft_company .left .cp_link {
    display: inline-block;
    margin-left: -21px;
}

footer .ft_company .left .cp_link:hover {
    opacity: 0.8;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; */
    transition: 0.3s;
}

footer .ft_company .left ul li {
    color: #071219;
    line-height: 26px;
}

footer .ft_company .left ul li span {
    font-size: 17px;
}

footer .ft_company .right {
    width: 37%;
}

footer .ft_company .right .link {
    display: block;
    margin-right: 10px;
}

footer .ft_company .right .link:hover {
    opacity: 0.8;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; */
    transition: 0.3s;
}

footer .ft_company .right .text {
    font-size: 13px;
    line-height: 20px;
    padding-left: 10mm;
}

footer .ft_company .right .ft_area {
    //clear: both;
    width: 100%;
    align-items: center;
    margin-bottom: 10mm;
}

footer .ft_company .right .ft_logo {
    width: 4rem;
}

footer small {
    background: #fff;
    height: 36px;
    line-height: 36px;
    font-size: 13px;
    text-align: center;
    display: block;
}

@media screen and (max-width: 767px) {
    footer .ft_contact {
        padding: 20px 0;
    }
    footer .ft_contact .title {
        font-weight: bold;
        font-size: 22px;
        margin-bottom: 10px;
    }
    footer .ft_contact .text {
        font-size: 15px;
    }
    footer .ft_contact ul {
        display: block;
    }
    footer .ft_contact ul li {
        text-align: center;
    }
    footer .ft_contact ul li.tel,
    footer .ft_contact ul li.tel a {
        font-size: 28px;
        margin: 0 0 8px 0;
    }
    footer .ft_contact ul li.tel img,
    footer .ft_contact ul li.tel a img {
        width: 24px;
        height: auto;
        margin-right: 10px;
    }
    footer .ft_contact ul li.tel.pc_disp {
        display: none;
    }
    footer .ft_contact ul li.tel.sp_disp {
        display: block;
    }
    footer .ft_contact ul li .time {
        font-size: 16px;
    }
    footer .ft_contact ul li:last-child {
        margin-right: 0;
        margin-bottom: 20px;
    }
    footer .ft_contact .btn {
        width: 300px;
        background: #fef1dc;
        font-size: 19px;
        padding: 16px 0;
    }
    footer .ft_contact .btn:hover span.arrow {
        right: 30px;
    }
    footer .ft_contact .btn span.mail {
        background-size: 19px 12px;
        width: 19px;
        height: 12px;
        top: 24px;
        left: 28px;
    }
    footer .ft_contact .btn span.arrow {
        top: 24px;
        right: 38px;
    }
    footer .ft_message {
        padding: 20px 0 50px;
        background: url(../img/footer/ground_sp.png) no-repeat bottom center;
        background-size: 100% auto;
    }
    footer .ft_message .flex {
        display: block;
    }
    footer .ft_message .left {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }
    footer .ft_message .left .text {
        text-align: left;
        line-height: 26px;
        font-size: 16px;
        color: #775739;
    }
    footer .ft_message .right {
        width: 80%;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }
    footer .ft_message .right img {
        width: 100%;
        height: auto;
    }
    footer .ft_navi {
        padding: 20px;
    }
    footer .ft_navi .flex {
        display: block;
    }
    footer .ft_navi .left {
        width: 100%;
        padding-bottom: 20px;
    }
    footer .ft_navi .left ul {
        width: 100%;
    }
    footer .ft_navi .left ul:nth-child(2),
    footer .ft_navi .left ul:nth-child(3) {
        width: 100%;
    }
    footer .ft_navi .left ul li a {
        line-height: 30px;
    }
    footer .ft_navi .right {
        width: 60%;
        margin: 0 auto;
    }
    footer .ft_navi .right a {
        text-align: center;
    }
    footer .ft_company {
        padding: 20px;
    }
    footer .ft_company .flex.between_end {
        display: block;
    }
    footer .ft_company .left {
        width: 100%;
        margin-bottom: 20px;
    }
    footer .ft_company .left ul li {
        color: #2b1f14;
    }
    footer .ft_company .left ul li span {
        font-size: 18px;
        font-weight: bold;
    }
    footer .ft_company .right {
        width: 100%;
    }
    footer .ft_company .right .link {
        width: 60px;
    }
    footer .ft_company .right .link img {
        width: 100%;
        height: auto;
    }
    footer .ft_company .right .text {
        color: #2b1f14;
    }
    footer small {
        background: #fff;
        height: 36px;
        line-height: 36px;
        font-size: 13px;
        text-align: center;
        display: block;
    }
}

/* .hero {
  position: relative;
  color: #fff;
}

.hero img {
  width: 100%;
}

.hero .area {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 45%;
  z-index: 1;
}

.hero .area img {
  width: auto;
}

.hero .area h2 {
  font-size: 40px;
  letter-spacing: 3px;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.hero.front .area {
  top: 40%;
}

.hero.front .area h2 {
  margin-bottom: 10px;
}

.hero.front .area p {
  line-height: 25px;
  letter-spacing: 2px;
  font-size: 16px;
}

.hero.front .area img {
  width: 63vw;
}

@media screen and (max-width: 1000px) {
  .hero .area h2 {
    font-size: 30px;
    line-height: 35px;
  }
  .hero.front .area {
    top: 32%;
    left: 5%;
    width: 90%;
    text-align: left;
  }
  .hero.front .area h2 {
    text-align: left;
    margin-bottom: 25px;
  }
  .hero.front .area p {
    line-height: 36px;
    letter-spacing: 2.5px;
    font-size: 16px;
  }
  .hero.front .area img {
    width: 86vw;
  }
  .hero.lower {
    margin-top: 68px;
  }
  .hero.lower .area {
    top: 40%;
  }
  .hero.lower .area.rows {
    top: 42%;
  }
}

@media screen and (max-width: 1000px) and (max-width: 767px) {
  .hero .area img {
    width: 200px;
  }
  .hero .area h2.pub img {
    width: 80%;
  }
  .hero.front .area h2 {
    margin-bottom: 15px;
  }
  .hero.front .area p {
    line-height: 20px;
    letter-spacing: 2px;
    font-size: 16px;
  }
  .hero.lower .area {
    top: 36%;
  }
  .hero.lower .area.rows {
    top: 38%;
  }
  .hero.lower .area.rows h2 {
    font-size: 20px;
  }
  .hero.lower .area.rows.two_lines {
    top: 33%;
  }
  .hero.lower .area.rows.two_lines h2 {
    font-size: 20px;
    line-height: 25px;
  }
}

@media screen and (max-width: 1000px) and (max-width: 400px) {
  .hero.lower {
    margin-top: 47px;
  }
  .hero.lower .area {
    top: 34%;
  }
  .hero.lower .area.rows {
    top: 34%;
  }
  .hero.lower .area.rows h2 {
    font-size: 17px;
  }
  .hero.lower .area.rows.two_lines {
    top: 29%;
  }
  .hero.lower .area.rows.two_lines h2 {
    font-size: 18px;
  }
} */

.slider_parent {
    background: #b2ddff;
    padding: 15px 0 40px;
    position: relative;
    z-index: 0;
}

.slider_parent:before {
    display: block;
    content: "";
    height: 75.22px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../img/front/slider_illust.png) no-repeat center 100%;
    background-size: 100% auto;
    z-index: 1;
}

.slider_parent .slider {
    background: #fff;
    padding: 11px 0;
}

.slider_parent .slider .slide {
    padding: 0 5px;
}

.slider_parent .slider .slide img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.slider_parent .slider .slide img.pc_img {
    display: inline-block;
}

.slider_parent .slider .slide img.sp_img {
    display: none;
}

.front_about {
    background: url(../img/front/bg_about.png) no-repeat center 16%;
    background-size: 81% auto;
    padding: 39px 0 55px;
}

.front_about .text {
    text-align: center;
    color: #5a8000;
    font-weight: bold;
    line-height: 38px;
    font-size: 20px;
    margin-bottom: 23px;
}

.front_about .btn {
    color: #fff;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 485px;
    background: #3c9aee;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 22px 0 22px 15px;
    position: relative;
    transition: 0.3s;
}

.front_about .btn:hover {
    transition: 0.3s;
    background: rgba(60, 154, 238, 0.9);
}

.front_about .btn:hover span.sun {
    background-image: url(../img/front/sun_hover.png);
}

.front_about .btn:hover span.arrow {
    transition: 0.3s;
    right: 140px;
}

.front_about .btn span {
    position: absolute;
    display: block;
    content: "";
}

.front_about .btn span.sun {
    background: url(../img/front/sun.png) no-repeat center center;
    background-size: 28px 28px;
    width: 28px;
    height: 28px;
    top: 16px;
    left: 149px;
}

.front_about .btn span.arrow {
    background: url(../img/header/arrow_w.png) no-repeat center center;
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    top: 26px;
    right: 147px;
    transition: 0.3s;
}

.front_line img {
    width: 100%;
    height: auto;
}

.front_news {
    padding: 98px 0 54px;
}

.front_news .title {
    text-align: center;
    margin-bottom: 30px;
}

.front_news .news_list {
    margin: 0 auto;
    padding: 10px 20px 20px 20px;
    background: #fff;
    border-radius: 10px;
}

.front_news .news_list .item {
    border-bottom: 1px #918476 dashed;
}

.front_news .news_list .item a .date,
.front_news .news_list .item a .text {
    width: 110px;
    color: #7cbe35;
    font-size: 18px;
    line-height: 28px;
    padding: 11px 0 8px;
    margin-right: 10px;
}

.front_news .news_list .item a .text {
    width: auto;
    color: #2b1f14;
    margin-right: 0;
}

.front_news .news_list .item a:hover .date,
.front_news .news_list .item a:hover .text {
    text-decoration: underline;
}

.front_features .head {
    background: #58b32c;
    padding: 51px 0 25px;
}

.front_features .head .title {
    text-align: center;
    margin-bottom: 6px;
}

.front_features .head .text {
    text-align: center;
    font-size: 20px;
    color: #e9f3db;
    line-height: 30px;
}

.front_features .bottom {
    background: #7bbd33;
    padding: 40px 0 4px;
}

.front_features .bottom .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.front_features .bottom .content {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-sizing: border-box;
    margin-bottom: 25px;
    /* width: 32%; */
}

.front_features .bottom .grid .content {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
}

.front_features .bottom .content:last-child .link:hover,
.front_features .bottom .content:last-child .img:hover {
    background: none;
    opacity: 1;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; */
}

.front_features .bottom .content .img {
    height: 170px;
    overflow: hidden;
    position: relative;
    margin-bottom: 13px;
    display: block;
    border-radius: 20px 20px 0 0;
    z-index: 0;
}

.front_features .bottom .content .img:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../img/front/line_short.png) no-repeat center bottom;
    background-size: 100% auto;
    width: 99.7%;
    height: 10px;
    display: block;
    content: "";
    z-index: 1;
}

.front_features .bottom .content .img img {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
}

.front_features .bottom .content .img:hover {
    opacity: 0.8;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; */
    transition: 0.3s;
}

.front_features .bottom .content .title {
    padding-left: 12px;
    color: #7cbe35;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
    position: relative;
}

.front_features .bottom .content .title:before {
    position: absolute;
    left: 0px;
    top: 6px;
    border-left: 4px #ffb666 dotted;
    border-width: thick;
    height: 40px;
    width: 4px;
    display: inline-block;
    content: "";
}

.front_features .bottom .content .text {
    color: #2b1f14;
    font-size: 16px;
    line-height: 23px;
    /* height: 150px; */
}

.front_features .bottom .content .link {
    color: #3c9aee;
    float: right;
    font-size: 16px;
    font-weight: bold;
    padding: 7px 15px;
    transition: 0.3s;
}

.front_features .bottom .content .link img {
    margin-left: 5px;
    vertical-align: middle;
    margin-top: -4px;
}

.front_features .bottom .content .link:hover {
    background: #eff6e5;
    border-radius: 50px;
    transition: 0.3s;
}

.front_works {
    padding: 58px 0 0;
}

.front_works .content {
    text-align: center;
    position: relative;
}

.front_works .content .img {
    width: 100%;
    height: auto;
}

.front_works .content .title {
    margin-bottom: 23px;
}

.front_works .content .btn {
    position: absolute;
    right: -28%;
    bottom: 98px;
    color: #fff;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 285px;
    background: #fff;
    color: #3c9aee;
    font-size: 17px;
    font-weight: bold;
    padding: 18px 0 18px 15px;
    position: relative;
    transition: 0.3s;
    display: inline-block;
}

.front_works .content .btn:hover {
    transition: 0.3s;
    background: #ffe9e8;
}

.front_works .content .btn:hover span.hand {
    transform: rotate(-20deg);
    transition: 0.3s;
}

.front_works .content .btn:hover span.arrow {
    transition: 0.3s;
    right: 23px;
}

.front_works .content .btn span {
    position: absolute;
    display: block;
    content: "";
}

.front_works .content .btn span.hand {
    background: url(../img/front/hand.png) no-repeat center center;
    background-size: 24px 29px;
    width: 24px;
    height: 29px;
    top: 14px;
    left: 34px;
}

.front_works .content .btn span.arrow {
    background: url(../img/front/arrow_bl.png) no-repeat center center;
    background-size: 13px 12px;
    width: 13px;
    height: 12px;
    top: 26px;
    right: 29px;
    transition: 0.3s;
}

.front_day {
    padding: 40px 0;
    background: #fff;
}

.front_day .title {
    text-align: center;
    margin-bottom: 45px;
}

.front_day .content.head {
    margin-bottom: 40px;
}

.front_day .content.head .left {
    width: 58%;
}

.front_day .content.head .right {
    width: 40%;
}

.front_day .content.head .right img {
    width: 100%;
    height: auto;
}

.front_day .content.bottom .left {
    width: 42%;
}

.front_day .content.bottom .left .title {
    font-size: 28px;
    text-align: center;
}

.front_day .content.bottom .right {
    width: 56%;
}

.front_day .content.bottom .right .text {
    font-size: 16px;
    line-height: 24px;
}

.front_day .content .title {
    text-align: left;
    font-size: 32px;
    line-height: 45px;
    color: #e27500;
    margin-bottom: 20px;
    font-weight: normal;
}

.front_day .content .text {
    color: #2b1f14;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}

.front_day .btn {
    color: #fff;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 485px;
    background: #3c9aee;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 22px 0 22px 15px;
    position: relative;
    transition: 0.3s;
}

.front_day .btn:hover {
    transition: 0.3s;
    background: rgba(60, 154, 238, 0.9);
}

.front_day .btn:hover span.sun {
    background-image: url(../img/front/sun_hover.png);
}

.front_day .btn:hover span.hatena {
    transform: rotate(-20deg);
    transition: 0.3s;
}

.front_day .btn:hover span.arrow {
    transition: 0.3s;
    right: 140px;
}

.front_day .btn span {
    position: absolute;
    display: block;
    content: "";
}

.front_day .btn span.sun {
    background: url(../img/front/sun.png) no-repeat center center;
    background-size: 28px 28px;
    width: 28px;
    height: 28px;
    top: 20px;
    left: 149px;
}

.front_day .btn span.hatena {
    background: url(../img/front/hatena.png) no-repeat center center;
    background-size: 28px 28px;
    width: 28px;
    height: 28px;
    top: 20px;
    left: 149px;
    transition: 0.3s;
}

.front_day .btn span.arrow {
    background: url(../img/header/arrow_w.png) no-repeat center center;
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    top: 26px;
    right: 147px;
    transition: 0.3s;
    margin-top: 1px;
}

@media screen and (max-width: 767px) {
    .slider_parent:before {
        background-image: url(../img/front/slider_illust_sp.png);
    }
    .slider_parent .slider .slide img.pc_img {
        display: none;
    }
    .slider_parent .slider .slide img.sp_img {
        display: inline-block;
    }
    .front_about {
        background: url(../img/front/bg_about_sp.png) no-repeat center top;
        background-size: 100% auto;
        padding: 20px 20px 30px;
    }
    .front_about .text {
        text-align: left;
        margin-top: 100px;
        line-height: 35px;
        font-size: 18px;
        margin-bottom: 30px;
    }
    .front_about .btn {
        width: 280px;
    }
    .front_about .btn:hover span.arrow {
        right: 40px;
    }
    .front_about .btn span.sun {
        left: 45px;
    }
    .front_about .btn span.arrow {
        right: 45px;
    }
    .front_news {
        padding: 40px 20px;
    }
    .front_news .title {
        margin-bottom: 20px;
    }
    .front_news .news_list {
        padding: 0px 20px 20px 20px;
    }
    .front_news .news_list .item a .date,
    .front_news .news_list .item a .text {
        width: 90px;
        font-size: 15px;
        line-height: 25px;
        padding: 20px 0;
    }
    .front_news .news_list .item a .text {
        width: auto;
    }
    .front_features .head {
        padding: 40px 20px 20px;
    }
    .front_features .head .title img {
        width: 95%;
        margin: 0 auto 10px;
    }
    .front_features .head .text {
        text-align: left;
        font-size: 16px;
        line-height: 28px;
    }
    .front_features .bottom {
        padding: 20px;
    }
    .front_features .bottom .grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .front_features .bottom .content {
        width: 100%;
        margin-bottom: 20px;
        display: block;
    }
    .front_features .bottom .content .img {
        height: 170px;
        margin-bottom: 20px;
    }
    .front_features .bottom .content .title {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 10px;
    }
    .front_features .bottom .content .title:before {
        left: 2px;
        top: 4px;
        border-left: 4px #ffb666 dotted;
        height: 40px;
        width: 4px;
    }
    .front_features .bottom .content .text {
        font-size: 16px;
        line-height: 24px;
        height: auto;
        margin-bottom: 10px;
    }
    .front_features .bottom .content .link {
        font-size: 16px;
    }
    .front_works {
        padding: 40px 20px 0;
    }
    .front_works .content .title {
        margin-bottom: 20px;
    }
    .front_works .content .title img {
        width: 227px;
        height: auto;
    }
    .front_works .content .btn {
        right: 0;
        bottom: 50vw;
        width: 250px;
        font-size: 16px;
        padding: 18px 0 18px 15px;
    }
    .front_day {
        padding: 40px 20px;
    }
    .front_day .title {
        margin-bottom: 20px;
    }
    .front_day .title img {
        width: 95%;
        height: auto;
    }
    .front_day .content {
        display: block;
    }
    .front_day .content.head {
        margin-bottom: 40px;
    }
    .front_day .content.head .left {
        width: 100%;
    }
    .front_day .content.head .left img {
        width: 100%;
        height: auto;
    }
    .front_day .content.bottom .left {
        width: 100%;
    }
    .front_day .content.bottom .left .title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
        text-align: left;
    }
    .front_day .content.bottom .right {
        width: 100%;
    }
    .front_day .content .title {
        line-height: 35px;
        font-size: 24px;
        margin-bottom: 10px;
    }
    .front_day .content .text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    .front_day .btn {
        width: 280px;
        padding: 22px 0 22px 15px;
    }
    .front_day .btn:hover span.arrow {
        right: 40px;
    }
    .front_day .btn span.sun {
        left: 45px;
    }
    .front_day .btn span.hatena {
        left: 45px;
    }
    .front_day .btn span.arrow {
        right: 45px;
    }
}

.aboutContent .textParent {
    width: 60%;
}

.aboutContent .imgParent {
    width: 38%;
}

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

.aboutContent .title {
    text-align: center;
    margin-bottom: 23px;
}

.aboutContent .subTitle {
    font-size: 30px;
    line-height: 43px;
    font-weight: normal;
    margin-bottom: 10px;
}

.aboutContent .text {
    font-size: 18px;
    line-height: 28px;
    color: #2b1f14;
}

.aboutContent .text span {
    font-size: 15px;
    line-height: 22px;
}

.aboutContent .content1 {
    padding: 19px 0 74px;
}

.aboutContent .content1 .textParent {
    background: url(../img/about/line_blue_long.png) no-repeat left 8px;
    background-size: auto;
    padding-left: 20px;
}

.aboutContent .content1 .textParent .subTitle {
    color: #ff8600;
}

.aboutContent .content2 {
    background: #7bbd33;
    border-radius: 20px;
    padding: 40px 52px 29px;
}

.aboutContent .content2 .aboutList {
    border-collapse: separate;
}

.aboutContent .content2 .aboutList .listParent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px;
}

.aboutContent .content2 .aboutList .listTitle {
    background: #fff;
    border-radius: 20px 0 0 20px;
    vertical-align: middle;
    width: 92px;
    height: 88px;
    padding-top: 20px;
    box-sizing: border-box;
}

.aboutContent .content2 .aboutList .listLine {
    background: #fff;
    vertical-align: middle;
    height: 88px;
    padding-top: 20px;
    box-sizing: border-box;
}

.aboutContent .content2 .aboutList .listText {
    background: #fff;
    border-radius: 0 20px 20px 0;
    padding: 0 20px;
    vertical-align: middle;
    color: #775739;
    font-size: 25px;
    height: 88px;
    width: calc(100% - 98px);
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
}

.aboutContent .content3 {
    padding: 102px 0 49px;
}

.aboutContent .content3 .box1 {
    margin-bottom: 30px;
}
.aboutContent .content3 .box1 .subTitle {
    color: #ff6867;
}

.aboutContent .content3 .box2 .subTitle {
    color: #3c9aee;
}

.aboutContent .content3 .box2 .imgParent img {
    width: 460px;
}

.aboutContent .content4 {
    background: #b2ddff;
    padding: 28px 0 10px;
}

.aboutContent .content4 .title {
    margin-bottom: 15px;
}

.aboutContent .content4 .text {
    width: 600px;
    margin: 0 auto 35px;
}

.aboutContent .content4 .box1,
.aboutContent .content4 .box3 {
    margin-bottom: 42px;
}

.aboutContent .content4 .box1 .img,
.aboutContent .content4 .box3 .img {
    display: block;
    width: 48.5%;
}

.aboutContent .content4 .box2 {
    margin-bottom: 55px;
}

.aboutContent .content4 .aboutInfo {
    border-collapse: separate;
}

.aboutContent .content4 .aboutInfo .infoTitle {
    background: #fff;
    border-radius: 20px 0 0 20px;
    vertical-align: middle;
    width: 311px;
    font-size: 30px;
    line-height: 43px;
    color: #ff8600;
    text-align: center;
    font-weight: normal;
}

.aboutContent .content4 .aboutInfo .infoLine {
    background: #fff;
    vertical-align: middle;
}

.aboutContent .content4 .aboutInfo .infoText {
    background: #fff;
    border-radius: 0 20px 20px 0;
    padding: 30px 20px 27px;
    vertical-align: middle;
    color: #2b1f14;
    font-size: 18px;
    line-height: 28px;
}

@media screen and (max-width: 767px) {
    .aboutContent .flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .aboutContent .textParent {
        width: 100%;
    }
    .aboutContent .imgParent {
        width: 100%;
    }
    .aboutContent .imgParent img {
        width: 100%;
        height: auto;
    }
    .aboutContent .title img {
        max-width: 100%;
        height: auto;
    }
    .aboutContent .subTitle {
        font-size: 18px;
        line-height: 30px;
    }
    .aboutContent .text {
        font-size: 16px;
        line-height: 26px;
    }
    .aboutContent .text span {
        font-size: 14px;
        line-height: 21px;
    }
    .aboutContent .content1 {
        padding: 20px 20px 50px;
    }
    .aboutContent .content1 .textParent {
        background-size: auto 100%;
    }
    .aboutContent .content2 {
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 20px 15px 10px;
        box-sizing: border-box;
    }
    .aboutContent .content2 .aboutList {
        width: 100%;
    }
    .aboutContent .content2 .aboutList .listParent {
        display: block;
        margin-bottom: 15px;
    }
    .aboutContent .content2 .aboutList .listTitle {
        display: block;
        border-radius: 20px 20px 0 0;
        width: 100%;
        padding: 20px 0 5px;
        height: auto;
    }
    .aboutContent .content2 .aboutList .listLine {
        text-align: center;
        display: block;
        width: 100%;
        height: auto;
        padding: 0;
    }
    .aboutContent .content2 .aboutList .listText {
        display: block;
        height: auto;
        width: 100%;
        border-radius: 0 0 20px 20px;
        padding: 20px 15px;
        font-size: 18px;
        text-align: center;
    }
    .aboutContent .content3 {
        padding: 40px 20px;
    }
    .aboutContent .content3 .box2 .imgParent img {
        width: 100%;
        height: auto;
    }
    .aboutContent .content4 {
        padding: 40px 20px 10px;
    }
    .aboutContent .content4 .text {
        width: 100%;
        margin: 0 auto 20px;
    }
    .aboutContent .content4 .box1,
    .aboutContent .content4 .box3 {
        margin-bottom: 10px;
    }
    .aboutContent .content4 .box1 .img,
    .aboutContent .content4 .box3 .img {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    .aboutContent .content4 .box2 {
        margin-bottom: 30px;
    }
    .aboutContent .content4 .aboutInfo {
        display: block;
        width: 100%;
    }
    .aboutContent .content4 .aboutInfo .infoTitle {
        display: block;
        padding: 10px 0 0;
        border-radius: 20px 20px 0 0;
        width: 100%;
        font-size: 18px;
        line-height: 29px;
    }
    .aboutContent .content4 .aboutInfo .infoLine {
        display: block;
        padding: 0 20px;
        text-align: center;
    }
    .aboutContent .content4 .aboutInfo .infoLine img {
        width: 100%;
        height: auto;
    }
    .aboutContent .content4 .aboutInfo .infoText {
        display: block;
        padding: 5px 20px 10px;
        border-radius: 0 0 20px 20px;
        font-size: 16px;
        line-height: 26px;
    }
}

.activateContent .title {
    text-align: center;
    margin-bottom: 23px;
}

.activateContent .subTitle {
    font-size: 18px;
    line-height: 26px;
    font-weight: normal;
    margin-bottom: 10px;
    background: no-repeat left center;
    background-size: auto;
    padding-left: 10px;
}

.activateContent .text {
    font-size: 16px;
    line-height: 24px;
    color: #2b1f14;
}

.activateContent .link {
    color: #3c9aee;
    font-size: 16px;
    font-weight: bold;
    float: right;
    margin-top: 20px;
}

.activateContent .link img {
    margin-left: 10px;
}

.activateContent .link:hover {
    transition: 0.3s;
    text-decoration: underline;
}

.activateContent .content1 {
    padding: 36px 0 0;
}

.activateContent .content2 .box {
    width: 32%;
}

.activateContent .content2 .box:nth-child(1) {
    margin-top: 52px;
}

.activateContent .content2 .box:nth-child(1) .subTitle {
    color: #ff8600;
    background-image: url(../img/activate/line_blue.png);
}

.activateContent .content2 .box:nth-child(2) .subTitle {
    color: #7cbe35;
    background-image: url(../img/activate/line_pink.png);
}

.activateContent .content2 .box:nth-child(3) {
    margin-top: 52px;
}

.activateContent .content2 .box:nth-child(3) .subTitle {
    color: #ff6867;
    background-image: url(../img/activate/line_green.png);
}

.activateContent .content2 .box .img {
    margin-bottom: 5px;
    width: 100%;
}

.activateContent .content3 {
    padding: 120px 0 49px;
}

.activateContent .content3 img {
    width: 30%;
    height: auto;
}

.activateContent .content3 .textParent {
    width: 67%;
    background: url(../img/activate/line_orange_long.png) no-repeat left center;
    background-size: auto 100%;
    padding-left: 28px;
    box-sizing: border-box;
}

.activateContent .content3 .textParent .subTitle {
    color: #3c9aee;
    font-size: 30px;
    padding-left: 0;
    margin-bottom: 20px;
}

.activateContent .content3 .textParent .text {
    font-size: 18px;
    line-height: 28px;
}

.activateContent .content4 {
    padding: 28px 0 88px;
}

.activateContent .content4 .title {
    margin-bottom: 15px;
}

.activateContent .content4 .flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.activateContent .content4 .img {
    width: 32%;
    height: auto;
    margin-bottom: 20px;
}

.activateContent .content4 .img img {
    width: 100%;
    height: auto;
}

.activateContent .content4 .img .caption {
    font-size: 18px;
    color: #2b1f14;
    margin-top: 10px;
    text-align: center;
}

.activateContent .content4 .btn {
    color: #fff;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 485px;
    background: #3c9aee;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 22px 0 22px 15px;
    position: relative;
    transition: 0.3s;
    margin: 24px auto 0;
    letter-spacing: 0.15em;
}

.activateContent .content4 .btn:hover {
    transition: 0.3s;
    background: rgba(60, 154, 238, 0.9);
}

.activateContent .content4 .btn:hover .arrow {
    transition: 0.3s;
    right: 110px;
}

.activateContent .content4 .btn span {
    position: absolute;
    display: block;
    content: "";
}

.activateContent .content4 .btn span.arrow {
    background: url(../img/header/arrow_w.png) no-repeat center center;
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    top: 24px;
    right: 118px;
    transition: 0.3s;
}

.activateContent .content5 {
    padding-bottom: 60px;
}

.activateContent .content5 img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 767px) {
    .activateContent {
        padding: 0 20px;
    }
    .activateContent .title img {
        max-width: 100%;
        height: auto;
    }
    .activateContent .flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .activateContent .content1 {
        padding: 40px 0 0;
    }
    .activateContent .content2 .box {
        width: 100%;
        margin-bottom: 20px;
    }
    .activateContent .content2 .box:nth-child(1),
    .activateContent .content2 .box:nth-child(3) {
        margin-top: 0;
    }
    .activateContent .content2 .box img {
        width: 100%;
        height: auto;
    }
    .activateContent .content2 .box .link img {
        width: auto;
    }
    .activateContent .content3 {
        padding: 0 0 40px;
    }
    .activateContent .content3 .img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .activateContent .content3 .textParent {
        width: 100%;
        padding-left: 20px;
    }
    .activateContent .content3 .textParent .subTitle {
        color: #3c9aee;
        font-size: 18px;
        line-height: 26px;
    }
    .activateContent .content3 .textParent .text {
        font-size: 16px;
        line-height: 26px;
    }
    .activateContent .content4 {
        padding: 0 0 40px;
    }
    .activateContent .content4 .img {
        width: 100%;
        height: auto;
    }
    .activateContent .content4 .btn {
        width: 100%;
        padding: 22px 0;
    }
    .activateContent .content4 .btn:hover .arrow {
        right: 20px;
    }
    .activateContent .content4 .btn span.arrow {
        right: 20px;
    }
    .activateContent .content5 {
        padding-bottom: 40px;
    }
}

.teacherContent {
    padding: 50px 0;
}

.teacherContent .title {
    text-align: center;
    margin-bottom: 35px;
}

.teacherContent .selectParent {
    text-align: right;
    margin-bottom: 40px;
}

.teacherContent .selectParent .submit {
    margin-left: 10px;
}

.teacherContent .selectParent .submit input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #775739;
    color: #fff;
    border: 1px #775739 solid;
    border-radius: 10px;
    height: 50px;
    line-height: 50px;
    width: 100px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.teacherContent .selectParent .submit input:hover {
    background: #fff;
    color: #775739;
    transition: 0.3s;
}

.teacherContent .selectParent .shikakuSelect {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px #775739 solid;
    border-radius: 10px;
    height: 50px;
    text-align: center;
    padding: 0 40px 0 20px;
    color: #775739;
    background: #fff url(../img/teacher/arrow.png) no-repeat 95% center;
    font-size: 16px;
}

.teacherContent .flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.teacherContent .box {
    width: 31%;
}

.teacherContent .box:nth-child(2),
.teacherContent .box:nth-child(3n + 2) {
    margin: 0 3.5%;
}

.teacherContent .box .fukidashi {
    background: #ffc3c2;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #2b1f14;
    letter-spacing: -0.06em;
    padding: 20px 20px 0;
    height: 88px;
    width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
}

.teacherContent .box .fukidashi span {
    position: absolute;
    color: #ffc3c2;
    bottom: -16px;
    left: 38px;
    z-index: 2;
}

.teacherContent .box .img {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 17px;
    display: block;
    z-index: 1;
}

.teacherContent .box .img span {
    display: block;
    content: "";
    width: 101%;
    height: 270px;
    background: url(../img/teacher/circle_pink.png) no-repeat center center;
    background-size: 100% auto;
    z-index: 1;
    position: relative;
    left: -2px;
    overflow: hidden;
}

.teacherContent .box .img img {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    z-index: 0;
}

.teacherContent .box .textParent {
    height: 400px;
}

.teacherContent .box .yakushoku {
    color: #ff6867;
    font-size: 18px;
    line-height: 28px;
}

.teacherContent .box .name {
    color: #ff6867;
    font-size: 30px;
    line-height: 43px;
    background: url(../img/teacher/line_green.png) no-repeat left center;
    background-size: auto;
    padding-left: 10px;
    margin-bottom: 5px;
}

.teacherContent .box .shikaku {
    font-size: 18px;
    line-height: 28px;
    color: #775739;
    margin-bottom: 15px;
}

.teacherContent .box .message {
    font-size: 16px;
    line-height: 24px;
    color: #2b1f14;
}

.teacherContent .box:nth-child(2n) .fukidashi {
    background: #b1d7f8;
}

.teacherContent .box:nth-child(2n) .fukidashi span {
    color: #b1d7f8;
}

.teacherContent .box:nth-child(2n) .img span {
    background-image: url(../img/teacher/circle_blue.png);
}

.teacherContent .box:nth-child(2n) .yakushoku {
    color: #3c9aee;
}

.teacherContent .box:nth-child(2n) .name {
    color: #3c9aee;
    background-image: url(../img/teacher/line_pink.png);
}

.teacherContent .box:nth-child(3n) .fukidashi {
    background: #ffcf99;
}

.teacherContent .box:nth-child(3n) .fukidashi span {
    color: #ffcf99;
}

.teacherContent .box:nth-child(3n) .img span {
    background-image: url(../img/teacher/circle_orange.png);
}

.teacherContent .box:nth-child(3n) .yakushoku {
    color: #ff8600;
}

.teacherContent .box:nth-child(3n) .name {
    color: #ff8600;
    background-image: url(../img/teacher/line_blue.png);
}

.teacherContent .box:nth-child(4n) .fukidashi {
    background: #d1e6b3;
}

.teacherContent .box:nth-child(4n) .fukidashi span {
    color: #d1e6b3;
}

.teacherContent .box:nth-child(4n) .img span {
    background-image: url(../img/teacher/circle_green.png);
}

.teacherContent .box:nth-child(4n) .yakushoku {
    color: #7cbe35;
}

.teacherContent .box:nth-child(4n) .name {
    color: #7cbe35;
    background-image: url(../img/teacher/line_orange.png);
}

@media screen and (max-width: 767px) {
    .teacherContent {
        padding: 40px 20px;
    }
    .teacherContent .formInner {
        -ms-flex-pack: justify;
        justify-content: space-between;
        display: block;
    }
    .teacherContent .selectParent {
        margin-bottom: 20px;
    }
    .teacherContent .selectParent .submit {
        margin-left: 0;
        text-align: right;
    }
    .teacherContent .selectParent .submit input {
        width: 100px;
        font-size: 15px;
        height: 40px;
        line-height: 37px;
    }
    .teacherContent .selectParent .shikakuSelect {
        width: 100%;
        height: 40px;
        font-size: 15px;
        margin-bottom: 10px;
    }
    .teacherContent .box {
        width: 100%;
        margin-bottom: 30px;
    }
    .teacherContent .box:nth-child(2),
    .teacherContent .box:nth-child(3n + 2) {
        margin: 0 0 30px;
    }
    .teacherContent .box .fukidashi {
        margin-bottom: 20px;
    }
    .teacherContent .box .img span {
        height: 285px;
        top: -2px;
    }
    .teacherContent .box .img img {
        height: 98%;
    }
    .teacherContent .box .textParent {
        height: auto;
    }
    .teacherContent .box .yakushoku {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 5px;
    }
    .teacherContent .box .name {
        font-size: 22px;
        line-height: 32px;
    }
    .teacherContent .box .shikaku {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 10px;
    }
}

.terajobContent .title {
    text-align: center;
    margin-bottom: 30px;
}

.terajobContent .title.lead_text img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.terajobContent .subTitle {
    font-size: 30px;
    line-height: 43px;
    font-weight: normal;
    margin-bottom: 15px;
    background: no-repeat left center;
    background-size: auto;
    padding-left: 10px;
}

.terajobContent .text {
    font-size: 18px;
    line-height: 28px;
}

.terajobContent .content1 {
    padding: 36px 0 67px;
}

.terajobContent .content2 .box {
    border-radius: 20px;
    color: #fff;
    box-sizing: border-box;
    padding: 27px;
    margin-bottom: 20px;
}

.terajobContent .content2 .box.first {
    background: #3c9aee;
}

.terajobContent .content2 .box.first .subTitle {
    background-image: url(../img/terajob/line_orange.png);
}

.terajobContent .content2 .box.second {
    background: #ff6867;
}

.terajobContent .content2 .box.second .subTitle {
    background-image: url(../img/terajob/line_blue.png);
}

.terajobContent .content2 .box.third {
    background: #7cbe35;
}

.terajobContent .content2 .box.third .subTitle {
    background-image: url(../img/terajob/line_orange.png);
}

.terajobContent .content2 .box .img {
    width: 34.7%;
    height: auto;
}

.terajobContent .content2 .box .textParent {
    width: 62.7%;
}

.terajobContent .content3 {
    padding: 72px 0 0;
}

.terajobContent .content3 .movieParent {
    text-align: center;
}
.terajobContent .content3 iframe {
    width: 700px;
    height: 350px;
    margin: 0 auto;
}

.terajobContent .content4 {
    padding: 9px 0 88px;
}

.terajobContent .content4 .title {
    margin-bottom: 0;
}

.terajobContent .content4 .img {
    width: 48%;
    height: auto;
}

.terajobContent .content4 .box .textParent {
    width: 50%;
    background: no-repeat left center;
    background-size: auto 100%;
    box-sizing: border-box;
    padding-left: 20px;
}

.terajobContent .content4 .box.first {
    margin: -42px 0 71px;
}

.terajobContent .content4 .box.first .textParent {
    background-image: url(../img/terajob/line_green_long.png);
}

.terajobContent .content4 .box.first .subTitle {
    color: #ff8600;
    font-size: 28px;
}

.terajobContent .content4 .box.second .textParent {
    background-image: url(../img/terajob/line_orange_long.png);
}

.terajobContent .content4 .box.second .subTitle {
    color: #3c9aee;
    font-size: 28px;
}

@media screen and (max-width: 767px) {
    .terajobContent {
        padding: 0 20px;
    }
    .terajobContent .title {
        margin-bottom: 20px;
    }
    .terajobContent .title img {
        max-width: 100%;
        height: auto;
    }
    .terajobContent .subTitle {
        font-size: 18px;
        line-height: 28px;
        background: no-repeat left top;
        margin-bottom: 10px;
    }
    .terajobContent .text {
        font-size: 16px;
        line-height: 26px;
    }
    .terajobContent .flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .terajobContent .content1 {
        padding: 40px 0;
    }
    .terajobContent .content2 .box {
        padding: 20px;
    }
    .terajobContent .content2 .box .img {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
    .terajobContent .content2 .box .textParent {
        width: 100%;
    }
    .terajobContent .content3 {
        padding: 40px 0 0;
    }
    .terajobContent .content3 iframe {
        width: 100%;
        height: 300px;
    }
    .terajobContent .content4 {
        padding: 0 0 40px;
    }
    .terajobContent .content4 .title {
        margin-bottom: 30px;
    }
    .terajobContent .content4 .img {
        width: 100%;
        height: auto;
    }
    .terajobContent .content4 .subTitle {
        padding-left: 0;
    }
    .terajobContent .content4 .box .textParent {
        width: 100%;
    }
    .terajobContent .content4 .box.first {
        margin: -42px 0 40px;
    }
}

.roomContent {
    padding: 62px 0;
}

.roomContent .box {
    margin-bottom: 100px;
}

.roomContent .line {
    margin: 0 auto 19px;
    display: block;
}

.roomContent .title {
    text-align: center;
    font-size: 42px;
    color: #775739;
    font-weight: normal;
    margin-bottom: 23px;
}

.roomContent .title span {
    display: block;
}

.roomContent .roomInfoParent {
    width: 50%;
}

.roomContent .imgParent {
    width: 49%;
}

.roomContent .imgParent img {
    border: 7px #fff solid;
    border-radius: 10px;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.roomContent .subTitle {
    font-size: 18px;
    font-weight: normal;
    line-height: 28px;
    vertical-align: text-top;
    color: #775739;
    width: 85px;
    text-align: left;
}

.roomContent .text {
    font-size: 18px;
    line-height: 28px;
    color: #2b1f14;
    padding-bottom: 10px;
}

.roomContent .text span {
    color: #60574f;
    margin-top: 10px;
    display: inline-block;
}

.roomContent .link {
    float: right;
    margin-top: 20px;
    color: #3c9aee;
}

.roomContent .link img {
    border: none;
    width: auto;
}

.roomContent .link:hover {
    text-decoration: underline;
}

.roomContent .btn {
    color: #fff;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 83%;
    background: #3c9aee;
    color: #fff;
    font-size: 16px;
    padding: 22px 0;
    position: relative;
    transition: 0.3s;
    margin: 7px auto 0;
    letter-spacing: 0.15em;
}

.roomContent .btn:hover {
    transition: 0.3s;
    background: rgba(60, 154, 238, 0.9);
}

.roomContent .btn:hover .arrow {
    transition: 0.3s;
    right: 122px;
}

.roomContent .btn span {
    position: absolute;
    display: block;
    content: "";
}

.roomContent .btn span.arrow {
    background: url(../img/header/arrow_w.png) no-repeat center center;
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    top: 24px;
    right: 130px;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .roomContent {
        padding: 30px 20px;
    }
    .roomContent .box {
        margin-bottom: 50px;
    }
    .roomContent .line {
        width: 100%;
    }
    .roomContent .title {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .roomContent .flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .roomContent .roomInfoParent {
        width: 100%;
    }
    .roomContent .imgParent {
        width: 100%;
    }
    .roomContent .imgParent img {
        width: 100%;
        height: auto;
    }
    .roomContent .subTitle {
        font-size: 16px;
        width: 85px;
    }
    .roomContent .text {
        font-size: 16px;
        line-height: 26px;
    }
    .roomContent .link {
        float: none;
        text-align: right;
        display: block;
        margin: 10px 0 20px;
    }
    .roomContent .link img {
        width: auto;
    }
    .roomContent .btn {
        width: 100%;
        padding: 15px 0;
    }
    .roomContent .btn:hover .arrow {
        right: 10%;
    }
    .roomContent .btn span.arrow {
        top: 18px;
        right: 12%;
    }
}

.roomSingleContent {
    padding: 43px 0;
}

.roomSingleContent .chair {
    text-align: center;
    display: block;
    margin: 0 auto 18px;
}

.roomSingleContent .title {
    text-align: center;
    font-size: 42px;
    color: #775739;
    font-weight: normal;
    margin-bottom: 60px;
}

.roomSingleContent .title span {
    display: block;
}

.roomSingleContent .subTitle {
    font-size: 42px;
    font-weight: normal;
    vertical-align: text-top;
    color: #775739;
    background: no-repeat left center;
    padding-left: 20px;
    margin-bottom: 37px;
}

.roomSingleContent .textTitle {
    font-size: 30px;
    font-weight: normal;
    color: #3c9aee;
}

.roomSingleContent .text {
    font-size: 18px;
    line-height: 28px;
    color: #2b1f14;
    padding-bottom: 10px;
}

.roomSingleContent .text span {
    color: #60574f;
    margin-top: 10px;
    display: inline-block;
}

.roomSingleContent .btn {
    color: #fff;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 485px;
    background: #3c9aee;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 18px 0 18px 15px;
    position: relative;
    transition: 0.3s;
}

.roomSingleContent .btn:hover {
    transition: 0.3s;
    background: rgba(60, 154, 238, 0.9);
}

.roomSingleContent .btn:hover span.arrow {
    transition: 0.3s;
    right: 140px;
}

.roomSingleContent .btn span {
    position: absolute;
    display: block;
    content: "";
}

.roomSingleContent .btn span.glasses {
    background: url(../img/roomSingle/glasses.png) no-repeat center center;
    background-size: 28px auto;
    width: 28px;
    height: 28px;
    top: 16px;
    left: 149px;
}

.roomSingleContent .btn span.arrow {
    background: url(../img/header/arrow_w.png) no-repeat center center;
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    top: 26px;
    right: 147px;
    transition: 0.3s;
}

.roomSingleContent .content1 {
    padding-bottom: 95px;
}

.roomSingleContent .content1 .roomSingleSlider {
    margin-bottom: 1%;
}

.roomSingleContent .content1 .roomSingleSliderNav {
    width: 100%;
}

.roomSingleContent .content1 .roomSingleSliderNav .slide:nth-child(1) {
    padding-right: 1%;
}

.roomSingleContent .content1 .roomSingleSliderNav .slide:nth-child(3) {
    padding-left: 1%;
}

.roomSingleContent .content1 .roomSingleSlider img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.roomSingleContent .content1 .roomSingleSliderNav img {
    width: 100%;
    height: auto;
    transition: 0.3s;
    border-radius: 5px;
    cursor: pointer;
}

.roomSingleContent .content1 .roomSingleSliderNav img:hover {
    opacity: 0.8;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; */
    transition: 0.3s;
}

.roomSingleContent .content1 .sliderParent {
    width: 52%;
}

.roomSingleContent .content1 .textParent {
    width: 45%;
}

.roomSingleContent .content2 {
    padding-bottom: 106px;
}

.roomSingleContent .content2 .subTitle {
    background-image: url(../img/roomSingle/line_orange.png);
}

.roomSingleContent .content2 .roomDocuments {
    margin-top: 20px;
}

.roomSingleContent .content2 .roomDocuments a {
    color: #2b1f14;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 18px;
    line-height: 28px;
}
.roomSingleContent .content2 .roomDocuments a:hover {
    text-decoration: underline;
}

.roomSingleContent .content2 .roomDocuments a img {
    margin-right: 5px;
    vertical-align: middle;
}

.roomSingleContent .content2 .box {
    width: 32%;
    margin-bottom: 20px;
}

.roomSingleContent .content2 .roomList + .roomList {
    margin-top: 37px;
}

/* .roomSingleContent .content2 .box:nth-child(1) .qualification1, .roomSingleContent .content2 .box:nth-child(1) .name {
  color: #FF6867;
}

.roomSingleContent .content2 .box:nth-child(1) .name {
  background-image: url(../img/roomSingle/line_short_green.png);
}

.roomSingleContent .content2 .box:nth-child(2) .qualification1, .roomSingleContent .content2 .box:nth-child(2) .name {
  color: #3C9AEE;
}

.roomSingleContent .content2 .box:nth-child(2) .name {
  background-image: url(../img/roomSingle/line_short_pink.png);
}

.roomSingleContent .content2 .box:nth-child(2) .img span {
  background-image: url(../img/teacher/circle_blue.png);
}

.roomSingleContent .content2 .box:nth-child(3) .qualification1, .roomSingleContent .content2 .box:nth-child(3) .name {
  color: #FF8600;
}

.roomSingleContent .content2 .box:nth-child(3) .name {
  background-image: url(../img/roomSingle/line_short_blue.png);
} */

/* .roomSingleContent .content2 .box:nth-child(3) .img span {
  background-image: url(../img/teacher/circle_orange.png);
}

.roomSingleContent .content2 .img {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 17px;
  display: block;
  z-index: 1;
}

.roomSingleContent .content2 .img span {
  display: block;
  content: "";
  width: 101%;
  height: 270px;
  background: url(../img/teacher/circle_pink.png) no-repeat center center;
  background-size: 100% auto;
  z-index: 1;
  position: relative;
  left: -2px;
  overflow: hidden;
}

.roomSingleContent .content2 .img img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  z-index: 0;
}

.roomSingleContent .content2 .qualification1,
.roomSingleContent .content2 .qualification2 {
  font-size: 18px;
  line-height: 28px;
}

.roomSingleContent .content2 .qualification2 {
  color: #775739;
}

.roomSingleContent .content2 .name {
  font-size: 30px;
  line-height: 43px;
  background: no-repeat left center;
  padding-left: 10px;
} */

.roomSingleContent .content3 {
    padding-bottom: 103px;
}

.roomSingleContent .content3 .subTitle {
    background-image: url(../img/roomSingle/line_green.png);
}

.roomSingleContent .content3 .box {
    margin-bottom: 65px;
}

.roomSingleContent .content3 .imgParent {
    border: 7px #fff solid;
    border-radius: 30px;
    width: 34.5%;
    overflow: hidden;
}

.roomSingleContent .content3 .imgParent img {
    width: 100%;
    height: auto;
}

.roomSingleContent .content3 .textParent {
    width: 62%;
}

.roomSingleContent .content3 .btn {
    margin-top: -39px;
}

.roomSingleContent .content3 .btn .arrow {
    top: 24px;
    right: 116px;
}

.roomSingleContent .content3 .btn:hover .arrow {
    right: 106px;
}

.roomSingleContent .content4 .subTitle {
    background-image: url(../img/roomSingle/line_pink.png);
}

.roomSingleContent .content4 .roomInfoParent {
    width: 50%;
}

.roomSingleContent .content4 .imgParent {
    width: 49%;
}

.roomSingleContent .content4 .imgParent img {
    border: 7px #fff solid;
    border-radius: 10px;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.roomSingleContent .content4 .link {
    display: block;
    margin-top: 20px;
    text-align: right;
    color: #3c9aee;
}

.roomSingleContent .content4 .link img {
    border: none;
    width: auto;
}

.roomSingleContent .content4 .link:hover {
    text-decoration: underline;
}

.roomSingleContent .content4 .roomInfo .subTitle {
    font-size: 18px;
    font-weight: normal;
    vertical-align: text-top;
    color: #775739;
    width: 85px;
    text-align: left;
    padding-left: 0;
    background: none;
}

.roomSingleContent .content4 .roomInfo .text {
    font-size: 18px;
    line-height: 28px;
    color: #2b1f14;
    padding-bottom: 10px;
}

.roomSingleContent .content4 .roomInfo .text span {
    color: #60574f;
    margin-top: 10px;
    display: inline-block;
}

.roomSingleContent .content4 .roomInfo .link {
    text-align: left;
}

@media screen and (max-width: 767px) {
    .roomSingleContent {
        padding: 40px 20px;
    }
    .roomSingleContent .title {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .roomSingleContent .subTitle {
        font-size: 22px;
        line-height: 30px;
        padding-left: 10px;
        margin-bottom: 20px;
    }
    .roomSingleContent .flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .roomSingleContent .textTitle {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .roomSingleContent .text {
        font-size: 16px;
        line-height: 26px;
    }
    .roomSingleContent .btn {
        width: 100%;
        padding: 15px 0;
    }
    .roomSingleContent .btn:hover span.arrow {
        right: 8%;
    }
    .roomSingleContent .btn span.glasses {
        top: 10px;
        left: 15%;
    }
    .roomSingleContent .btn span.arrow {
        top: 18px;
        right: 10%;
    }
    .roomSingleContent .content1 {
        padding-bottom: 40px;
    }
    .roomSingleContent .content1 .sliderParent {
        width: 100%;
        margin-bottom: 15px;
    }
    .roomSingleContent .content1 .textParent {
        width: 100%;
    }
    .roomSingleContent .content2 {
        padding-bottom: 40px;
    }
    .roomSingleContent .content2 .box {
        width: 100%;
    }
    .roomSingleContent .content2 .qualification1,
    .roomSingleContent .content2 .qualification2 {
        font-size: 16px;
        line-height: 26px;
    }
    .roomSingleContent .content2 .name {
        font-size: 22px;
        line-height: 30px;
    }
    .roomSingleContent .content3 {
        padding-bottom: 40px;
    }
    .roomSingleContent .content3 .box {
        margin-bottom: 30px;
    }
    .roomSingleContent .content3 .imgParent {
        width: 100%;
        margin-bottom: 10px;
    }
    .roomSingleContent .content3 .imgParent img {
        width: 100%;
        height: auto;
    }
    .roomSingleContent .content3 .textParent {
        width: 100%;
    }
    .roomSingleContent .content3 .btn {
        margin-top: 0;
    }
    .roomSingleContent .content3 .btn .arrow {
        top: 21px;
        right: 5%;
    }
    .roomSingleContent .content4 .roomInfoParent {
        width: 100%;
    }
    .roomSingleContent .content4 .imgParent {
        width: 100%;
    }
    .roomSingleContent .content4 .imgParent img {
        width: 100%;
        height: auto;
    }
    .roomSingleContent .content4 .imgParent .link img {
        width: auto;
    }
    .roomSingleContent .content4 .roomInfo .subTitle {
        font-size: 16px;
        width: 85px;
    }
    .roomSingleContent .content4 .roomInfo .text {
        font-size: 16px;
        line-height: 26px;
    }
    .roomSingleContent .content4 .roomInfo .link {
        float: none;
        text-align: right;
        display: block;
        margin: 10px 0 20px;
    }
}

.stepContent {
    padding: 37px 0;
}

.stepContent .title {
    text-align: center;
}

.stepContent .subTitle {
    font-size: 42px;
    line-height: 60px;
    font-weight: normal;
    margin: 5px 0 20px;
    color: #775739;
}

.stepContent .text {
    font-size: 30px;
    line-height: 43px;
    color: #775739;
    text-align: left;
}

.stepContent .text span.text_note {
    font-size: 18px;
    margin-top: 10px;
    line-height: 28px;
    display: inline-block;
}

.stepContent .content1 {
    margin-bottom: 25px;
}

.stepContent .content1 .title img {
    width: 100%;
    max-width: 809px;
}

.stepContent .content2 {
    padding-bottom: 114px;
}

.stepContent .content2 .box {
    box-sizing: border-box;
    border: 17px #3c9aee solid;
    border-radius: 30px;
    background: #fff;
    text-align: center;
    padding: 25px;
}

.stepContent .content2 .imgParent {
    width: 40%;
}

.stepContent .content2 .imgParent img {
    width: 100%;
    height: auto;
}

.stepContent .content2 .textParent {
    width: 58%;
}

.stepContent .content2 .arrow {
    text-align: center;
    padding: 10px 0;
}

.stepContent .content3 {
    margin-bottom: 57px;
}

.stepContent .content3 .title {
    margin-bottom: 16px;
    font-size: 42px;
    line-height: 60px;
    font-weight: normal;
    color: #775739;
}

.stepContent .content3 .box {
    background: #7cbe35;
    border-radius: 30px;
    text-align: center;
    padding: 20px 20px 27px;
}

.stepContent .content3 .boxTitle {
    color: #fff;
    font-size: 30px;
    line-height: 43px;
    margin-bottom: 20px;
}

.stepContent .content3 .d-text {
    color: #775739;
    text-align: center;
    margin-bottom: 37px;
    font-size: 25px;
    line-height: 1.6;
}

.stepContent .content3 .pliceParent {
    background: #fff;
    padding: 20px 20px 14px 20px;
    max-width: 783px;
    margin: 0 auto;
    border-radius: 30px;
}

.stepContent .content3 .pliceParent img {
    max-width: 100%;
}

.stepContent .content3 .text {
    margin-top: 10px;
    font-size: 18px;
    line-height: 28px;
    color: #2b1f14;
    text-align: center;
}

.stepContent .content4 {
    text-align: center;
    background: #fff;
    border-radius: 30px;
    padding: 27px 20px;
    margin-bottom: 55px;
}

.stepContent .content4 .boxTitle {
    font-size: 30px;
    line-height: 43px;
    color: #ff6867;
    font-weight: normal;
    margin-bottom: 6px;
}

.stepContent .content4 .line {
    margin-bottom: 30px;
}

.stepContent .content4 .text {
    margin-top: 9px;
    font-size: 18px;
    line-height: 28px;
    color: #2b1f14;
    text-align: center;
}

.stepContent .content4 .step_img {
    max-width: 823px;
    width: 100%;
}

.stepContent .content5 {
    margin-bottom: 63px;
}

.stepContent .content5 .boxTitle {
    background: #e9f3db;
    border-radius: 30px 30px 0 0;
    font-size: 30px;
    color: #7cbe35;
    font-weight: normal;
    text-align: center;
    padding: 20px 0;
}

.stepContent .content5 .box {
    background: #fff;
    padding: 20px 30px 10px;
    border-radius: 0 0 30px 30px;
}

.stepContent .content5 .priceTable {
    width: 100%;
    margin-bottom: 20px;
    background-color: #fff;
}

.stepContent .content5 .priceTable th,
.stepContent .content5 .priceTable td {
    border: 2px #d5d2d0 solid;
    font-weight: normal;
    font-size: 18px;
    vertical-align: middle;
    color: #2b1f14;
}

.stepContent .content5 .priceTable .priceTitle {
    background: #958f89;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}

.stepContent .content5 .priceTable .priceSubTitle {
    background: #dfdddc;
    text-align: left;
    padding-left: 20px;
}

.stepContent .content5 .priceTable .priceSubText {
    background: #eeedec;
    width: 368px;
    padding-left: 20px;
}

.stepContent .content5 .priceTable .pricetext {
    text-align: right;
    width: 343px;
    padding: 12px;
}
.stepContent .content5 .note-text {
    font-size: 25px;
    text-align: center;
    color: #775739;
    margin-bottom: 20px;
}
.stepContent .content5 .remarks {
    margin-bottom: 49px;
}

.stepContent .content5 .remarks .text {
    font-size: 16px;
    line-height: 24px;
    color: #2b1f14;
}
.stepContent .content5 .case {
    margin-top: 80px;
}
.stepContent .content5 .case h3 {
    font-size: 32px;
    margin-bottom: 8px;
    color: #775739;
}
.stepContent .content5 .case .note-title,
.stepContent .content5 .case .result,
.stepContent .content5 .case .review span {
    color: #775739;
    font-size: 18px;
    line-height: 1.6;
}
.stepContent .content5 .case ul {
    padding-left: 1rem;
}
.stepContent .content5 .case ul li {
    color: #775739;
    list-style: disc;
    font-size: 18px;
    line-height: 1.6;
}
.stepContent .content5 .case .result span {
    color: #ff6867;
    font-weight: bold;
}
.stepContent .content5 .case .review {
    display: flex;
    align-items: center;
    max-width: 723px;
    margin: 32px auto 60px 3rem;
}
.stepContent .content5 .case .review p {
    margin-left: 1rem;
    font-size: 18px;
}
.stepContent .content5 .case .review p span {
    color: #775739;
    font-weight: bold;
}
.stepContent .content5 .case .cta-text {
    color: #775739;
    font-size: 25px;
    text-align: center;
    margin-bottom: 120px;
}
.stepContent .content6 .title {
    margin-bottom: 40px;
}

.stepContent .content6 .box {
    width: 723px;
    margin: 0 auto;
}

.stepContent .content6 .box .flex:nth-child(2n) {
    margin-bottom: 50px;
}

.stepContent .content6 .qaParent {
    margin-right: 15px;
    padding-top: 10px;
}

.stepContent .content6 .textParent {
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 10px;
    width: calc(100% - 60px);
}

.stepContent .content6 .text {
    font-size: 18px;
    line-height: 28px;
    color: #3c9aee;
}

.stepContent .content6 .text.question {
    color: #ff6867;
}

.stepContent .content6 .subText {
    font-size: 18px;
    line-height: 28px;
    color: #2b1f14;
    margin: 15px 0 0;
}

@media screen and (max-width: 767px) {
    .stepContent {
        padding: 20px;
    }
    .stepContent .title img {
        width: 100%;
        height: auto;
    }
    .stepContent .flex {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .stepContent .subTitle {
        font-size: 25px;
        line-height: 35px;
    }
    .stepContent .text {
        font-size: 20px;
        line-height: 30px;
    }
    .stepContent .content2 {
        padding-bottom: 40px;
    }
    .stepContent .content2 .box {
        border: 13px #3c9aee solid;
        padding: 15px;
    }
    .stepContent .content2 .box img {
        max-width: 100%;
        height: auto;
    }
    .stepContent .content2 .imgParent {
        width: 100%;
    }
    .stepContent .content2 .imgParent img {
        width: 100%;
        height: auto;
    }
    .stepContent .content2 .textParent {
        width: 100%;
    }
    .stepContent .content3 {
        margin-bottom: 40px;
    }
    .stepContent .content3 .title {
        font-size: 25px;
        margin-bottom: 8px;
    }
    .stepContent .content3 .title img {
        width: 60%;
        height: auto;
    }
    .stepContent .content3 .box {
        padding: 20px 15px;
    }
    .stepContent .content3 .boxTitle {
        font-size: 20px;
        line-height: 30px;
    }
    .stepContent .content3 .pliceParent {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .stepContent .content3 .pliceParent img {
        width: 100%;
        height: auto;
    }
    .stepContent .content3 .text {
        font-size: 16px;
        line-height: 26px;
    }
    .stepContent .content3 .d-text {
        font-size: 18px;
    }
    .stepContent .content4 {
        padding: 30px 10px 20px;
        margin-bottom: 40px;
    }
    .stepContent .content4 img {
        width: 100%;
        height: auto;
    }
    .stepContent .content4 .boxTitle {
        font-size: 20px;
        line-height: 30px;
    }
    .stepContent .content4 .text {
        font-size: 16px;
        line-height: 26px;
    }
    .stepContent .content5 {
        margin-bottom: 40px;
    }
    .stepContent .content5 .boxTitle {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .stepContent .content5 .box {
        background: none;
        padding: 0;
    }
    .stepContent .content5 .priceTable th,
    .stepContent .content5 .priceTable td {
        font-size: 15px;
        line-height: 25px;
    }
    .stepContent .content5 .priceTable .priceTitle {
        padding: 15px 0;
    }
    .stepContent .content5 .priceTable .priceSubTitle {
        padding-left: 10px;
    }
    .stepContent .content5 .priceTable .priceSubText {
        width: 50%;
        padding: 12px 0;
        padding-left: 10px;
    }
    .stepContent .content5 .priceTable .pricetext {
        background: #fff;
        width: 30%;
        padding: 12px 0;
    }
    .stepContent .content5 .case .note-title,
    .stepContent .content5 .case .result,
    .stepContent .content5 .case .review span {
        font-size: 15px;
    }
    .stepContent .content5 .case ul li {
        font-size: 15px;
    }
    .stepContent .content5 .note-text {
        font-size: 18px;
    }
    .stepContent .content5 .case {
        margin-top: 40px;
    }
    .stepContent .content5 .case h3 {
        font-size: 25px;
    }
    .stepContent .content5 .case .review {
        margin: 24px 0 32px;
        align-items: flex-start;
    }
    .stepContent .content5 .case .review p {
        font-size: 15px;
    }
    .stepContent .content5 .case .cta-text {
        font-size: 16px;
        margin-bottom: 80px;
    }
    .stepContent .content6 .title {
        margin-bottom: 30px;
    }
    .stepContent .content6 .title img {
        width: 60%;
        height: auto;
    }
    .stepContent .content6 .box {
        width: 100%;
    }
    .stepContent .content6 .box .flex:nth-child(2n) {
        margin-bottom: 30px;
    }
    .stepContent .content6 .qaParent {
        box-sizing: border-box;
        width: 18%;
        margin-right: 10px;
        padding-top: 10px;
    }
    .stepContent .content6 .textParent {
        box-sizing: border-box;
        width: 78%;
        padding: 15px;
    }
    .stepContent .content6 .text {
        font-size: 16px;
        line-height: 26px;
    }
    .stepContent .content6 .subText {
        font-size: 16px;
        line-height: 26px;
    }
}

.contactContent {
    padding: 59px 0;
    color: #2b1f14;
}

.contactContent input {
    box-sizing: border-box;
    font-size: 16px;
}

.contactContent input[type="text"],
.contactContent input[type="email"],
.contactContent input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border: 1px #aaa5a1 solid;
    border-radius: 5px;
    height: 46px;
    width: 200px;
    padding-left: 1em;
}

.contactContent input[type="email"] {
    width: 400px;
}

.contactContent input[type="radio"] {
    vertical-align: text-bottom;
    margin-bottom: 2px;
}

.contactContent select {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border: 1px #aaa5a1 solid;
    border-radius: 5px;
    background: #fff;
    background-size: 46px 46px;
    height: 46px;
    width: 360px;
    padding-left: 1em;
    font-size: 16px;
}

.contactContent textarea {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border: 1px #aaa5a1 solid;
    border-radius: 5px;
    background: #fff;
    height: 150px;
    width: 400px;
    padding-left: 1em;
    resize: none;
    font-size: 16px;
    line-height: 25px;
}

.contactContent .subText {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 28px;
}

.contactContent .subText span {
    color: #ff7876;
}

.contactContent .box {
    background: #fff;
    border-radius: 30px;
    padding: 30px 34px;
}

.contactContent .box > .flex {
    border-bottom: 1px #aaa5a1 solid;
}

.contactContent .box .error {
    background: #f93835;
    color: #fff;
    border-radius: 3px;
    padding: 6px 10px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    margin-top: 5px;
}

.contactContent .box .mail_conf .error {
    display: block;
    width: 120px;
}

.contactContent .box .privacyCheck .error {
    margin: 5px auto;
    display: block;
    width: 110px;
}

.contactContent .head {
    width: 319px;
    padding: 20px 0;
}

.contactContent .body {
    padding: 20px 0;
}

.contactContent .title {
    font-size: 18px;
    line-height: 28px;
    width: 199px;
}

.contactContent .requiredParent .required {
    background: #ff7876;
    color: #fff;
    border-radius: 3px;
    padding: 6px 0;
    width: 45px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
}

.contactContent .text {
    margin-right: 10px;
}

.contactContent .sei {
    margin-right: 2em;
    margin-left: 1em;
}

.contactContent .seikana {
    margin-right: 1em;
}

.contactContent .tel input {
    width: 150px;
}

.contactContent .hyphen {
    margin: 0 10px;
}

.contactContent .jigyosho,
.contactContent .gakunen {
    position: relative;
}

.contactContent .jigyosho:after,
.contactContent .gakunen:after {
    background: #aaa5a1 url(../img/contact/arrow.png) no-repeat center center;
    background-size: 12.57px 12px;
    width: 46px;
    height: 46px;
    border-radius: 0 5px 5px 0;
    display: block;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
}

.contactContent .mail_conf span {
    display: block;
    margin: 10px 0 5px;
}

.contactContent .privacyAndSubmit {
    background: #ffe1e0;
    border-radius: 10px;
    text-align: center;
    padding: 30px 0;
    margin-top: 20px;
}

.contactContent .privacyTitle {
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}

.contactContent .privacyTitle span {
    background: #ff7876;
    color: #fff;
    border-radius: 3px;
    width: 45px;
    margin-left: 10px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
}

.contactContent .privacyText {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
}

.contactContent .privacyCheck {
    margin-bottom: 15px;
}

.contactContent .submit,
.contactContent .back {
    position: relative;
}

.contactContent .submit .btn,
.contactContent .back .btn {
    color: #fff;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 300px;
    background: #3c9aee;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 0;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}

.contactContent .submit .btn.backBtn,
.contactContent .back .btn.backBtn {
    background: #aaa;
    margin-right: 10px;
    margin-left: 0;
}

.contactContent .submit:hover,
.contactContent .back:hover {
    transition: 0.3s;
    opacity: 0.8;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; */
}

.contactContent .submit:hover span.arrow,
.contactContent .back:hover span.arrow {
    transition: 0.3s;
    right: 22%;
}

.contactContent .submit span,
.contactContent .back span {
    position: absolute;
    display: block;
    content: "";
}

.contactContent .submit span.arrow,
.contactContent .back span.arrow {
    background: url(../img/header/arrow_w.png) no-repeat center center;
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    top: 17px;
    right: 23%;
    transition: 0.3s;
}

.confirmPage .contactContent {
    padding: 40px 0;
}

.confirmPage .contactContent .subText {
    display: none;
}

.confirmPage .contactContent .jigyosho:after,
.confirmPage .contactContent .gakunen:after {
    display: none !important;
}

.thanksPage {
    padding: 50px 0 80px;
    text-align: center;
}

.thanksPage .thanksTitle {
    font-size: 42px;
    margin-bottom: 40px;
    color: #775739;
}

.thanksPage .btn {
    color: #fff;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 400px;
    background: #3c9aee;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 20px 0;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
}

.thanksPage .btn:hover {
    transition: 0.3s;
    opacity: 0.8;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; */
}

.thanksPage .btn:hover .arrow {
    transition: 0.3s;
    right: 28%;
}

.thanksPage .btn .arrow {
    position: absolute;
    display: block;
    content: "";
    background: url(../img/header/arrow_w.png) no-repeat center center;
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    top: 22px;
    right: 30%;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .contactContent {
        padding: 20px 10px 40px;
    }
    .contactContent input[type="text"],
    .contactContent input[type="email"],
    .contactContent input[type="submit"] {
        width: 100%;
    }
    .contactContent input[type="email"] {
        width: 100%;
    }
    .contactContent select {
        background-size: 46px 46px;
        width: 100%;
    }
    .contactContent textarea {
        width: 100%;
    }
    .contactContent .subText {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    .contactContent .box {
        padding: 20px 10px;
    }
    .contactContent .box > .flex {
        display: block;
    }
    .contactContent .box .error {
        padding: 5px;
        font-size: 13px;
    }
    .contactContent .head {
        width: 100%;
        padding-bottom: 0;
    }
    .contactContent .body {
        padding: 20px 0;
    }
    .contactContent .title {
        font-size: 16px;
        line-height: 26px;
        width: 85%;
    }
    .contactContent .tel input {
        width: 80px;
    }
    .contactContent .privacyAndSubmit {
        padding: 30px 10px;
    }
    .contactContent .privacyTitle {
        font-size: 16px;
    }
    .contactContent .privacyText {
        font-size: 16px;
    }
    .contactContent .privacyCheck {
        margin: 30px 0;
    }
    .contactContent .submit .btn,
    .contactContent .back .btn {
        width: 140px;
    }
    .contactContent .submit span,
    .contactContent .back span {
        display: none;
    }
    .confirmPage .contactContent {
        padding: 0 10px 40px;
    }
    .thanksPage {
        padding: 0 10px 50px;
    }
    .thanksPage .thanksTitle {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 35px;
    }
    .thanksPage .btn {
        width: 100%;
        padding: 15px 0;
    }
    .thanksPage .btn .arrow {
        display: none;
    }
}

.newsList {
    padding: 80px 20px 120px;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}

.newsList.--room {
    display: flex;
}

.newsList li {
    background: #fff;
    border-radius: 20px;
    padding: 40px 60px;
}

.newsList li a {
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}

.newsList li a:hover {
    opacity: 0.8;
}

.newsList_image {
    width: 100%;
    aspect-ratio: 4/3;
}

.newsList_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.newsList_title {
    font-size: 24px;
    line-height: 36px;
    margin-top: 30px;
    text-align: center;
}

.newsList_title.shinjuku {
    color: #ff6867;
}

.newsList_title.yumekikyu {
    color: #7cbe35;
}

.newsList_title.kawasaki {
    color: #ff8600;
}

.newsList_title.abeno {
    color: #3c9aee;
}

.newsList_title.news {
    color: #775739;
    margin-top: 0px;
}

/* 1カラム表示のスタイル */
.newsList_item.full-width {
    grid-column: 1 / -1 !important; /* グリッド全体にまたがる */
    /*  width: 100% !important;  横幅いっぱいにする */
    text-align: left; /* 必要に応じて調整 */
    margin-bottom: 20px; /* 下に余白を追加 */
}

.br-sp {
    display: none;
}

@media (max-width: 767px) {
    .br-sp {
        display: block;
    }
}

.blogContent {
    padding: 80px 0;
}

.blogContent .title {
    text-align: center;
    font-size: 42px;
    line-height: 38px;
    color: #775739;
    font-weight: normal;
}

@media screen and (max-width: 767px) {
    .newsList {
        padding: 40px 20px 60px;
        grid-template-columns: 1fr;
    }
    .newsList.--room {
        display: block;
    }
    .newsList li {
        padding: 20px 20px;
    }
    .newsList_image img {
        border-radius: 20px;
    }
}

.newsList .flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.newsList.--room .postNews {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.newsList .postNews .postNews_title {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 5px;
    color: #ff6867;
}

.newsList .postNews .text {
    font-size: 16px;
    color: #2b1f14;
}

.newsList .postNews .more {
    font-size: 16px;
    color: #2b1f14;
    text-align: right;
    color: #3c9aee;
    font-weight: bold;
}

.newsList .postNews a {
    transition: 0.3s;
}

.newsList .postNews a:hover {
    opacity: 0.7;
}

.newsList .sideTitle {
    font-size: 18px;
    line-height: 26px;
    color: #775739;
    background: url(../img/news/line_orange.png) no-repeat left center;
    padding-left: 15px;
    margin-bottom: 10px;
}

.newsList .sideList li {
    background: none;
    padding: 0;
}

.newsList .sideList .item a {
    display: block;
    border: 1px #2b1f14 solid;
    border-radius: 10px;
    padding: 24px 0 24px 21px;
    background: url(../img/news/arrow.png) no-repeat 94% center;
    background-size: auto;
    color: #2b1f14;
    transition: 0.3s;
}

.newsList .sideList .item a.current {
    pointer-events: none;
}

.newsList .sideList .item a:hover {
    background: url(../img/news/arrow.png) no-repeat 96% center;
    transition: 0.3s;
}

.newsList .item {
    margin-bottom: 10px;
}

.newsList .item a {
    display: block;
    border: 1px #2b1f14 solid;
    border-radius: 10px;
    padding: 24px 0 24px 21px;
    background: url(../img/news/arrow.png) no-repeat 94% center;
    background-size: auto;
    color: #2b1f14;
    transition: 0.3s;
}

.newsList .item a:hover {
    background: url(../img/news/arrow.png) no-repeat 96% center;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .newsList {
        padding: 30px 20px 40px;
    }
    .newsList > .flex {
        display: block;
    }
    .blogContent .title {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .newsList .postNews {
        width: 100%;
        height: auto;
    }
    .newsList .sideTitle {
        margin-top: 40px;
    }
}

.postDetail {
    padding: 52px 0;
}

.postDetail .time {
    color: #2b1f14;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.postDetail .title {
    color: #775739;
    font-size: 42px;
    line-height: 60px;
    margin-bottom: 3px;
    font-weight: normal;
}

.postDetail .sns_area {
    border-bottom: 1px #9ca0a3 solid;
    padding-bottom: 13px;
    margin-bottom: 39px;
}

.postDetail .sns_area ul {
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.postDetail .sns_area ul li {
    margin-right: 10px;
}

.postDetail .sns_area ul li a:hover {
    opacity: 0.8;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; */
    transition: 0.3s;
}

.postDetail .sns_area.bottom {
    border-bottom: none;
}

.postDetail .img {
    margin-bottom: 20px;
}

.postDetail .img img {
    width: 100%;
    height: auto;
}

.postDetail .main_content {
    margin-bottom: 30px;
}

.postDetail .main_content h2 {
    font-size: 25px;
    line-height: 35px;
    color: #2b1f14;
    margin-bottom: 10px;
}

.postDetail .main_content p {
    font-size: 16px;
    line-height: 25px;
    color: #2b1f14;
}

.postDetail .related_article {
    background: #ffe7cc;
    padding: 28px 20px;
    margin-bottom: 30px;
    border-bottom: none;
    border-radius: 20px;
}

.postDetail .related_article .title {
    font-size: 18px;
    line-height: 28px;
    color: #2b1f14;
    font-weight: bold;
}

.postDetail .related_article ul .flex {
    margin-bottom: 8px;
    background: #fff;
    padding: 20px 20px 12px 20px;
    border-radius: 20px;
}

.postDetail .related_article ul .flex a {
    display: block;
    width: 36.5%;
}

.postDetail .related_article ul .flex a .img_parent {
    overflow: hidden;
    border-radius: 20px;
}

.postDetail .related_article ul .flex a .img_parent .img {
    width: 100%;
    height: 138px;
    position: relative;
    transition: 0.3s;
    margin-bottom: 0;
}

.postDetail .related_article ul .flex a .img_parent .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: 100%;
}

.postDetail .related_article ul .flex a:hover .img {
    transform: scale(1.1, 1.1);
    transition: 0.3s;
}

.postDetail .related_article ul .flex .text {
    width: 60%;
}

.postDetail .related_article ul .flex .text .time {
    display: block;
    color: #2b1f14;
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 0;
}

.postDetail .related_article ul .flex .text a {
    display: block;
    width: 100%;
}

.postDetail .related_article ul .flex .text a .title {
    font-size: 20px;
    line-height: 26px;
    color: #775739;
    text-decoration: none;
}

.postDetail .related_article ul .flex .text a .title:hover {
    text-decoration: underline;
}

.postDetail .pager a {
    color: #2b1f14;
}

.postDetail .pager a:hover {
    text-decoration: underline;
}

.postDetail .pager .toList a {
    display: inline-block;
    background: #d8ebfc;
    padding: 15px;
    border-radius: 10px;
}

.postDetail .pager .toList a:hover {
    text-decoration: none;
    opacity: 0.8;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; */
}

.postDetail .pager .prev img,
.postDetail .pager .toList img {
    margin-right: 5px;
}

.postDetail .pager .next img {
    margin-left: 5px;
}

.postDetail .sideTitle {
    font-size: 18px;
    line-height: 26px;
    color: #775739;
    background: url(../img/news/line_orange.png) no-repeat left center;
    padding-left: 15px;
    margin-bottom: 10px;
}

.postDetail .item {
    margin-bottom: 10px;
}

.postDetail .item a {
    display: block;
    border: 1px #2b1f14 solid;
    border-radius: 10px;
    padding: 24px 0 24px 21px;
    background: url(../img/news/arrow.png) no-repeat 94% center;
    background-size: auto;
    color: #2b1f14;
    transition: 0.3s;
}

.postDetail .item a:hover {
    background: url(../img/news/arrow.png) no-repeat 96% center;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .postDetail {
        padding: 30px 20px 40px;
    }
    .postDetail > .flex {
        display: block;
    }
    .postDetail .time {
        font-size: 16px;
    }
    .postDetail .title {
        font-size: 25px;
        line-height: 35px;
    }
    .postDetail .sns_area {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .postDetail .sns_area ul {
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .postDetail .sns_area ul li {
        margin-right: 0;
        width: 32%;
    }
    .postDetail .sns_area ul li img {
        width: 100%;
        height: auto;
    }
    .postDetail .main_content h2 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 5px;
    }
    .postDetail .main_content p {
        font-size: 16px;
        line-height: 25px;
    }
    .postDetail .related_article {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    .postDetail .related_article ul .flex {
        padding: 15px;
    }
    .postDetail .related_article ul .flex a {
        width: 46%;
    }
    .postDetail .related_article ul .flex a .img_parent {
        border-radius: 10px;
    }
    .postDetail .related_article ul .flex a .img_parent .img {
        height: 100px;
    }
    .postDetail .related_article ul .flex a .img_parent .img img {
        height: 100%;
        width: auto;
    }
    .postDetail .related_article ul .flex .text {
        width: 50%;
    }
    .postDetail .related_article ul .flex .text a .title {
        font-size: 16px;
        line-height: 25px;
    }
    .postDetail .pager {
        margin: -20px 0 20px;
    }
    .postDetail .pager a {
        font-size: 14px;
    }
    .postDetail .pager .toList {
        margin-top: 50px;
    }
    .postDetail .pager .toList a {
        padding: 10px;
        background: none;
    }
}

.qaContent {
    padding: 37px 0;
}

.qaContent .box {
    width: 723px;
    margin: 0 auto;
}

.qaContent .box .flex:nth-child(2n) {
    margin-bottom: 50px;
}

.qaContent .qaParent {
    margin-right: 15px;
    padding-top: 10px;
}

.qaContent .textParent {
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 10px;
    width: calc(100% - 60px);
}

.qaContent .text {
    font-size: 18px;
    line-height: 28px;
    color: #3c9aee;
}

.qaContent .text.question {
    color: #ff6867;
}

.qaContent .subText {
    font-size: 18px;
    line-height: 28px;
    color: #2b1f14;
    margin: 15px 0 0;
}

@media screen and (max-width: 767px) {
    .qaContent {
        padding: 0 20px 40px;
        margin-top: 30px;
    }
    .qaContent .box {
        width: 100%;
    }
    .qaContent .box .flex:nth-child(2n) {
        margin-bottom: 30px;
    }
    .qaContent .qaParent {
        box-sizing: border-box;
        width: 18%;
        margin-right: 10px;
        padding-top: 10px;
    }
    .qaContent .textParent {
        box-sizing: border-box;
        width: 78%;
        padding: 15px;
    }
    .qaContent .text {
        font-size: 16px;
        line-height: 26px;
    }
    .qaContent .subText {
        font-size: 16px;
        line-height: 26px;
    }
}

.companyContent {
    padding: 50px 0 80px;
}

.companyContent .title {
    text-align: center;
    margin-bottom: 42px;
}

.companyContent .campanyInfo {
    width: 730px;
    margin: 0 auto 50px;
}

.companyContent .campanyInfo .box {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 3px #aaa5a1 dotted;
}

.companyContent .campanyInfo .subTitle {
    font-size: 18px;
    background: #3c9aee;
    color: #fff;
    border-radius: 5px;
    padding: 8px 0 8px 10px;
    margin-right: 15px;
    width: 150px;
    text-align: left;
    padding-left: 10px;
}

.companyContent .campanyInfo .text {
    font-size: 18px;
    line-height: 28px;
    color: #2b1f14;
}

.companyContent .rinen {
    max-width: 950px;
    margin: 0 auto 50px;
}

.companyContent .rinen .textParent {
    width: 66%;
}

.companyContent .rinen .imgParent {
    width: calc(313 / 950 * 100%);
}

.companyContent .rinen .imgParent img {
    width: 100%;
    height: auto;
}

.companyContent .rinen .rinenTitle {
    font-family: Signika, sans-serif;
    font-size: 32px;
    line-height: 42px;
    font-weight: normal;
    color: #2b1f14;
    margin-bottom: 10px;
}

.companyContent .rinen .rinenTitle.first {
    margin-bottom: 0;
}

.companyContent .rinen .line {
    margin-bottom: 10px;
}

.companyContent .rinen .text {
    font-size: 18px;
    line-height: 28px;
    color: #2b1f14;
}

.companyContent .moreContent .box {
    width: 32%;
    text-align: center;
}

.companyContent .moreContent .imgParent {
    height: 120px;
    line-height: 169px;
}

.companyContent .moreContent .text {
    font-size: 16px;
    line-height: 24px;
    color: #2b1f14;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .companyContent {
        padding: 20px 20px 40px;
    }
    .companyContent .campanyInfo {
        width: 100%;
        margin: 0 auto 40px;
    }
    .companyContent .campanyInfo .flex {
        display: block;
    }
    .companyContent .campanyInfo .subTitle {
        text-align: center;
        padding: 8px 0;
        margin-right: 0;
        width: 100%;
        padding-left: 0;
    }
    .companyContent .campanyInfo .text {
        padding-top: 10px;
    }
    .companyContent .rinen {
        width: 100%;
        margin: 0 auto 40px;
        display: block;
    }
    .companyContent .rinen .textParent {
        width: 100%;
    }
    .companyContent .rinen .imgParent {
        width: 100%;
    }
    .companyContent .rinen .rinenTitle {
        font-size: 28px;
        line-height: 38px;
    }
    .companyContent .rinen .line {
        width: 100%;
        height: auto;
    }
    .companyContent .moreContent {
        display: block;
    }
    .companyContent .moreContent .box {
        width: 100%;
        text-align: center;
        border: 1px #ccc solid;
        border-radius: 20px;
        padding: 20px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }
    .companyContent .moreContent .imgParent {
        height: 120px;
        line-height: 169px;
    }
    .companyContent .moreContent .text {
        font-size: 16px;
        line-height: 24px;
        color: #2b1f14;
        text-align: left;
    }
}

/* Slider */
.slick-loading .slick-list {
    background: #fff url("../img/common/ajax-loader.gif") center center
        no-repeat;
}

/* Icons */
@font-face {
    font-family: "slick";
    src: url("../fonts/slick.eot");
    src:
        url("../fonts/slick%EF%B9%96.eot#iefix") format("embedded-opentype"),
        url("../fonts/slick.woff") format("woff"),
        url("../fonts/slick.ttf") format("truetype"),
        url("../fonts/slick.svg#slick") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 45px;
    width: 45px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 49%;
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
    z-index: 1;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; */
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)"; */
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: 20px;
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: -25px;
}

.slick-prev:before {
    background: url(../img/front/prev.png) no-repeat center center;
    background-size: 45px 45px;
    height: 45px;
    width: 45px;
    display: block;
    content: "";
}

[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: 20px;
}

[dir="rtl"] .slick-next {
    left: -25px;
    right: auto;
}

.slick-next:before {
    background: url(../img/front/next.png) no-repeat center center;
    background-size: 45px 45px;
    height: 45px;
    width: 45px;
    display: block;
    content: "";
}

[dir="rtl"] .slick-next:before {
    content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; */
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    width: 20px;
    height: 20px;
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: black;
    opacity: 0.25;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)"; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    color: black;
    opacity: 0.75;
    /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; */
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* emoji */
.emoji {
    font-size: 1.2rem;
    margin-right: 5px;
    vertical-align: middle;
}

.h4Kawasaki {
    margin-top: 15px;
    font-size: 18px;
    color: #000000;
}
