@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.jp-kanji {
    font-family: "Yu Gothic", "Hiragino Sans", sans-serif;
}

body {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    font-family: "Zen Kaku Gothic New",
        "Hiragino Sans",
        "Yu Gothic",
        "Meiryo",
        sans-serif;
    background: #fff;
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: .1em;
}

p {
    text-align: justify;
    font-weight: 500;
    letter-spacing: .05em !important;
}

h2 {
    font-weight: 800;
}

strong {
    font-weight: 800;
}

.indent-1 {
    padding-left: 1em;
    text-indent: -1em;
}

a {
    color: #e52d27;
    text-decoration: none;
}

.montserrat,
.course_num,
.tohostories_ttl,
.seemore,
.adv_ttl {
    font-family: 'Montserrat', sans-serif;
}

img {
    width: 100%;
    vertical-align: bottom;
}

.wrap1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.wrap1000 {
    max-width: 1000px;
    margin: 0 auto;

}

.align_center {
    text-align: center;
}

.align_left {
    text-align: left !important;
}

#color_area {
    width: 100%;
    padding: 120px 0;
    background: url(images/bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.bg_pink {
    background: #ED6D81;
}

.bg_coral {
    background: #D2AE94;
}

/*****ANIMATION*****/
.sa {
    opacity: 0;
    -webkit-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.sa.show {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.sa--lr {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
}

.sa--rl {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0);
}

.sa--up {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
}

.sa--down {
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px);
}

.sa--scaleUp {
    -webkit-transform: scale(.5);
    transform: scale(.5);
}

/*******************/

.m120 {
    padding: 120px 0;
}

.mt120 {
    padding-top: 120px;
}

.mb120 {
    padding-bottom: 120px;
}


.m100 {
    padding: 100px 0;
}

.mt100 {
    padding-top: 100px;
}

.mb100 {
    padding-bottom: 100px;
}

.m80 {
    padding: 80px 0;
}

.mt80 {
    padding-top: 80px;
}

.mb80 {
    padding-bottom: 80px;
}

.m50 {
    padding: 50px 0;
}

.mt50 {
    padding-top: 50px;
}

.mb50 {
    padding-bottom: 50px;
}

.m30 {
    padding: 30px 0;
}

.mt30 {
    padding-top: 30px;
}

.mb30 {
    padding-bottom: 30px;
}

.m20 {
    padding: 20px 0;
}

.mt20 {
    padding-top: 20px;
}

.mb20 {
    padding-bottom: 20px;
}

.m15 {
    padding: 15px 0;
}

.mt15 {
    padding-top: 15px;
}

.mb15 {
    padding-bottom: 15px;
}

.pc_only {
    display: block;
}

.octype h4 .pc_only {
    display: inline;
}

.sp_only {
    display: none;
}

.alart_box {
    border: 2px solid red;
    padding: 25px;
    background: white;
}

.alart_box p {
    color: red;
    font-weight: 600;
    text-align: center;
    font-size: 23px;
}

/*HEADER----------------------------------------------------------------------*/

.inner {
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.inner:after {
    clear: both;
    display: block;
}

/* header */
#nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 69px;
    cursor: pointer;
    background: #22b573;
    padding: 10px;
    border-radius: 100px;
    border: 2px solid #FFF;
}

#nav-toggle > div {
    position: relative;
    width: 45px;
}

#nav-toggle span {
    width: 80%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: block;
    background: #fff;
    position: absolute;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-in-out;
    transition: top 0.3s ease, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, top 0.3s ease;
    transition: transform 0.3s ease-in-out, top 0.3s ease, -webkit-transform 0.3s ease-in-out;
}

#nav-toggle span:nth-child(1) {
    top: 8px;
}

#nav-toggle span:nth-child(2) {
    top: 22px;
}

#nav-toggle span:nth-child(3) {
    top: 37px;
}

#nav-toggle:hover span:nth-child(1) {
    top: 10px;
}

#nav-toggle:hover span:nth-child(3) {
    top: 35px;
}

.open #nav-toggle span {
    background: #fff;
    top: 50%;
    left: 10%;
}

.open #nav-toggle span:nth-child(1) {
    top: 22px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
    top: 22px;
    width: 0;
    left: 50%;
}

.open #nav-toggle span:nth-child(3) {
    top: 22px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-toggle {
    z-index: 1000;
}

#container {
    z-index: 900;
}

#gloval-nav {
    background: rgba(16, 175, 103, .7);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    visibility: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 29px;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#gloval-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    -webkit-transition: color 0.6s ease;
    transition: color 0.6s ease;
}

#gloval-nav a:hover {
    color: #666;
}

#gloval-nav ul {
    list-style: none;
}

#gloval-nav ul li {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
    transition: transform 0.6s ease, opacity 0.2s ease;
    transition: transform 0.6s ease, opacity 0.2s ease, -webkit-transform 0.6s ease;
}

#gloval-nav ul li:nth-child(2) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

#gloval-nav ul li:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#gloval-nav ul li:nth-child(4) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

#gloval-nav ul li:nth-child(5) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

#gloval-nav ul li:nth-child(6) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

#gloval-nav ul li:nth-child(7) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.open {
    overflow: hidden;
}

.open #gloval-nav {
    visibility: visible;
    opacity: 1;
}

.open #gloval-nav li {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
    transition: opacity 0.9s ease, -webkit-transform 1s ease;
    transition: transform 1s ease, opacity 0.9s ease;
    transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
}

#top-head {
    top: -100px;
    margin-top: 100px;
    position: absolute;
    width: 100%;
    padding: 0 15px;
    line-height: 1;
    z-index: 999;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#top-head a,
#top-head {
    text-decoration: none;
}

#top-head .inner {
    position: relative;
}

#top-head .logo {
    line-height: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 250px;
}


.insta_btn {
    position: absolute;
    right: 80px;
    top: 9px;
}


.insta_btn a {
    font-size: 40px !important;
    color: #fff;
}

#global-nav ul li a:hover {
    color: #90cee4;
}

/* Fixed */

#top-head.fixed .insta_btn a {
    color: #fff;
}

#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
    z-index: 9999;
}

#top-head.fixed .logo {
    font-size: 24px;
    color: #333;
}

.fixed_btn ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.fixed_btn ul li a {
    color: #fff;
    height: 60px;
    display: block;
    font-weight: 600;
    letter-spacing: 0.2em;
    padding: 0 25px;
    line-height: 60px;
    font-size: 16px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.fixed_btn ul li a:hover {
    opacity: 0.7;
}

.fixed_btn {
    position: absolute;
    top: 0;
    right: 60px;
}



.streaming_btn a {
    background: #fff;
    color: #288C57 !important;
    padding: 5px 10px;
    border-radius: 100px;
    border: 2px solid #fff;
    -webkit-transition: .5s;
    transition: .5s;
    font-weight: bold;
}

.streaming_btn a:hover {
    background: transparent;
    color: #fff !important;
}

a.contact_btn {
    background: #288c57;
    color: #fff !important;
    padding: 6px 20px;
    border-radius: 5px;
    border: 2px solid #288c57;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a.contact_btn:hover {
    background: transparent;
    color: #288c57 !important;
    border: 2px solid #288c57;
}


.head_logo {
    max-width: 250px;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

/*HEADERend-------------------------------------------------------------------*/

/*MAIN------------------------------------------------------------------------*/

main {
    position: relative;
}


.scroll {
    padding-bottom: 16px;
    position: absolute;
    bottom: 40px;
    text-decoration: none;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 2;
    display: inline-block;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.scroll span {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 25px;
    height: 24px;
    margin-left: -12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@-webkit-keyframes sdb {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }

    20% {
        -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    }

    40% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
    }
}

@keyframes sdb {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        transform: rotate(-45deg) translate(0, 0);
    }

    20% {
        -webkit-transform: rotate(-45deg) translate(-10px, 10px);
        transform: rotate(-45deg) translate(-10px, 10px);
    }

    40% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        transform: rotate(-45deg) translate(0, 0);
    }
}

.main_v {
    width: 100%;
    position: relative;
    background: url(images/bg.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100vh;
    overflow: hidden;
}

.mainv_inner {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/* 共通 */
.illust {
    position: absolute;
    width: clamp(120px, 14vw, 240px);
    height: auto;
    z-index: 1;
    pointer-events: none;
}

/* 左 */
.illust-left {
    left: clamp(10px, 3vw, 60px);
    bottom: clamp(40px, 6vw, 100px);
}

/* 右 */
.illust-right {
    right: clamp(10px, 3vw, 60px);
    bottom: clamp(40px, 6vw, 100px);
}


/***申込ボタン**/
#floatingButton {
    position: fixed;
    right: -320px;
    bottom: 5%;
    transition: right 0.4s ease;
    z-index: 1000;
    max-width: 320px;
    width: 15vw
}

#floatingButton.show {
    right: 20px;
}

#floatingButton.hide {
    right -320px;
}

#area01 {
    padding: clamp(80px, 10vw, 120px) 0;
    background: #E8FFF5;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

#area02 {
    padding: clamp(80px, 10vw, 120px) 0;
    background: url(images/bg02.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

#area03 {
    padding: clamp(80px, 10vw, 120px) 0;
    background: #F2FFF9;
}

.top_comment {
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    line-height: 1.8em;
    margin: 6vw 0;
}

.new {
    max-width: 700px;
    margin: 0 auto 50px;
}

.entrance_copy {
    color: #10AF67;
    text-align: center;
    font-size: 40px;
}

span.marker {
    background: linear-gradient(transparent 50%, #FFFF00 50%);
}

.shinnyushi {
    max-width: 80%;
    margin: 50px auto;
}

.points {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.points li {
    width: calc(100% / 2 - 10px);
    text-align: center;
    padding: 20px;
    border: 2px solid #10AF67;
    background: #fff;
    border-radius: 20px;
}

.points li:nth-child(n+3) {
    margin-top: 30px;
}

.points li h3 {
    color: #10AF67;
    font-size: 25px;
}

.points li p {
    font-size: clamp(1rem, calc(0.9rem + 0.5vw), 1.5rem);
    font-weight: 500;
    text-align: center;
}

.undr_bar {
    height: 1px;
    width: 20px;
    margin: 0 auto 20px;
    background: #10AF67;
}

.area_ttl {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 50px;
    text-align: center;
}

.area_ttl h2 {
    font-size: clamp(3rem, calc(2.6rem + 2vw), 5rem);
    line-height: 1em !important;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #10AF67;
}

.area_ttl p {
    font-size: 18px;
    line-height: 1em;
    margin: 15px 0 18px 0;
    letter-spacing: 0em;
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: #000;
}

.area_ttl p {
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.area_ttl p span {
    font-size: 12px;
    display: inline-block;
    width: auto;
}

.area_ttl span {
    height: 1px;
    width: 50px;
    display: block;
}

.font_wht {
    color: #fff;
}

.font_red {
    color: #E52D27;
}


.schettl {
    border-radius: 100px;
    text-align: center;
    background: #10AF67;
    background: linear-gradient(45deg, rgba(16, 175, 103, 1) 0%, rgba(108, 153, 255, 1) 100%);
    font-weight: 600;
    color: #fff;
    padding: 5px;
    margin-bottom: 10px;
}

.greenbox {
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #10AF67;
    background: repeating-linear-gradient(90deg,
            #cbcbcb,
            #cbcbcb 1px,
            transparent 1px,
            transparent 32px),
        repeating-linear-gradient(0deg,
            #cbcbcb,
            #cbcbcb 1px,
            #fff 1px,
            #fff 32px);
}

.normal_copy {
    font-size: 40px;
    line-height: 1.5em;
}

.namebox p {
    color: #fff;
    font-weight: 600;
}

.namebox h2 {
    color: #fff;
    font-size: 50px;
    line-height: 1em;
    margin-top: 5px
}

.profile {
    display: flex;
    justify-content: space-between;
}

.profile_l {
    width: 65%;
}

.profile_r {
    width: 30%;
}

.fes_ttl {
    width: 60%;
    margin: 0 auto;
}

.messageerea {
    display: flex;
    justify-content: space-between;
}

.messageerea_l {
    background: url(images/message.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 40vw;
}

.messageerea_r {
    width: 60vw;
    padding: 6vw 10% 6vw 3%;
}

.grad_area {
    background: rgb(229, 45, 39);
    background: radial-gradient(circle, rgba(229, 45, 39, 1) 0%, rgba(179, 18, 23, 1) 100%);
}

.books {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.books li {
    width: calc(100% / 4 - 50px);
    text-align: center;
}

.books li:nth-child(n+5) {
    margin-top: 50px;
}

.cover {
    height: 400px;
    display: block;
    background: #fff;
    position: relative;
    margin-bottom: 15px;
}

.books li img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 80%;
}

.books li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    border: 1px solid;
    width: 100%;
    display: inline-block;
    padding: 10px;
}

/*media acordion------------------
---------------------------------*/

.accordion-container {
    margin: 0px auto 0;
    width: 100%;
}

.accordion-list {
    border: 1.5px solid #10AF67;
}

.accordion-list:not(:first-child) {
    margin-top: 50px;
}

.accordion-title {
    cursor: pointer;
    font-size: 28px;
    padding: 20px 20px;
    position: relative;
    text-align: center;
    background: #fff;
    font-weight: 600;
    color: #10AF67;
}



.dli-chevron-down {
    display: block;
    vertical-align: middle;
    color: #10AF67;
    line-height: 1;
    width: 1.8em;
    height: 1.8em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
    margin: 20px auto;
}


.accordion-title:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 1px;
    width: 20px;
    background: #10AF67;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
}

.accordion-title:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 1px;
    width: 20px;
    background: #10AF67;
    transition: all .3s ease-in-out;
}

.accordion-title.open:before {
    transform: rotate(180deg);
}

.accordion-title.open:after {
    opacity: 0;
}

.accordion-text {
    display: none;
    padding: 30px background: #fff;
}

.theme_contain {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.theme_contain_in {
    width: calc(100% / 2 - 10px)
}

.theme_contain h3 {
    text-align: center;
    border-radius: 50px;
    color: #fff;
    padding: 5px;
    margin-bottom: 20px;
}

.theme_contain .theme_in {
    list-style: none;

}

.theme_contain .theme_in li {
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme_contain .theme_in li:nth-child(n+2) {
    margin-top: 20px;
}

.theme_contain .theme_in li img {
    width: 20%;
}

.theme_contain .theme_in li p {
    width: 78%;
    font-weight: 600;
    font-size: 18px;
}

/*------------------------------
-----------------------------*/


/*acbox----------------------------
-----------------------------*/

.acbox_seemore {
    width: 100%;
    margin: 0 auto;
    /* ラベルと開く部分を分離する時は数値を入れる */
    /* ボックス全体の位置調整 */
}

.acbox_seemore label {
    color: #fff;
    width: auto;
    font-size: 18px;
    /* ラベルの文字サイズ */
    font-weight: bold;
    text-align: center;
    position: relative;
    display: block;
    padding: 15px;
    cursor: pointer;
    -webkit-transition: .5s;
    transition: .5s;
    border: 1px solid #fff;
    max-width: 360px;
    margin: 0 auto;
}

.acbox_seemore label:hover {
    background: #fff;
    color: #E52D27;
}

.acbox_seemore input {
    display: none;
}

.acbox_seemore input:checked ~ label::after {
    content: "\f077";
    /* ラベルのアイコン */
    position: absolute;
    top: 44%;
    margin-top: -14px;
    margin-left: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.acbox_seemore label:after {
    content: "\f078";
    /* ラベルのアイコン */
    position: absolute;
    top: 44%;
    margin-top: -14px;
    margin-left: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.acbox_seemore .acbox-under {
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: 0.15s;
    transition: 0.15s;
    /* 開閉スピードの設定 */
}

.acbox_seemore input:checked ~ .acbox-under {
    height: auto;
    padding: 20px 0;
    /* 開いた部分の枠内の余白 */
    border-radius: 0px;
    background: transparent;
    /* 開いた部分の背景色 */
    opacity: 1 !important;
}

/*------------------------------
-----------------------------*/

.photo_on {
    display: flex;
    justify-content: space-between;
}

.photo_box {
    width: 30%
}

.tex_box {
    width: 68%;
}

.fa,
.fab,
.fad,
.fal,
.far,
.fas {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    display: inline-block;
}



/*button*/

.btn_box {
    max-width: 400px;
    margin: auto;
}

.btn_main {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #10AF67;
    border: 2px solid #10AF67;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 20px;
    -webkit-transition: .5s;
    transition: .5s;
    letter-spacing: 0.1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    transition: ease .3s;
    border-radius: 100px;
    font-weight: 600;
}

.btn_main:after {
    content: '';
    position: absolute;
    top: 38%;
    right: 30px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    transition: all .3s;
}

.btn_main:hover {
    background-color: #fff;
    border-color: #10AF67;
    color: #10AF67;
    opacity: 1;
}


.btn_main:hover:after {
    right: 25px;
    border-top: 1px solid #10AF67;
    border-right: 1px solid #10AF67;
}


.btn_main2 {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #007131;
    border: 2px solid #007131;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 25px 10px;
    -webkit-transition: .5s;
    transition: .5s;
    letter-spacing: 0.1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.btn_main2:hover {
    background-color: transparent;
    border-color: #007131;
    color: #007131;
}


.newspaper {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.newspaper li {
    width: calc(100% / 3 - 20px);
}

.topic_ttl {
    color: #e52d27;
    border-bottom: 1px solid #e52d27;
    margin-bottom: 20px;
}

/*MAINend---------------------------------------------------------------------*/

/*FOOTER----------------------------------------------------------------------*/

.footer_top {
    background: #a5b2b7;
    padding: 50px 0;
}

.footer_top p {
    text-align: center;
    font-weight: bold;
}

.footer_logo {
    max-width: 450px;
    margin: 0 auto;
}

.footer_btm {
    background: #10AF67;
    padding: 20px 0;
    color: #fff;
    font-size: 12px;
}

#page-top {
    position: fixed;
    bottom: 20px;
    right: 15px;
    font-size: 14px;
    line-height: 1;
    z-index: 99;
}

#page-top a {
    background: #22b573;
    text-decoration: none;
    color: #fff;
    width: 60px;
    padding: 22px 5px;
    text-align: center;
    display: block;
    border-radius: 90px;
    opacity: 0.9;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

#page-top a:hover {
    text-decoration: none;
    opacity: .5;
}

.past_site {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.past_site li {
    width: calc(100% / 3 - 20px);
}

.footer_btnbox {
    padding: clamp(80px, 10vw, 120px) 0;
}

.footer_btnbox {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer_btnbox li {
    width: calc(100% / 2 - 20px);
}

.footer_btnbox li a {
    transition: .5s;
}

.footer_btnbox li a:hover {
    opacity: .7;
}

.sidebtnsp {
    display: flex;
    justify-content: space-between;
    width: 100;
}

.sidebtnsp a {
    width: calc(100% / 1);
}

#floatingButtonsp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 999;
    transition: transform 0.5s ease;
}


/* スライドアウト状態 */
#floatingButtonsp.hide {
    transform: translateY(100%);
}

/*FOOTERend-------------------------------------------------------------------*/


@media only screen and (max-width: 1200px) {
    .wrap1200 {
        padding: 0 15px;
    }
}


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



    /*HEADER----------------------------------------------------------------------*/


    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
        background: transparent;
    }


    #top-head.fixed .logo {
        font-size: 24px;
        color: #333;
    }



    #top-head.fixed .logo,
    #top-head .logo {
        max-width: 300px
    }


    /*HEADERend-------------------------------------------------------------------*/

    /*MAIN------------------------------------------------------------------------*/

    .wrap1000 {
        padding: 0 15px;
    }


    .books li {
        width: calc(100% / 3 - 20px);
    }

    .books li:nth-child(n+4) {
        margin-top: 50px;
    }

    /* 親要素の疑似要素 */
    .books::after {
        content: "";
        display: block;
        width: calc(100% / 3 - 20px);
    }

    .cover {
        height: 45vw;
    }

    .main_v_name {
        width: 40vw;
        bottom: 5%;
    }

    .main_v_parson {
        width: 75vw;
        top: auto;
        bottom: -11vw;
        right: -5%;
        z-index: 1;
        max-width: 700px;
    }


    .main_v_copy {
        width: 60vw
    }

    /*MAINend---------------------------------------------------------------------*/

    /*FOOTER----------------------------------------------------------------------*/

    .past_site li {
        width: calc(100% / 1);
    }

    .past_site li:nth-child(n+2) {
        margin-top: 20px;
    }

    /*FOOTERend-------------------------------------------------------------------*/

}

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

    body {
        font-size: 12px;
    }

    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .m100,
    #color_area {
        padding: 21vw 0;
    }

    .mt100 {
        padding-top: 21vw;
    }

    .mb100 {
        padding-bottom: 21vw;
    }

    /*HEADER----------------------------------------------------------------------*/

    #top-head.fixed .logo,
    #top-head .logo {
        max-width: 250px;
    }

    /*HEADERend-------------------------------------------------------------------*/

    /*MAIN------------------------------------------------------------------------*/
    .main_v {
        min-height: 600px;
    }


    .mainv_inner {
        width: 95%;
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    .mainv_inner img {
        width: 100%;
    }

    /* 左 */
    .illust-left {
        left: clamp(10px, 3vw, 60px);
        bottom: clamp(140px, 18vw, 220px);
    }

    /* 右 */
    .illust-right {
        right: clamp(10px, 3vw, 60px);
        bottom: clamp(140px, 18vw, 220px);
    }

    .main_v_name {
        width: 25vw;
        bottom: 5%;
    }

    .main_v_parson {
        width: 90vw;
        right: -5%;
        bottom: 0;
        z-index: 1;
        max-width: 420px;
    }

    .main_v_copy {
        width: 70vw
    }

    .entrance_copy {
        font-size: 19px;
    }

    .top_comment {
        font-size: 12px !important;
        margin: 15vw 0;
    }

    .messageerea {
        flex-direction: column
    }

    .messageerea_l,
    .messageerea_r {
        width: 100%;
    }

    .messageerea_l {
        height: 50vh
    }

    .messageerea_r {
        padding: 100px 15px
    }

    .normal_copy {
        font-size: 24px;
    }

    .area_ttl h2 {
        font-size: 35px;
    }

    .area_ttl p {
        font-size: 14px;
    }

    .books li {
        width: calc(100% / 2 - 20px);
    }

    .books li:nth-child(n+3) {
        margin-top: 50px;
    }

    .cover {
        height: 60vw;
    }

    .accordion-text p {
        font-size: 14px;
    }

    .accordion-text {
        padding: 16px;
    }

    .m120 {
        padding: 80px 0;
    }

    .profile {
        flex-direction: column-reverse;
    }

    .profile_r,
    .profile_l,
    .tex_box,
    .photo_box {
        width: 100%;

    }

    .photo_box {
        margin-bottom: 20px;
    }

    .profile_r {
        margin-bottom: 50px;
    }

    .photo_on:nth-child(1) {
        flex-direction: column-reverse;
    }

    .photo_on:nth-child(2) {
        flex-direction: column;
    }

    .top_right,
    .top_left {
        height: 50vh;
    }

    .top_right li {
        height: 33.3333vh !important;
    }

    .octype .flex_box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .flex_box_line,
    .flex_box_noline,
    .flex_box,
    .tab_content_description .flex_box li,
    .adv_content,
    ul.float_bnr,
    ul.mov_ttl {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .flex_box_line li,
    .flex_box_noline li,
    .adv_content li,
    ul.mov_ttl li:first-child,
    ul.mov_ttl li:last-child {
        width: 100%;
    }

    ul.float_bnr {
        position: static;
    }

    .bnr_come {
        padding: 10px;
        margin-bottom: 5px;
        font-size: 12px;
    }

    .float_bnr_sp li:nth-child(n+2) {
        margin-top: 20px;
    }

    .top_copy ul li h3 {
        font-size: 11px;
    }

    .tab_item {
        width: calc(100%/1) !important;
        float: none;
    }

    .flex_box a:nth-child(n+2) {
        margin-top: 20px;
    }

    .flex_box_line li:nth-child(1) .flex_box p:nth-child(n+2),
    .flex_box_line li:nth-child(2) .flex_box p:nth-child(n+2) {
        margin-top: 15px;
    }

    .flex_box_line li:nth-child(2),
    .adv_content li:nth-child(n+2),
    .flex_box_noline li:nth-child(n+2) {
        margin-top: 50px;
    }

    .adv_ttl {
        font-size: 28px;
    }

    .feat_ttl h3 {
        text-align: center;
    }

    .feat_icon {
        margin: 0 0 10px 0;
        display: inline-block;
    }

    a.menulist {
        font-size: 15px;
    }


    .shop_card li,
    .comedy li,
    .busmap li {
        width: calc(100% / 1 - 0px);
    }

    .shop_card li,
    .comedy li {
        flex-direction: column;
    }

    .prof_l,
    .prof_r {
        width: 100%;
    }

    .prof_l {
        margin-bottom: 20px;
    }

    .shop_card li:nth-child(n+2),
    .comedy li:nth-child(n+2),
    .busmap li:nth-child(n+2) {
        margin-top: 50px !important;
    }

    .busstop {
        display: inherit;
    }

    h2.area_ttl {
        font-size: 4vw;
        padding: 0 40px;
    }

    .tab_content {
        padding: 15px;
    }

    .event_ttl h2 {
        font-size: 20px;
    }

    .map_box img {
        width: 100%;

    }

    .bus_timebox .bus_time,
    .time_table {
        display: block;
        overflow-x: scroll;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .daybox img {
        max-width: 100%;
    }

    .newspaper li {
        width: 100%;
    }

    .newspaper li:nth-child(m+2) {
        margin-top: 20px;
    }

    .newspaper_tex {
        text-align: center;
    }

    .theme_contain_in,
    .points li {
        width: calc(100%);
    }

    .points li:nth-child(n+2) {
        margin-top: 20px;
    }

    .theme_contain_in:nth-child(2) {
        margin-top: 50px;
    }

    .shinnyushi {
        margin: 20px auto;
    }

    .btn_main {
        padding: 15px;
        font-size: 11px;
    }

    .theme_contain .theme_in li p {
        font-size: 13px;
    }

    .theme_contain .theme_in li img {
        width: 27%;
    }

    .theme_contain .theme_in li p {
        width: 71%;
    }

    .accordion-title {
        font-size: 20px;
    }

    /*MAINend---------------------------------------------------------------------*/

    /*FOOTER----------------------------------------------------------------------*/

    .footer_btnbox li {
        width: 100%;
    }

    .footer_btnbox li:last-child {
        margin-top: 20px;
    }

    /*FOOTERend-------------------------------------------------------------------*/

}
