/* 基本情報 */


/***************************************************************
        基本
***************************************************************/
/*--------------------------------------------------------------
    本体
--------------------------------------------------------------*/
body {
    max-width: 736px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    -webkit-text-size-adjust: 100%;
}
/*--------------------------------------------------------------
    リンク
--------------------------------------------------------------*/
a,i {
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
transition: 0.5s;
}
/*--------------------------------------------------------------
    フェードイン
--------------------------------------------------------------*/
@keyframes fadeIn {
0% {opacity: 0}
100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
0% {opacity: 0}
100% {opacity: 1}
}


/***************************************************************
        ヘッダー
***************************************************************/
/*--------------------------------------------------------------
    ハンバーガーメニュー
--------------------------------------------------------------*/
.header {
    width: 100%;
    height: 100%;
}
.global-nav {
    z-index: 8;
    position: fixed;
    right: -100%; /* これで隠れる */
    top: 0;
    width: 100%; /* スマホに収まるくらい */
    height: 100vh;
    background: #fff;
    transition: all .6s;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.hamburger {
    z-index: 9;
    display: none;
    position: fixed;
    right: 5px;
    top: 5px;
    width: 50px; /* クリックしやすいようにちゃんと幅を指定する */
    height: 50px; /* クリックしやすいようにちゃんと高さを指定する */
    background-image: url(image.php?id=11);
    border-radius: 50%;
    cursor: pointer;
}
.global-nav__list {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 95%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}
.global-nav__form {
    margin: 0 0 20px 0;
}
.global-nav__form a img {
    display: inline-block;
    width: 100%;
}
.global-nav__form a img.sp {
    display: none
}

.global-nav__item {
    text-align: left;
}
.global-nav__item a {
    position: relative;
    display: block;
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #424242;
    font-size: 14px;
    letter-spacing: 2px;
}
.global-nav__item a br {
    display: none;
}
.global-nav__item a::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 30px;
    height: 30px;
    margin: -10px 0 0 0;
    border-top: solid 2px #a9a9a9;
    border-right: solid 2px #a9a9a9;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.global-nav__item a:hover {
    background-color: #eee;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}

.hamburger__line {
    position: absolute;
    left: 10px;
    width: 30px;
    height: 2px;
    background: #db7093;
    transition: all .6s;
}
.hamburger__line--1 {
    top: 10px;
}
.hamburger__line--2 {
    top: 18px;
}
.hamburger__line--3 {
    top: 26px;
}
.hamburger__line--text {
    top: 36px;
    width: 0;
    height: 0;
    color: #db7093;
    font-size: 10px;
}
.black-bg {
    z-index: 7;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
}
.nav-open .global-nav {
    right: 0;
}
.nav-open .black-bg {
    opacity: .8;
    visibility: visible;
}
.nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 20px;
}
.nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
}
.nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 20px;
}
/*--------------------------------------------------------------
    ページトップへ戻る
--------------------------------------------------------------*/
#page_top {
    z-index: 7;
    position: fixed;
    right: 5px;
    bottom: 90px;
    cursor: pointer;
}
#page_top.stop {
    bottom: 150px;
}
@media (min-width:501px) and (max-width:736px) {
    #page_top.stop {
        bottom: 200px;
    }
}
#page_top a {
    display: inline-block;
}
#page_top a img {
    display: inline-block;
    width: 50px;
    height: 50px;
}
/*--------------------------------------------------------------
    WEB掲載・出展申し込みはコチラより
--------------------------------------------------------------*/
header p.form {
    z-index: 7;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
header p.form a {
    display: block;
}
header p.form a img.sp {
    display: inline-block;
    width: 100%;
}
header p.form a img.pc {
    display: none;
}


/***************************************************************
        フッター
***************************************************************/
/*--------------------------------------------------------------
    著作権
--------------------------------------------------------------*/
footer small {
    display: block;
    padding: 20px 0 100px 0;
    background: #fff;
    color: #424242;
    font-size: 12px;
    letter-spacing: 2px;
    text-align: center;
}
@media (min-width:501px) and (max-width:736px) {
    footer small {
        padding: 20px 0 150px 0;
    }
}


/* メインコンテンツ */


/***************************************************************
        メインビジュアル
***************************************************************/
#visual {
    z-index: -1;
    width: 100%;
    height: 100%;
}
#visual h1 img.sp {
    display: inline-block;
    width: 100%;
}
#visual h1 img.tb {
    display: none
}
#visual h1 img.pc {
    display: none
}


/***************************************************************
        支援方針
***************************************************************/
/*--------------------------------------------------------------
    領域
--------------------------------------------------------------*/
#policy {
    background-image: url(image.php?id=10);
    background-repeat: repeat;
}
#policy .container {
    width: 95%;
    margin: 0 auto;
    padding: 50px 0;
    box-sizing: border-box;
}
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#policy .container .heading {
    text-align: center;
}
#policy .container .heading img.sp {
    display: inline-block;
    width: 100%;
}
#policy .container .heading img.pc {
    display: none;
}
#policy .container .heading h2 {
    margin: 10px 0 0 0;
    font-family: 'Kosugi Maru', sans-serif;
    color: #f88d8d;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 6px;
}
/*--------------------------------------------------------------
    コンテンツ_1
--------------------------------------------------------------*/
#policy .container .content_1 p.text {
    margin: 50px 0 0 0;
    color: #424242;
    font-size: 20px;
    letter-spacing: 4px;
    line-height: 30px;
    text-align: center;
}
#policy .container .content_1 p.text br {
    display: none;
}
#policy .container .content_1 p.logo {
    margin: 50px 0 0 0;
    padding: 50px 0;
    background-image: url(image.php?id=53);
    background-repeat: repeat;
    background-size: auto 100%;
    text-align: center;
}
#policy .container .content_1 p.logo img {
    display: inline-block;
    width: 100%;
    max-width: 500px;
}
/*--------------------------------------------------------------
    コンテンツ_2
--------------------------------------------------------------*/
#policy .container .content_2 p.contact {
    margin: 50px 0 0 0;
    color: #7b68ee;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 30px;
    text-align: center;
}
#policy .container .content_2 p.form {
    margin: 50px 0 0 0;
    text-align: center;
}
#policy .container .content_2 p.form a {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
    background: #f88d8d;
    border: solid #fff 1px;
    border-radius: 50px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    text-decoration: none;
}
#policy .container .content_2 p.form a:hover {
    background: #fff;
    border: solid #f88d8d 1px;
    color: #f88d8d;
}
#policy .container .content_2 p.phone {
    margin: 20px 0 0 0;
    text-align: center;
}
#policy .container .content_2 p.phone a {
    display: inline-block;
    color: #dc143c;
    font-size: 40px;
    font-weight: bold;
    text-shadow: 5px 5px 0 #fff, -5px 5px 0 #fff, 5px -5px 0 #fff, -5px -5px 0 #fff;
}
#policy .container .content_2 p.phone a img {
    display: inline-block;
    width: 30px;
    margin: 0 5px 0 0;
}
#policy .container .content_2 p.address {
    margin: 20px 0 0 0;
    color: #424242;
    font-size: 20px;
    letter-spacing: 4px;
    line-height: 30px;
    text-align: center;
}


/***************************************************************
        新着情報
***************************************************************/
/*--------------------------------------------------------------
    領域
--------------------------------------------------------------*/
#news {
    background-image: url(image.php?id=11);
    background-repeat: repeat;
}
#news .container {
    width: 95%;
    margin: 0 auto;
    padding: 50px 0;
    box-sizing: border-box;
}
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#news .container .heading {
    text-align: center;
}
#news .container .heading img.sp {
    display: inline-block;
    width: 100%;
}
#news .container .heading img.pc {
    display: none;
}
#news .container .heading h2 {
    margin: 10px 0 0 0;
    font-family: 'Kosugi Maru', sans-serif;
    color: #f88d8d;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 6px;
}
/*--------------------------------------------------------------
    コンテンツ_1
--------------------------------------------------------------*/
#news .container .content_1 {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto 0 auto;
    padding: 50px 20px;
    box-sizing: border-box;
    background: #fff;
}
#news .container .content_1 a {
    display: block;
    box-sizing: border-box;
    font-size: 0;
    text-decoration: none;
}
#news .container .content_1 a:nth-of-type(n+2) {
    margin: 20px 0 0 0;
}
#news .container .content_1 a span.date {
    display: block;
    width: 100%;
    color: #424242;
    font-size: 14px;
    letter-spacing: 2px;
}
#news .container .content_1 a span.title {
    display: block;
    width: 100%;
    margin: 10px 0 0 0;
    color: #1a0dab;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: underline;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*--------------------------------------------------------------
    コンテンツ_2
--------------------------------------------------------------*/
#news .container .content_2 p {
    margin: 50px 0 0 0;
    text-align: center;
}
#news .container .content_2 p a {
    display: inline-block;
    padding: 20px 50px;
    background: #f88d8d;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
}


/***************************************************************
        8つの支援
***************************************************************/
/*--------------------------------------------------------------
    領域
--------------------------------------------------------------*/
#eight {
    background-image: url(image.php?id=10);
    background-repeat: repeat;
}
#eight .container {
    width: 95%;
    margin: 0 auto;
    padding: 50px 0;
    box-sizing: border-box;
}
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#eight .container .heading {
    text-align: center;
}
#eight .container .heading img.sp {
    display: inline-block;
    width: 100%;
}
#eight .container .heading img.pc {
    display: none;
}
#eight .container .heading h2 {
    margin: 10px 0 0 0;
    font-family: 'Kosugi Maru', sans-serif;
    color: #f88d8d;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 6px;
}
/*--------------------------------------------------------------
    コンテンツ_1
--------------------------------------------------------------*/
#eight .container .content_1 p.text_1 {
    margin: 50px 0 0 0;
    color: #424242;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 30px;
    text-align: center;
}
#eight .container .content_1 p.text_1 br {
    display: none;
}
/*--------------------------------------------------------------
    コンテンツ_2
--------------------------------------------------------------*/
#eight .container .content_2 p.text_1 {
    position: relative;
    margin: 50px 0 0 0;
    color: #dc143c;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 30px;
    text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
    text-align: center;
}
#eight .swiper {
    width: 100%;
    height: 320px;
    margin: 20px 0 0 0;
}
@media (min-width:501px) and (max-width:736px) {
    #eight .swiper {
        height: 280px;
    }
}
:root {
    --swiper-theme-color: #a9a9a9 !important;
    --swiper-navigation-size: 100px !important;
}
#eight .swiper .green-bg {
    padding: 20px;
    box-sizing: border-box;
    background: #E0F8E0;
}
#eight .swiper .pink-bg {
    padding: 20px;
    box-sizing: border-box;
    background: #F8E0F1;
}
#eight .swiper .blue-bg {
    padding: 20px;
    box-sizing: border-box;
    background: #E0E0F8;
}
#eight .swiper .orange-bg {
    padding: 20px;
    box-sizing: border-box;
    background: #F8E6E0;
}
#eight .swiper p.number {
    position: relative;
    padding: 0 0 0 30px;
    color: #2E64FE;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 30px;
}
#eight .swiper p.number span {
    position: absolute;
    top: 0%;
    left: 0%;
    -webkit-transform: translate(-0%,-0%);
    -moz-transform: translate(-0%,-0%);
    -ms-transform: translate(-0%,-0%);
    -o-transform: translate(-0%,-0%);
    transform: translate(-0%,-0%);
    line-height: 30px;
}
#eight .swiper p.midashi {
    position: relative;
    margin: 10px 0 0 0;
    padding: 0 0 0 20px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 20px;
}
#eight .swiper p.midashi::before {
    content: "●";
    position: absolute;
    top: 0%;
    left: 0%;
    -webkit-transform: translate(-0%,-0%);
    -moz-transform: translate(-0%,-0%);
    -ms-transform: translate(-0%,-0%);
    -o-transform: translate(-0%,-0%);
    transform: translate(-0%,-0%);
    line-height: 20px;
}
#eight .swiper p.green-te {
    color: #008000;
}
#eight .swiper p.pink-te {
    color: #ff69b4;
}
#eight .swiper p.blue-te {
    color: #0000ff;
}
#eight .swiper p.orange-te {
    color: #ffa500;
}
#eight .swiper p.example {
    position: relative;
    padding: 0 0 0 20px;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 20px;
}
#eight .swiper p.example::before {
    content: "●";
    position: absolute;
    top: 0%;
    left: 0%;
    -webkit-transform: translate(-0%,-0%);
    -moz-transform: translate(-0%,-0%);
    -ms-transform: translate(-0%,-0%);
    -o-transform: translate(-0%,-0%);
    transform: translate(-0%,-0%);
    line-height: 20px;
}


/***************************************************************
        アスウィズについて
***************************************************************/
/*--------------------------------------------------------------
    領域
--------------------------------------------------------------*/
#about {
    background-image: url(image.php?id=11);
    background-repeat: repeat;
}
#about .container {
    width: 95%;
    margin: 0 auto;
    padding: 50px 0;
    box-sizing: border-box;
}
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#about .container .heading {
    text-align: center;
}
#about .container .heading img.sp {
    display: inline-block;
    width: 100%;
}
#about .container .heading img.pc {
    display: none;
}
#about .container .heading h2 {
    margin: 10px 0 0 0;
    font-family: 'Kosugi Maru', sans-serif;
    color: #f88d8d;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 6px;
}
/*--------------------------------------------------------------
    コンテンツ_1
--------------------------------------------------------------*/
#about .container .content_1 {
    margin: 50px 0 0 0;
}
#about .container .content_1 p img {
    display: inline-block;
    width: 100%;
}
/*--------------------------------------------------------------
    コンテンツ_2
--------------------------------------------------------------*/
#about .container .content_2 h3 {
    margin: 50px 0 0 0;
    color: #424242;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    text-align: center;
}
#about .container .content_2 p.text_1 {
    margin: 50px 0 0 0;
    color: #dc143c;
    font-size: 20px;
    letter-spacing: 4px;
    line-height: 30px;
    text-align: center;
}
#about .container .content_2 p.text_1 span {
    font-weight: bold;
}
#about .container .content_2 .image {
    width: 100%;
    margin: 20px auto 0 auto;
    box-sizing: border-box;
    font-size: 0;
    text-align: center;
}
#about .container .content_2 .image p {
    display: inline-block;
    width: 33%;
    vertical-align: top;
}
#about .container .content_2 .image p img {
    display: inline-block;
    width: 100%;
}
/*--------------------------------------------------------------
    コンテンツ_3
--------------------------------------------------------------*/
#about .container .content_3 {
    display: block;
    width: 100%;
    box-sizing: border-box;
}
#about .container .content_3 .left {
    display: block;
    width: 100%;
    margin: 50px 0 0 0;
    box-sizing: border-box;
}
#about .container .content_3 .left h3 {
    display: inline-block;
    padding: 10px 50px;
    background: #ffc0cb;
    border-radius: 0 50px 50px 0;
    color: #2E64FE;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    text-shadow: 1px 1px 0 #fff,-1px 1px 0 #fff,1px -1px 0 #fff,-1px -1px 0 #fff;
}
#about .container .content_3 .left h3:nth-of-type(n+2) {
    margin: 50px 0 0 0;
}
#about .container .content_3 .left h3 span {
    display: block;
    margin: 10px 0 0 0;
    color: #7b68ee;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: none;
}
#about .container .content_3 .left p.area {
    margin: 20px 0 0 0;
    color: #424242;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}
#about .container .content_3 .left ul {
    margin: 20px 0 0 0;
    box-sizing: border-box;
    font-size: 0;
}
#about .container .content_3 .left ul li {
    display: inline-block;
    width: 33%;
    box-sizing: border-box;
    color: #424242;
    font-size: 14px;
    letter-spacing: 2px;
    text-align: center;
}
#about .container .content_3 .left ul li:nth-of-type(n+4) {
    margin: 10px 0 0 0;
}
#about .container .content_3 .left p.map {
    display: none;
}
#about .container .content_3 .left p.map a img {
    display: none;
}
#about .container .content_3 .left iframe {
    width: 100%;
    height: 300px;
    margin: 20px 0 0 0;
}
#about .container .content_3 .right {
    display: block;
    width: 100%;
    margin: 50px 0 0 0;
    box-sizing: border-box;
}
#about .container .content_3 .right p:nth-of-type(n+2) {
    margin: 20px 0 0 0;
}
#about .container .content_3 .right p img {
    display: inline-block;
    width: 100%;
}
/*--------------------------------------------------------------
    コンテンツ_4
--------------------------------------------------------------*/
#about .container .content_4 h3 {
    margin: 50px 0 0 0;
    color: #424242;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 25px;
    text-align: center;
}
#about .container .content_4 dl {
    width: 100%;
    margin: 50px auto 0 auto;
    box-sizing: border-box;
    font-size: 0;
}
#about .container .content_4 dl dt {
    display: block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: #424242;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 20px;
    text-align: center;
}
#about .container .content_4 dl dd {
    display: block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: #fff;
    border-style: solid;
    border-color: #424242;
    border-width: 0 1px;
    color: #424242;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 2px;
    line-height: 20px;
    text-align: center;
}
#about .container .content_4 dl dd:last-of-type {
    border-width: 0 1px 1px 1px;
}
/*--------------------------------------------------------------
    コンテンツ_5
--------------------------------------------------------------*/
#about .container .content_5 h3 {
    margin: 50px 0 0 0;
    color: #424242;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    text-align: center;
}
#about .container .content_5 .image {
    margin: 50px 0 0 0;
    box-sizing: border-box;
    font-size: 0;
}
#about .container .content_5 .image p {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    padding: 0 1%;
    box-sizing: border-box;
}
#about .container .content_5 .image p img {
    display: inline-block;
    width: 100%;
}


/***************************************************************
        一日の流れ
***************************************************************/
/*--------------------------------------------------------------
    領域
--------------------------------------------------------------*/
#oneday {
    background-image: url(image.php?id=10);
    background-repeat: repeat;
}
#oneday .container {
    width: 95%;
    margin: 0 auto;
    padding: 50px 0;
    box-sizing: border-box;
}
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#oneday .container .heading {
    text-align: center;
}
#oneday .container .heading img.sp {
    display: inline-block;
    width: 100%;
}
#oneday .container .heading img.pc {
    display: none;
}
#oneday .container .heading h2 {
    margin: 10px 0 0 0;
    font-family: 'Kosugi Maru', sans-serif;
    color: #f88d8d;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 6px;
}
/*--------------------------------------------------------------
    コンテンツ_1
--------------------------------------------------------------*/
#oneday .container .content_1 h3 {
    margin: 50px 0 0 0;
    color: #424242;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 30px;
    text-align: center;
}
#oneday .container .content_1 p.text_1 {
    margin: 50px 0 0 0;
    color: #dc143c;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 20px;
    text-align: center;
}
#oneday .swiper {
    width: 100%;
    height: 400px;
    margin: 50px 0 0 0;
    text-align: center;
}
#oneday .swiper img {
    display: inline-block;
    width: 100%;
    max-width: 300px;
}


/***************************************************************
        入園案内
***************************************************************/
/*--------------------------------------------------------------
    領域
--------------------------------------------------------------*/
#admission {
    background-image: url(image.php?id=11);
    background-repeat: repeat;
}
#admission .container {
    width: 95%;
    margin: 0 auto;
    padding: 50px 0;
    box-sizing: border-box;
}
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#admission .container .heading {
    text-align: center;
}
#admission .container .heading img.sp {
    display: inline-block;
    width: 100%;
}
#admission .container .heading img.pc {
    display: none;
}
#admission .container .heading h2 {
    margin: 10px 0 0 0;
    font-family: 'Kosugi Maru', sans-serif;
    color: #f88d8d;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 6px;
}
/*--------------------------------------------------------------
    コンテンツ_1
--------------------------------------------------------------*/
#admission .container .content_1 article {
    width: 100%;
    margin: 50px auto 0 auto;
    box-sizing: border-box;
    font-size: 0;
}
#admission .container .content_1 article:nth-of-type(n+2) {
    margin: 20px auto 0 auto;
}
#admission .container .content_1 article p.text_1 {
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: #f88d8d;
    font-size: 30px;
    text-align: center;
}
#admission .container .content_1 article p.text_1 span {
    display: inline-block;
    margin: 0 0 0 10px;
    box-sizing: border-box;
}
#admission .container .content_1 article p.text_2 {
    display: block;
    width: 100%;
    margin: 10px 0 0 0;
    box-sizing: border-box;
    padding: 20px 5px;
    background: #ffc0cb;
    border-radius: 0 50px 50px 0;
    color: #424242;
    font-size: 18px;
    letter-spacing: 2px;
}
#admission .container .content_1 article p.text_2 a {
    display: inline-block;
    color: #1a0dab;
    text-decoration: underline;
}
#admission .container .content_1 article p.text_3 {
    display: block;
    width: 100%;
    margin: 10px 0 0 auto;
    box-sizing: border-box;
    color: #2E64FE;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 20px;
}


/***************************************************************
        スタッフ紹介
***************************************************************/
/*--------------------------------------------------------------
    領域
--------------------------------------------------------------*/
#staff {
    background-image: url(image.php?id=10);
    background-repeat: repeat;
}
#staff .container {
    width: 95%;
    margin: 0 auto;
    padding: 50px 0;
    box-sizing: border-box;
}
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#staff .container .heading {
    text-align: center;
}
#staff .container .heading img.sp {
    display: inline-block;
    width: 100%;
}
#staff .container .heading img.pc {
    display: none;
}
#staff .container .heading h2 {
    margin: 10px 0 0 0;
    font-family: 'Kosugi Maru', sans-serif;
    color: #f88d8d;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 6px;
}
/*--------------------------------------------------------------
    スタッフ
--------------------------------------------------------------*/
#staff .container .content_1 article {
    margin: 50px 0 0 0;
    box-sizing: border-box;
    font-size: 0;
}
#staff .container .content_1 article .left {
    display: block;
    box-sizing: border-box;
}
#staff .container .content_1 article .right {
    display: block;
    box-sizing: border-box;
}
/* 左：画像　右：テキスト
--------------------------------------------------------------*/
#staff .container .content_1 article:nth-of-type(odd) .left {
    width: 100%;
    text-align: center;
}
#staff .container .content_1 article:nth-of-type(odd) .left p img {
    display: inline-block;
    width: 100%;
    max-width: 300px;
}
#staff .container .content_1 article:nth-of-type(odd) .right {
    width: 100%;
    padding: 0;
}
#staff .container .content_1 article:nth-of-type(odd) .right p.midashi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0 0;
    padding: 0 0 20px 0;
    box-sizing: border-box;
    border-bottom: solid #424242 2px;
}
#staff .container .content_1 article:nth-of-type(odd) .right p.midashi span {
    display: inline-block;
    align-self: baseline;
    box-sizing: border-box;
}
#staff .container .content_1 article:nth-of-type(odd) .right p.midashi span.jp {
    color: #424242;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
}
#staff .container .content_1 article:nth-of-type(odd) .right p.midashi span.jp:first-letter {
    color: #dc143c;
    font-size: 30px;
}
#staff .container .content_1 article:nth-of-type(odd) .right p.midashi span.en {
    color: #dc143c;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}
#staff .container .content_1 article:nth-of-type(odd) .right p.text {
    margin: 20px 0 0 0;
    padding: 0 10px;
    color: #424242;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 20px;
}
#staff .container .content_1 article:nth-of-type(odd) .right p.text span {
    display: block;
    font-weight: bold;
}
/* 左：テキスト　右：画像
--------------------------------------------------------------*/
#staff .container .content_1 article:nth-of-type(even) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
#staff .container .content_1 article:nth-of-type(even) .left {
    -webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
    width: 100%;
    padding: 0;
}
#staff .container .content_1 article:nth-of-type(even) .left p.midashi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0 0;
    padding: 0 0 20px 0;
    box-sizing: border-box;
    border-bottom: solid #424242 2px;
}
#staff .container .content_1 article:nth-of-type(even) .left p.midashi span {
    display: inline-block;
    align-self: baseline;
    box-sizing: border-box;
}
#staff .container .content_1 article:nth-of-type(even) .left p.midashi span.jp {
    color: #424242;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
}
#staff .container .content_1 article:nth-of-type(even) .left p.midashi span.jp:first-letter {
    color: #dc143c;
    font-size: 30px;
}
#staff .container .content_1 article:nth-of-type(even) .left p.midashi span.en {
    color: #dc143c;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}
#staff .container .content_1 article:nth-of-type(even) .left p.text {
    margin: 20px 0 0 0;
    padding: 0 10px;
    color: #424242;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 20px;
}
#staff .container .content_1 article:nth-of-type(even) .right {
    -webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
    width: 100%;
    text-align: center;
}
#staff .container .content_1 article:nth-of-type(even) .right p img {
    display: inline-block;
    width: 100%;
    max-width: 300px;
}


/***************************************************************
        採用情報
***************************************************************/
/*--------------------------------------------------------------
    領域
--------------------------------------------------------------*/
#recruit {
    background-image: url(image.php?id=11);
    background-repeat: repeat;
}
#recruit .container {
    width: 95%;
    margin: 0 auto;
    padding: 50px 0;
    box-sizing: border-box;
}
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#recruit .container .heading {
    text-align: center;
}
#recruit .container .heading img.sp {
    display: inline-block;
    width: 100%;
}
#recruit .container .heading img.pc {
    display: none
}
#recruit .container .heading h2 {
    margin: 10px 0 0 0;
    font-family: 'Kosugi Maru', sans-serif;
    color: #f88d8d;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 6px;
}
/*--------------------------------------------------------------
    募集要項
--------------------------------------------------------------*/
#recruit .container .content_1 {
    width: 100%;
    margin: 50px auto 0 auto;
    box-sizing: border-box;
}
#recruit .container .content_1 article {
    padding: 50px 20px;
    background: #fff;
    font-size: 0;
}
#recruit .container .content_1 article:nth-of-type(n+2) {
    margin: 50px 0 0 0;
}
#recruit .container .content_1 article h3 {
    text-align: center;
}
#recruit .container .content_1 article h3 span {
    display: inline-block;
    background:linear-gradient(transparent 60%, #ff6 60%);
    color: #424242;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 30px;
}

#recruit .container .content_1 article dl {
    margin: 50px 0 0 0;
    box-sizing: border-box;
    font-size: 0;
}
#recruit .container .content_1 article dl dt {
    display: block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: #424242;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 20px;
    text-align: center;
}
#recruit .container .content_1 article dl dd {
    display: block;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-style: solid;
    border-color: #424242;
    border-width: 0 1px;
    color: #424242;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 2px;
    line-height: 20px;
    text-align: center;
}
#recruit .container .content_1 article dl dd:last-of-type {
    border-width: 0 1px 1px 1px;
}
#recruit .container .content_1 article dl dd a {
    display: inline-block;
    color: #1a0dab;
    text-decoration: underline;
}

#recruit .container .content_1 article p.img {
    margin: 50px 0 0 0;
    text-align: center;
}
#recruit .container .content_1 article p.img img {
    display: inline-block;
    width: 100%;
    max-width: 600px;
}

#recruit .container .content_1 p.form {
    margin: 50px 0 0 0;
    text-align: center;
}
#recruit .container .content_1 p.form a {
    display: inline-block;
    padding: 20px 100px;
    background: #f88d8d;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
}


/* 下層ページ */


/***************************************************************
           基本情報
***************************************************************/
/*--------------------------------------------------------------
    見出し
--------------------------------------------------------------*/
#lower #heading h2 {
    margin: 50px 0 0 0;
    font-family: 'Kosugi Maru', sans-serif;
    color: #f88d8d;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 6px;
    text-align: center;
}
/*--------------------------------------------------------------
    ぱんくず
--------------------------------------------------------------*/
#lower #breadcrumb ol {
    margin: 20px 0 0 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}
#lower #breadcrumb ol li {
    display: inline-block;
    vertical-align: top;
    color: #424242;
    font-size: 14px;
    letter-spacing: 2px;
}
#lower #breadcrumb ol li a {
    display: inline-block;
    color: #1a0dab;
    text-decoration: underline;
}
#lower #breadcrumb ol li:not(:last-child)::after {
    content: '>';
    padding: 0 20px;
}


/***************************************************************
           新着情報
***************************************************************/
/*--------------------------------------------------------------
    領域
--------------------------------------------------------------*/
#lower #news {
    margin: 50px 0 0 0;
    background-image: url(image.php?id=10);
    background-repeat: repeat;
}
#lower #news .container {
    width: 95%;
    margin: 0 auto;
    padding: 50px auto 0 auto;
    box-sizing: border-box;
}
/*--------------------------------------------------------------
    記事
--------------------------------------------------------------*/
#lower #news .container .news article {
    padding: 20px;
    background: #fff;
    border-color: #ccc;
    border-style: solid;
    border-width: 1px;
}
#lower #news .container .news article p.midashi a {
    display: block;
    padding: 0 0 20px 0;
    border-color: #424242;
    border-style: solid;
    border-width: 0 0 1px 0;
    color: #424242;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 20px;
    text-decoration: none;
}
#lower #news .container .news article p.date {
    margin: 20px 0 0 0;
    color: #424242;
    font-size: 14px;
    letter-spacing: 2px;
    text-align: center;
}
#lower #news .container .news article p.theme {
    margin: 20px 0 0 0;
    text-align: center;
}
#lower #news .container .news article p.theme a {
    display: inline-block;
    padding: 5px;
    background: #424242;
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
}
#lower #news .container .news article div.text {
    margin: 20px 0 0 0;
    color: #424242;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 20px;
}
#lower #news .container .news article p.image {
    margin: 20px 0 0 0;
    text-align: center;
}
#lower #news .container .news article p.image img {
    display: inline-block;
    width: 100%;
    max-width: 400px;
}
/*--------------------------------------------------------------
    ページャー
--------------------------------------------------------------*/
#lower #news .container .pager {
    margin: 20px 0 0 0;
}
#lower #news .container .pager::after {
    content: "";
    display: block;
    clear: both;
}
#lower #news .container .pager #pagination ul {
    display: none;
}
#lower #news .container .pager #pagination ul li {
    display: none;
}
#lower #news .container .pager #pagination ul li:nth-of-type(n+6) {
    display: none;
}
#lower #news .container .pager #pagination ul li a {
    display: none;
}
#lower #news .container .pager #nextpage {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    box-sizing: border-box;
    float: right;
}
#lower #news .container .pager #nextpage ul {
    list-style-type: none;
    text-align: right;
}
#lower #news .container .pager #nextpage ul li a {
    display: inline-block;
    padding: 20px;
    background: #424242;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}
#lower #news .container .pager #prevpage {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    box-sizing: border-box;
    float: left;
}
#lower #news .container .pager #prevpage ul {
    list-style-type: none;
}
#lower #news .container .pager #prevpage ul li a {
    display: inline-block;
    padding: 20px;
    background: #424242;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}
/*--------------------------------------------------------------
    最新記事&テーマ&月別
--------------------------------------------------------------*/
#lower #news .container .sub {
    display: block;
    margin: 20px 0 0 0;
    box-sizing: border-box;
}
#lower #news .container .sub article {
    display: block;
    background: #ccc;
}
#lower #news .container .sub article p {
    padding: 10px 0;
    background: #424242;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
}
#lower #news .container .sub article ul {
    list-style-type: none;
    padding: 10px;
}
#lower #news .container .sub article ul li {
    display: block;
}
#lower #news .container .sub article ul li a {
    display: block;
    padding: 10px;
    background: #fff;
    color: #424242;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#lower #news .container .sub article ul li:nth-of-type(n+2) a {
    border-color: #D3D3D3;
    border-style: dashed;
    border-width: 1px 0 0 0;
}
#lower #news .container .sub article ul li a:hover {
    text-decoration: underline;
}