@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;700&display=swap');

/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    margin: 0px;
    padding: 0px;
    font-size: 1.7rem;
    line-height: 1.6;
    font-weight: 400;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    color: #333;
    -webkit-text-size-adjust: 100%;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

iframe,
img,
object,
svg,
video {
    display: block;
    vertical-align: middle;
    max-width: 100%
}

@media screen and (max-width:599px) {
    body {
        font-size: 1.6rem;
    }
}


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.page-title-area {
    margin-top: 100px;
}

@media screen and (max-width:599px) {
    .page-title-area {
        margin-top: 68px;
    }
}

.contents-area {
    background-color: #FFF;
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 60px;
}

#recruit .contents-area {
    background-color: #FFF;
    overflow: hidden;
    margin-top: 0;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/*@media screen and  (max-width: 599px) {
  .container {
    padding: 0 20px;
}
}
*/

.col2 {
    display: flex;
    justify-content: space-between;

}

.col2 .main {
    width: 75%;
    padding-left: 30px;
}

.col2 .side {
    width: 20%;
    display: flex;
    flex-direction: column;
    border-right: 1px #CCC solid;
}

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

    .col2 .main {
        width: 100%;
        padding-left: 0;
    }

    .col2 .side {
        display: none;
    }

}

section {
    padding: 20px 0 40px;
}

section.full {
    position: relative;
    margin: 0 calc(50% - 50vw);
    padding: 20px calc(50vw - 50%) 40px;
    overflow: hidden;
    background: #E6EAEF;
}

.text-wrap {
    width: 80%;
    margin: 0 auto;
}

@media screen and (max-width:599px) {
    .text-wrap {
        width: 100%;
    }

}


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 400;
}

h2 {
    font-size: 3.4rem;
    line-height: 1.2;
}

h3 {
    font-size: 2.8rem;
    line-height: 1.25;
}

h4 {
    font-size: 2.1rem;
    line-height: 1.3;
}

h5 {
    font-size: 1.8rem;
    line-height: 1.35;
}

h6 {
    font-size: 1.8rem;
    line-height: 1.5;
}

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

    h4 {
        font-size: 1.8rem;
    }
}

p {
    line-height: 1.8;
    margin-top: 0;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a:link {
    color: #0000ee;
    transition-property: opacity;
    -webkit-transition-property: opacity;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

a:hover {
    opacity: .8;
}

p a {
    text-decoration: underline;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button {
    display: inline-block;
    padding: 20px 30px;
    color: #FFF;
    text-align: center;
    letter-spacing: .1rem;
    text-decoration: none;
    white-space: nowrap;
    background-color: #555555;
    border-radius: 10px;
    box-sizing: border-box;
    transition-property: opacity;
    -webkit-transition-property: opacity;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}

.button:hover,
.button:focus {
    opacity: .8;
}

a.button {
    color: #FFF;
}

.button.item-center {
    width: 40%;
}

@media screen and (max-width:599px) {
    .button.item-center {
        width: 80%;
    }
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
    list-style: circle inside;
}

ol {
    list-style: decimal inside;
}

ol,
ul {
    padding-left: 0;
    margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%;
}

li {
    margin-bottom: 1rem;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
    margin-top: 3rem;
    margin-bottom: 3.5rem;
    border-width: 0;
    border-top: 1px solid #E1E1E1;
}


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container:after {
    content: "";
    display: table;
    clear: both;
}

.top-visual-container:after {
    content: "";
    display: table;
    clear: both;
}

/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.container.header {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.logo a {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.logo a span {
    color: #333;
    font-size: 1.4em;
    font-weight: bold;
    margin: 0 0 0 0.5em;
}

.logo a span span {
    font-size: 0.8em;
}

.logo img {
    height: 50px;
    padding: 0;
}

@media screen and (max-width:599px) {
    .logo a {
        margin: 10px 0 0 10px;
    }

    .logo a span {
        font-size: 1.1em;
        letter-spacing: 0;
    }

    .logo img {
        height: 46px;
    }
}

/* Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#footer-area {
    padding: 0;
    color: #FFFFFF;
    background: #444444;
}

#footer-area a {
    color: #FFF;
}

.footer {
    padding: 50px 0 30px;
    display: flex;
    justify-content: space-between;
}

.footer .footer-left {
    width: 35%;
}

.footer .footer-left p {
    margin: 0 0 8px 0;
}

.footer-logo {
    width: 80px;
    height: auto;
    margin: 0 0 15px 0;
}

.footer-title {
    font-size: 2rem;
}

.footer-right {
    width: 65%;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
}

.footer-nav div {
    margin: 0;
    padding: 0;
    width: 30%;
}

.footer-nav div:nth-child(n+4) {
    width: 20%;
}

.footer-nav li {
    list-style-type: none;
    margin: 0.4em 0 0 0;
    padding: 0;
}

.footer-nav li a::before {
    content: "—";
    margin-right: 3px;
}

.footer-nav li a {
    display: block;
    color: #FFF;
    text-decoration: none;
}

.footer-end {
    padding: 20px 0 40px;
    border-top: 1px #FFF solid;
    display: flex;
    justify-content: space-between;
}

.footer-end .footer-left {
    width: 35%;
}

.footer-end .footer-right {
    width: 65%;
}

.footer-copy {
    font-size: 1.4rem;
}

.footer-end ul {
    display: flex;
    justify-content: flex-end;
}

.footer-end li {
    font-size: 1.4rem;
    list-style-type: none;
    margin: 0.5em 1em 0 2em;
    padding: 0;
}

@media screen and (max-width:599px) {
    .footer {
        padding: 30px 0 20px;
    }

    .footer-logo {
        width: 50px;
        height: auto;
        margin: 0 0 10px 0;
    }

    .footer .container {
        flex-direction: column;
    }

    .footer .footer-left {
        width: 100%;
        text-align: center;
    }

    .footer .footer-left p {
        margin: 0;
    }

    .footer .footer-right {
        display: none;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }


    .footer-end {
        padding: 10px 0 20px;
        flex-direction: column-reverse;

    }

    .footer-end .footer-left {
        text-align: center;
        width: 100%;
    }

    .footer-end .footer-right {
        text-align: center;
        width: 100%;
    }

    .footer-end .footer-copy {
        margin: 0;
    }

    .footer-end ul {
        justify-content: space-around;
        margin: 0;
    }

    .footer-end li {
        font-size: 1.4rem;
        margin: 0.5em 0;
        padding: 0;
    }
}


/* Parts Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.bg-gray {
    background: #EFF3F8;
}

.center {
    text-align: center;
}

.item-center {
    display: block;
    margin: 0 auto;
}

.right {
    text-align: right;
}

.txt-bold {
    font-weight: bold;
}

.txt-red {
    color: #D0103A;
}

.txt-blk {
    color: #333;
}

.txt-blue {
    color: #216ad1;
}

.txt-mark {
    background: linear-gradient(transparent 60%, #ffff66 60%);
}

.mt30 {
    margin-top: 30px;
}

.mb30 {
    margin-bottom: 30px;
}

.p-just p {
    text-align: justify;
}

.p-indent p {
    text-indent: 1em;
    margin-bottom: 0;
}

.p-indent p:last-child {
    margin-bottom: 10px;
}

.lead {
    font-size: 2.2rem;
    /*font-weight: bold;*/
    letter-spacing: 0.1em;
    margin: 50px 0 0 0;
}

.dash {
    letter-spacing: -.2em;
    width: 2em;
    margin-right: .5em;
}

.img-center {
    display: block;
    margin: 0 auto;
}

.sp-center {
    text-align: left;
}

.sp {
    display: none;
}

@media screen and (max-width:599px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    .sp-center {
        text-align: center;
    }

    .lead {
        font-size: 2rem;
        margin: 20px 0 0 0;
    }
}

.normal-list {
  list-style: none;
}
.normal-list li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.8;
}
.normal-list li::before {
  content: "・";
}

.map iframe {
    height: 500px;
}

@media screen and (max-width:599px) {
    .map iframe {
        height: 300px;
    }
}

/*　H Style
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1.page-title {
    font-size: 3.6rem;
    font-weight: 400;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    letter-spacing: 0.3rem;
    padding: 30px 0;
}

h1.page-title span {
    font-size: 2rem;
    font-weight: 400;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    letter-spacing: 0.1rem;
    color: #216ad1;
    display: block;
    margin-left: 0.5em;
}


h2.content-title {
    position: relative;
    line-height: 1.4;
    padding: 0.25em 1em;
    display: inline-block;
}

h2.content-title:before,
h2.content-title:after {
    content: '';
    width: 20px;
    height: 30px;
    position: absolute;
    display: inline-block;
}

h2.content-title:before {
    border-left: solid 1px #216ad1;
    border-top: solid 1px #216ad1;
    top: 0;
    left: 0;
}

h2.content-title:after {
    border-right: solid 1px #216ad1;
    border-bottom: solid 1px #216ad1;
    bottom: 0;
    right: 0;
}

h2.title-center:before {
    position: relative;
    line-height: 1.4;
    padding: 0.25em 1em;
    display: inline-block;
}

h3.content-title {
    font-size: 2.4rem;
    letter-spacing: 0.3rem;
    font-weight: 400;
    margin: 30px 0;
    overflow: hidden;
    position: relative;
    padding-bottom: 10px;
}

h3.content-title span {
    padding: 8px;
}

h3.content-title:before {
    content: "";
    border-bottom: 2px solid #216ad1;
    bottom: 0;
    height: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
}

h3.content-title:after {
    border-bottom: 2px solid #ddd;
    bottom: 0;
    content: "";
    position: absolute;
    width: 800px;
    z-index: 1;
}

h4.content-title:before {
    font-family: "Font Awesome 5 Free";
    margin-right: 0.3em;
    content: '\f111';
    font-weight: 900;
    color: #777777;
}

h4.content-title {
    letter-spacing: 0.1rem;
    font-weight: 400;
    margin: 20px 0;
}

h5.content-title {
    letter-spacing: 0.1rem;
    font-weight: 400;
    margin: 10px 0;
    color: #777777;
}

@media screen and (max-width:599px) {
    h1.page-title {
        font-size: 3rem;
        padding: 20px 0;
    }

    h2.content-title {
        font-size: 2.4rem;
    }

    h3.content-title {
        font-size: 2rem;
    }
}

/*　Image
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.main img {
    max-width: 100%;
    height: auto;
    display: block;
}

/*　Table
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.main table td.center {
    text-align: center;
}

.main table.nomal-table {
    border-collapse: collapse;
    border-spacing: 0;
    border: solid 1px #ccc;
    width: 100%;
}

.main table.nomal-table td,
.main table.nomal-table th {
    padding: 3px;
    font-weight: normal;
}

.main table.nomal-table td {
    border: solid 1px #ccc;
}

.main table.nomal-table th {
    background: #00918D;
    border: solid 1px #fff;
    color: #fff;
}

@media screen and (max-width:599px) {
    .main table.nomal-table {
        margin: 0 auto;
        width: 96%;
    }

    .main table.nomal-table td,
    .main table.nomal-table th {
        padding: 5px;
    }
}

/*　Page top
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#pageTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

#pageTop i {
    padding-top: 6px
}

#pageTop a {
    font-size: 20px;
    display: block;
    z-index: 99999;
    padding: 8px 0 0 0px;
    border-radius: 30px;
    width: 50px;
    height: 50px;
    background-color: #BBBBBB;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

#pageTop a:hover {
    text-decoration: none;
    opacity: 0.7;
}

/*　Button
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.btn {
    position: relative;
    color: #FFF;
    background-color: #444;
    padding: 8px;
    border-radius: 30px;
}

.btn::after {
    position: absolute;
    top: 50%;
    right: 20px;
    content: '';
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width:959px) {
    .btn::after {
        content: '';
        width: 0;
        height: 0;
        border-top: none;
        border-right: none;
    }
}

/*　Button-wide
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.btn-wide {
    display: block;
    color: #FFF;
    background-color: #444;
    padding: 15px;
    border-radius: 30px;
    width: 40%;
    margin: 0 auto;
    text-align: center;
    font-size: 1.8rem;
}

.btn-wide:hover {
    color: #FFFFFF;
    background-color: #666;
}
@media screen and (max-width:599px) {
    .btn-wide {
    width:80%!important;
}
}

/*　Page In
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-in {
    opacity: 0;
    transition-duration: 2600ms;
    transition-property: opacity;
}

.page-in-up {
    animation-name: fadeUpAnime;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　Scroll Fade In
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.fade-in {
    opacity: 0;
    transition-duration: 1000ms;
    transition-property: opacity, transform;
}

.fade-in-up {
    transform: translate(0, 50px);
}

.fade-in-down {
    transform: translate(0, -50px);
}

.fade-in-left {
    transform: translate(-50px, 0);
}

.fade-in-right {
    transform: translate(50px, 0);
}

.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}

.scroll-in-up {
    opacity: 1;
    transform: translate(0, 50px);
}

/*　Top Visual Area
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.top-visual-area {
    position: relative;
    height: 100vh;
}

.top-visual-area-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../images/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1000;
}

.top-visual-area-bg2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../images/mark01.png");
    background-repeat: no-repeat;
    background-size: 46%;
    background-position: center right -100px;
    animation-name: item-move1;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 3s;
    z-index: -1000;
}

.top-visual-area-bg3 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../images/mark02.png");
    background-repeat: no-repeat;
    background-size: 46%;
    background-position: center right -120px;
    animation-name: item-move2;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 3s;
    z-index: -1000;
}

@keyframes item-move1 {
    0% {
        transform: translate(0, 0px);
    }

    100% {
        transform: translate(0, 30px);
    }
}

@keyframes item-move2 {
    0% {
        transform: translate(0, 0px);
    }

    100% {
        transform: translate(0, -30px);
    }
}

.top-visual-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.top-visual-container img {
    width: 38%;
    height: auto;
    padding: 28% 0 0;
}

@media screen and (max-width:599px) {
    .top-visual-area {
        max-height: 100vh;
    }


    .top-visual-area-bg {
        background-size: cover;
        background-position: bottom center;
        z-index: -1000;
    }

    .top-visual-area-bg2 {
        background-size: 80%;
        background-position: top 96px right -80px;
    }

    .top-visual-area-bg3 {
        background-size: 80%;
        background-position: top 96px right -80px;
    }

    .top-visual-container img {
        width: 50%;
        height: auto;
        position: absolute;
        margin-top: 55%;
    }
}

/*Scroll Position*/
.scrolldown {
    position: absolute;
    width: 10%;
    height: 12%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #FFF;
    text-align: center;
}

/*Scroll Line*/
.scrolldown span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 8.0rem;
    background: #FFF;
    animation: scroll 2s ease-in-out infinite;
}
@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

@media screen and (max-width:599px) {
    .scrolldown {
    bottom: 8em;
    }
    .scrolldown span::after {
    /*margin-bottom: 3em;*/
    }
}

/*　Toppage
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.contents-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px auto 0;
}

.contents-list-item {
    width: 30%;
    margin-bottom: 40px;
    border: 1px #CCCCCC solid;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
}

h2.contents-list-title {
    font-size: 2.8rem;
    text-align: center;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    margin: 1em 0 0 0;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

h2.contents-list-title span {
    font-size: 60%;
    color: #216ad1;
    font-weight: normal;
    display: block;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    letter-spacing: 0;
}

.contents-list-item p {
    font-size: 1em;
    font-weight: normal;
    margin: 20px 0;
}

.contents-list-item a {
    margin-top: auto;
}

.contents-list-item img {
    width: 60px;
    height: auto;
    margin: 0 auto;
}

.contents-list-item span.btn {
    text-align: center;
    display: block;
    width: 80%;
    margin: 0 auto;
}

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

    .contents-list {
        flex-direction: column;
        margin: 50px auto 0;
    }

    .contents-list-item {
        width: 100%;
        padding: 1em 25px 1.5em;
        position: relative;
        margin-bottom: 50px;
    }

    h2.contents-list-title {
        align-self: center;
        margin: 0.5em 0 0 0;
    }

    h2.contents-list-title span {
        margin: 0;
        text-align: center;
    }

    .contents-list-item p {
        text-align: center;
        margin: 10px 0 20px;
        line-height: 1.5;
    }

    .contents-list-item span {
        width: 90%;
        font-size: 90%;
        font-weight: bold;
        margin-top: -0.5em;
    }

    .contents-list-item img {
        position: absolute;
        width: 60px;
        height: auto;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

h2.top-title {
    font-size: 2.8rem;
    text-align: center;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    margin: 1.5em 0 0 0;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

h2.top-title span {
    font-size: 60%;
    color: #216ad1;
    font-weight: normal;
    display: block;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    letter-spacing: 0;
}

.info-list-area {
    padding: 80px 0;
}

.info-list-container {
    width: 100%;
    max-width: 1080px;
    background-color: #FFFFFF;
    padding: 0 80px 30px;
    margin: 0 auto;
    box-sizing: border-box;
}

.info-list dl {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
}

.info-list dt {
    margin: 0;
    padding: 15px 25px;
    width: 150px;
    border-bottom: dotted 1px #CCC;
    box-sizing: border-box;
}

.info-list dd {
    font-size: 1.5rem;
    margin: 0;
    padding: 15px 25px;
    width: calc(100% - 150px);
    border-bottom: dotted 1px #CCC;
}

.info-list-title {
    font-size: 1.8rem;
    color: #216ad1;
    display: inline-block;
    margin-bottom: 0.3em;
}

.info-list-area span.btn {
    display: block;
    width: 22rem;
    margin: 2em auto 0;
}

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

    .info-list-area {
        padding: 50px 0;
    }

    .info-list-container {
        padding: 0 20px 30px;
        margin: 0 20px;
        width: auto;
    }

    .info-list dl {
        flex-direction: column;
        padding: 0 1em;
    }

    .info-list dt {
        width: 100%;
        border-bottom: none;
        padding: 0.5em 0 0 0;
        margin: 0;
    }

    .info-list dt span {
        font-size: 1.5rem;
        border-radius: 8px;
    }

    .info-list dd {
        width: 100%;
        padding: 0.5em 0 1.5em 0; 
    }
}

.pagebottom-contact-area {
    background-color: #216ad1;
}

.pagebottom-contact {
    padding: 50px 0;
    text-align: center;
    color: #FFF;
}

.pagebottom-contact a {
    width: 300px;
}

.pagebottom-contact-btn {
    position: relative;
    color: #216ad1;
    background-color: #FFF;
    padding: 8px;
    border-radius: 30px;
    width: 240px;
    display: block;
    margin: 0 auto;

}

.pagebottom-contact-btn::after {
    position: absolute;
    top: 50%;
    right: 20px;
    content: '';
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 2px solid #216ad1;
    border-right: 2px solid #216ad1;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width:959px) {
    .pagebottom-contact-btn::after {
        content: '';
        width: 0;
        height: 0;
        border-top: none;
        border-right: none;
    }
}


/*　Sidebar Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.side-nav {
    margin: 0 2em 0 0;
}

.side-nav li {
    color: #222;
    border-bottom: 1px #999 dotted;
    padding: 1em 1em 1em 0;
    text-indent: 1em;

}

.side-nav a {
    color: #222;
}


/*　Tablelike-layout Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.tablelike-layout {
    width: 100%;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px 30px 60px;
}

.tablelike-layout dl {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    background: #FFFFFF;
}

.tablelike-layout dt {
    margin: 0;
    padding: 20px 30px;
    width: 160px;
    /*border-bottom: 3px solid #2c97d1;*/
    border-bottom: 1px solid #CCCCCC;
}

.tablelike-layout dd {
    margin: 0 0 0 1.5em;
    padding: 20px 30px;
    width: calc(100% - 160px);
    border-bottom: 1px solid #CCCCCC;
}

@media screen and (max-width:599px) {
    .tablelike-layout {
        width: 100%;
        padding: 30px 10px;
    }

    .tablelike-layout dl {
        flex-direction: column;

        margin-bottom: 20px;
    }

    .tablelike-layout dt {
        width: 100%;
        padding: 3px 15px;
        background: #555555;
        border-bottom: none;
        color: #ffffff;
        font-size: 90%;
    }

    .tablelike-layout dd {
        width: 100%;
        padding: 10px 15px 10px 0;
        border-bottom: none;
        margin: 0;
    }
}

/*　LR-layout-wrap
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.LR-layout-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0;
    padding-bottom: 30px;
}

.LR-layout-wrap img {
    display: block;
    width: 37%;
    height: auto;
    margin-bottom: 15px;
}

.LR-layout-wrap .box {
    width: 48%;
}

.LR-layout-wrap.rev {
    flex-direction: row-reverse;
}

@media screen and (max-width:599px) {
    .LR-layout-wrap {
        flex-direction: column;
        width: 100%;
    }

    .LR-layout-wrap img {
        width: 60%;
        height: auto;
    }

    .LR-layout-wrap .box {
        width: 100%;
    }

    .LR-layout-wrap,
    .LR-layout-wrap.rev {
        flex-direction: column;
        margin: 0;
    }

}

/*　Breadcrumb
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.breadcrumb {
    background-color: #E8E8E8;
    padding: 0.5em 0;
}

.breadcrumb a {
    color: #222222;
}

.breadcrumb ul {
    overflow-x: auto;
    display: flex;
    font-size: 1.3rem;
    margin: 0;
    padding: 0;
}

.breadcrumb ul li {
    margin: 0;
}

.breadcrumb ul>li:not(:last-child)::after {
    content: "〉";
    padding: 0 2px 0 10px;
}

/*　Page
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.service-list li {
    margin-left: 1.4em;
    text-indent: -1.4em;
}

.service-list li::before {
    content: "●";
    color: #74BCE1;
    margin-right: 0.3em;
}

.topmassage-imgbox {
    float: right;
    margin: 0 20px 40px 40px;
    width: 36%;    
}
.topmassage-imgbox p{
    text-align: center;
    margin: 1em 0 0 0;
    font-size: 90%;
}

.topmassage-imgbox img {
    width: 100%;
    height: auto;
    margin-left: auto;
}

.topmassage-txtbox p {
    line-height: 2;
    margin-bottom: 1.5em;
}

.org-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.org-box-item {
    width: 45%;
    background-color: #E6EDF7;
    padding: 2em;
    margin: 2em auto 0;
    text-align: center;
    font-size: 1.8rem;
}
.org-box-item-empty {
    width: 45%;
    padding: 2em;
    margin: 2em auto 0;
}

.org-box-title {
    font-weight: 700;
    font-size: 2rem;
    border: 1px #999 solid;
    padding: 0.3em;
    background-color: #FFF;
}

@media screen and (max-width:599px) {
    .org-box {
        flex-direction: column;
    }

    .org-box-item {
        width: 90%;
    }
    .org-box-item-empty {
    width: 90%;
    padding: 2em;
    margin: 0 auto;
}
}

.service-img {
    width: 70%;
    height: auto;
}

.rec-title-area {
    background-image: url("../images/rec_bg.png");
    background-repeat: repeat;
    background-size: cover;
    background-position: center center;
    padding: 50px 0 50px;
    margin-bottom: 50px;
}

.rec-lead {
    padding: 80px;
    background: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width:599px) {
    .rec-lead {
        padding: 60px 40px 30px;
    }
}


/*　Tablelike-layout Layout Recruit
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.tablelike-layout-recruit {
    width: 100%;
    margin: 0 auto;
    padding: 30px;
}

.tablelike-layout-recruit dl {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto 2em;
    display: flex;
    justify-content: space-between;
    background: #FFFFFF;
}

.tablelike-layout-recruit dt {
    margin: 0;
    padding: 0 1.5em 0 0;
    width: 240px;
}

.tablelike-layout-recruit dt::before {
    content: "■";
    margin-right: 0.3em;
    color: #cccccc;
}

.tablelike-layout-recruit dd {
    margin: 0;
    padding: 0 0 0 1.5em;
    width: calc(100% - 240px);
    border-left: 1px solid #CCCCCC;

}

.tablelike-layout-recruit dd li {
    margin: 0;
}

@media screen and (max-width:599px) {
    .tablelike-layout-recruit {
        width: 100%;
        padding: 20px 0 0;
    }

    .tablelike-layout-recruit dl {
        flex-direction: column;

        margin-bottom: 20px;
    }

    .tablelike-layout-recruit dt {
        width: 100%;
        padding: 3px 15px;
        background: #D9EEF7;
        border-bottom: none;
        font-size: 90%;
    }

    .tablelike-layout-recruit dt::before {
        color: #ffffff;
    }

    .tablelike-layout-recruit dd {
        width: 100%;
        padding: 10px 15px;
        border-left: none;
    }
}

.rec-intervews-banner {
    border: 1px solid #CCCCCC;
    text-align: center;
    width: 100%;
    height: 200px;
    /*position: relative;*/
    margin: 0 auto;
    background-image: url("../images/me01.png"), url("../images/tn01.png");
    background-repeat: no-repeat, no-repeat;
    background-size: contain, contain;
    background-position: left, right;
    padding: 20px 0;
    display: flex;
    flex-direction: column;

}

.rec-intervews-banner-item1 {
    color: #216ad1;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 0.3em 0;
}

.rec-intervews-banner-item2 {
    color: #ffffff;
    background-color: #216ad1;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 auto 0.3em;
    line-height: 2;
    display: inline-block;
    width: 12em;
}

.rec-intervews-banner-item3 {
    color: #777777;
    background-color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1.2em;
    line-height: 2;
    margin: 0.3em auto 0;
    display: inline-block;
    width: 20em;
}

@media screen and (max-width:599px) {
    .rec-intervews-banner {
        padding-top: 40px;
    }

    .rec-intervews-banner-item1 {
        font-size: 3rem;
    }

    .rec-intervews-banner-item2 {
        font-size: 2rem;
        width: 12em;
    }

    .rec-intervews-banner-item3 {
        font-size: 1.6rem;
    }
}

.interview-header {
    background-image: url("../images/int_bg.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 0 4em 1em;
    margin-bottom: 50px;
}

.interview-title-item1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.interview-title {
    width: 65%;
}

.interview-img {
    width: 30%;
    margin-right: 3em;
}

.interview-title h3 {
    color: #d8e8ef;
    margin-left: 3em;
}

.interview-title h3 span {
    font-size: 10rem;
    font-style: oblique;
}

.interview-lead {
    font-size: 2.4rem;
    font-weight: 700;
    color: #666666;
    margin: 1.5em 0 0.4em 3em;
}

.interview-name {
    font-size: 2rem;
    color: #666666;
    text-align: right;
    margin-right: 2em;
}


.interview-q {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1em 0;
    color: #555555;
}

.interview-a {
    margin: 0 0 2em 0;

}

@media screen and (max-width:599px) {
    .interview-header {
        padding: 0 1em 1em;
    }

    .interview-title-item1 {
        align-items: flex-start;
    }

    .interview-title {
        width: 60%;
        align-self: center;
    }

    .interview-img {
        margin-right: 0;
        width: 40%;
    }

    .interview-title h3 {

        margin-left: 0;
        font-size: 2rem;
    }

    .interview-title h3 span {
        font-size: 3rem;
        font-style: oblique;
    }

    .interview-title-item2 {
        margin-top: 1em;
    }

    .interview-lead {
        font-size: 2rem;
        line-height: 1.4;
        margin: 0;
    }

    .interview-name {
        font-size: 1.6rem;
        margin: 0 1em 0 0;
    }

    .interview-q {
        font-size: 1.8rem;
    }
}


.privacy-contact-info-area {

    border: 1px #216ad1 solid;
    padding: 2em 1em 1em;
    box-sizing: border-box;
}

.privacy-contact-info {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.privacy-contact-info-item1 {
    text-align: center;
    width: 65%;
    border-right: 1px #999999 solid;
    margin-right: 1em;
}

.privacy-contact-info-item1 span.btn {
    display: block;
    width: 60%;
    margin: 0 auto;
}

.privacy-contact-info-item2 {
    width: 30%;
    margin-left: 1em;
}

.privacy-contact-info-area .kome {
    text-align: center;
    margin-top: 1.5em;
}

@media screen and (max-width:599px) {
    .privacy-contact-info {
        flex-direction: column;
    }

    .privacy-contact-info-item1 {
        text-align: center;
        width: 100%;
        border-right: none;
        margin-right: 0;
    }

    .privacy-contact-info-item1 span.btn {
        width: 80%;
    }

    .privacy-contact-info-item2 {
        width: 100%;
        text-align: center;
        margin-top: 2em;
        margin-left: 0;
    }

    .privacy-contact-info-area .kome {
        margin: 0 2em;
        font-size: 1.4rem;
        text-align: left;
    }

}

.info-img img {
    width: 60%;
    margin: 2em auto;
}

#information .info-list-title {
    font-size: 1.9rem;
    color: #216ad1;
    display: inline-block;
    margin-bottom: 0.5em;
}




