/* title ******************************************************************/
.cms .title_wrapper {
    margin: 50px auto 0;
    padding: 50px 0;
    width: 100%;
    background: #93d3b6;
    text-align: center;
}
.cms .title_wrapper.bottom_fit {
    padding: 50px 0 0 0;
}
.cms .title_wrapper.bg_1 {
    background-image: url('../images/title_background_1.png');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
}
.cms .block_title {
    display: flex;
    justify-content: center;
    align-items: center;
    /*flex-direction: column;*/
    margin: auto;
}
.cms .block_title img {
    width: 60%;
    height: auto;
}
.cms .block_title.sp_column {
    flex-direction: column;
}
.cms .block_title.sp_column_reverse {
    flex-direction: column-reverse;
}
.cms .block_title.sp_column img,
.cms .block_title.sp_column_reverse img {
    margin-bottom: 20px;
    width: 80%;
    height: auto;
}
.cms .block_title.sp_column img:last-child,
.cms .block_title.sp_column_reverse img:first-child {
    margin-bottom: 0;
}

/* body ******************************************************************/
.cms {
    background: #69BF98;
}
.cms .body_wrapper {
    margin: 0 auto;
    padding: 80px 0 50px 0;
    width: 100%;
    background-color: #fff;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
    overflow: hidden;
    text-align: center;
}
.cms .block_contents {
    margin: 0 auto;
    width: 90%;
    text-align: center;
}
.cms .block_contents::before,
.cms .block_contents::after {
    content: '';
    display: block;
    clear: both;
}
.cms .block_contents p {
    text-align: left;
}
.cms .block_contents hr {
    height: 1px;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
    clear: both;
}
.cms .block_contents h1,
.cms .block_contents h2,
.cms .block_contents h3,
.cms .block_contents h4,
.cms .block_contents h5 {
    margin: 10px auto;
}
.cms .block_contents h2.ribbon {
    margin: 30px 0;
    padding: 2% 8% 5% 8%;
    font-size: 1.2em;
    line-height: 1.2em;
    font-weight: bold;
    text-align: center;
    background-image: url('../images/sp_h2_ribbon.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top center;
}
.cms .block_contents .more {
    position: relative;
    display: inline-block;
    padding: 5px 0;
    background: #cbc25b;
    border: 2px #000 solid;
    box-sizing: border-box;
    color: #333;
    font-weight: bold;
    text-decoration: none;
}
.cms .block_contents .more:after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-6px);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #000;
}
.cms .block_contents .more:hover {
    text-decoration: underline;
}
.block_contents img,
.information img {
    max-width: 100%;
    height: auto;
}
.cms .block_contents table {
    width: 100% !important;
}
.cms .block_contents iframe {
    max-width: 100%;
    height: 50vw;
/*    height: auto;*/
}
