html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.8;
}

/*---------------------------------
 グローバルセレクタ
---------------------------------*/
body {
    padding-top: 80px;
    /*ヘッダーの高さ分余白（次の要素がヘッダーに埋まる為）*/
}

a {
    color: #FFFFFF;
    transition: all ease-in-out .3s;
}
a:hover{
    opacity: 0.7;
    transition: all ease-in-out .3s;
}
h1 ,h2{
    color: #FF797E;
    text-align: center;
    font-size: 20px;
    font-family: 'Shippori Mincho';
}
p{
    padding: 0 10px;
}
/*---------------------------------
 特定の文字列に使用
---------------------------------*/
.txt_black {
    color: #4d4d4d;
    font-size: 12px;
    text-align: center;
}

/*---------------------------------
 ローディングアニメ―ション部分
---------------------------------*/
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fcfcff;
    z-index: 9000;
}

#animation {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

#animation img {
    width: 300px;
}

/*---------------------------------
  ぐっとーくヘッダー部分
---------------------------------*/
.gutalk_header {
    position: fixed;
    /*ヘッダー部分を固定*/
    background: #fff;
    top: 0;
    height: 80px;
    width: 100%;
    z-index: 1000;
    /*最前面に表示*/
    padding: 5px;
}

.gutalk_header h1 {
    font-size: 11px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #707070;
    text-align: left;
}

.header_logo {
    width: 185px;
    height: 40px;
}

.header_yoyakubtn {
    display: none;
    /*タブレット＆PC用のボタン 非表示*/
}

.wrap {
    overflow-x: hidden;
}

/*---------------------------------
  トップ画像部分
---------------------------------*/
.main_view img {
    width: 100%;
    /*画像サイズ指定*/
}

.mainview_img_sp {
    display: block !important;
    /*スマホ用トップ画像表示*/
}

.mainview_img_tb {
    display: none !important;
    /*タブレット用トップ画像非表示*/
}

.mainview_img_pc {
    display: none !important;
    /*PC用トップ画像非表示*/
}

/*---------------------------------
  予約ボタン部分
---------------------------------*/
.reserve {
    text-align: center;
    margin-top: 50px;
}

.reserve img {
    width: 60%;
}

/*---------------------------------
  ぐっとーく動画部分
---------------------------------*/
.movie {
    margin: 80px 20px;
}

.movie video {
    width: 100%;
}

/*---------------------------------
  .rain_view部分
---------------------------------*/
.rain_view {
    position: relative;
}

.rain_view img {
    width: 95%;
}

.object img {
    position: absolute;
    top: 32%;
    left: 15%;
}

.object p {
    position: absolute;
    top: 35%;
    left: 30%;
    font-size: 3.5vw;
    color: #FFFFFF;
    line-height: 3;
    font-family: "Shippori Mincho";
}

/*---------------------------------
  あなたも日頃の色々～テキスト部分
---------------------------------*/
.text_banner1 {
    font-size: 4vw;
    text-align: center;
    margin-top: 200px;
    margin-bottom: 150px;
    font-family: "Noto Sans jp";
    color: #707070;
}

/*------------------------------------------------
    rain_view2部分
-------------------------------------------------*/
.rain_view2 {
    position: relative;
    margin-bottom: 100px;
}

.rain_view2 img {
    width: 100%
}

.rain_view2_pc {
    display: none !important;
    /*PC要画像非表示*/
}

.text_list {
    position: absolute;
    width: 100%;
    top: 10%;
    left: 5%;
    font-size: 3vw;
    line-height: 3;
    color: #FFFFFF;
}

.rain_view2 ul {
    list-style: none;
    padding: 0;
}

.rain_view2 li {
    padding-left: 8%;
    background: url(../img/cry.png) left 0px top 50% no-repeat;
    background-size: 4% auto;
}

/*------------------------------------------------
    大丈夫ぐっとーくが聞きます！部分
-------------------------------------------------*/
.gutalk_listen {
    text-align: center;
    margin: 40px 0 40px 0;
}

.gutalk_listen_logo {
    position: relative;
}

.gutalk_listen img {
    width: 80%;
    opacity: 0.3;
    /*透明度*/
}

.gutalk_listen_text {
    position: absolute;
    width: 65%;
    text-align: left;
    /*書式左寄せ*/
    font-size: 3vw;
    line-height: 2;
    font-family: 'Noto Sans jp';
    color: #4d4d4d;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/*-----------------------------------------------------
    1.class "wave_wrapper_pk"の背景色指定とグラデーション
    2.class "wave_wrapper_lpk"の背景色指定とグラデーション
------------------------------------------------------*/
.wave_wrapper_pk {
    background: #ffc3bd;
    background: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #ffc3bd 30%, #ffc3bd 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(rgba(255, 255, 255, 0)), color-stop(30%, #ffc3bd), to(#ffc3bd));
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #ffc3bd 30%, #ffc3bd 100%);
    background: -o-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #ffc3bd 30%, #ffc3bd 100%);
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #ffc3bd 30%, #ffc3bd 100%);
}

.wave_wrapper_lpk {
    background: #fff7f6;
    background: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #fff7f6 30%, #fff7f6 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(rgba(255, 255, 255, 0)), color-stop(30%, #fff7f6), to(#ffc3bd));
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #fff7f6 30%, #fff7f6 100%);
    background: -o-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #808080 30%, #fff7f6 100%);
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #fff7f6 30%, #fff7f6 100%);
}

.bg_pink {
    background-image: url(../img/bk_wave_pink.png);
    background-repeat: no-repeat;
    background-size: contain;
    color: #fff;
}

.bg_lp {
    background-image: url(../img/bk_wave_lightpink.png);
    background-repeat: no-repeat;
    background-size: contain;
    color: #FF797E;
}

.bg_lp2 {
    background-image: url(../img/bk_wave_lightpink02.png);
    background-repeat: no-repeat;
    background-size: contain;
    color: #FF797E;
}

.bg_white {
    background-image: url(../img/bk_wave_white.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.wave01,
.wave02,
.wave03 {
    position: relative;
    padding: 20% 0 40px 0;
    height: 380px;
}


.wave02,
.wave03,
.wave04 {
    margin-top: -200px;
}

.ather {
    padding-bottom: 200px;
}

.wave04 {
    position: relative;
    padding-top: 170px;
}

.annotation {
    font-size: 12px;
}

.wave05 {
    position: relative;
    padding: 120px 0 220px 0;
    margin-top: -200px;
}

.wave06 {
    height: 20vh;
    margin-top: -120px;
}

.wave07 {
    position: relative;
    padding-top: 80px;
    z-index: 10;
}

.wave08 {
    margin-top: -200px;
    padding-top: 80px;
}

.wave_text {
    max-width: 520px;
    padding: 0 20px;
    margin: 0 auto;
}

.wave_text h3 {
    font-family: 'Shippori Mincho';
}

.wave_text p {
    font-family: 'Noto Sans jp';
    padding: 0;
}

.absolute {
    position: relative;
}

.absolute_picture {
    width: 70%;
}

.absolute_text {
    font-family: 'Shippori Mincho';
    position: absolute;
    top: 0;
    left: 50%;
}

.absolute_text h3 {
    font-size: 4vw;
    color: #60BDE0;
}

.absolute_text p {
    font-size: 3.5vw;
    color: #707070;
}

/*-----------------------------------------------------
    class "blue_box" 部分
------------------------------------------------------*/
.blue_box {
    margin: 0 auto;
    margin-top: -30px;
    margin-bottom: 60px;
    width: 90%;
    height: auto;
    background: transparent linear-gradient(180deg, #68D2FA 0%, #0089FF 100%) 0% 0% no-repeat padding-box;
    /*グラデーション*/
    opacity: 0.7;
    /*透明度*/
    color: white;
    /*テキストカラー*/
}

.text_list2 {
    display: flex;
    /*リスト横並び*/
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: 'Noto Sans jp';
}

.blue_box ul {
    list-style: none;
    /*リストマーカー非表示*/
    padding: 0;
    /*非表示にしたマーカーの余白消し*/
    width: 75%;
}

.blue_box li {
    background: url(../img/smile.png) left 0px top 50% no-repeat;
    background-size: 5% auto;
    margin: 30px 0;
    padding-left: 8%;
}

/*-----------------------------------------------------
    …などなど、ぐっTALKがお聞きします 部分
------------------------------------------------------*/
.agree {
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Noto Sans jp';
}

.agree h3 {
    font-size: 16px;
    color: #0089FF;
}

.agree p {
    display: inline-block;
    text-align: left;
    font-size: 12px;
    max-width: 330px;
    color: #4D4D4D;
}

/*-----------------------------------------------------
    ぐっTALKのご利用方法部分
------------------------------------------------------*/

.wave_use_text h1 {
    margin-top: 50px;
    margin-bottom: 70px;
}

.maru {
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #FF797E;
    font-size: 24px;
    font-family: 'Noto Sans JP';
    line-height: 1.6;
}

.use_contents {
    font-family: 'Noto Sans JP';
    width: 80%;
    margin: 0 auto;
}

/*-----------------------------------------------------
    よくあるご質問部分
------------------------------------------------------*/
.questions_box {
    font-family: 'Noto Sans JP';
    max-width: 500px;
    margin: 0 auto;
}
.questions h2 {
    margin-top: -40vh;
    position: relative;
        padding-bottom: 20px;
}
.toggle_contents {
    border: 1px solid #FFA39B;
    margin: 0 auto;
    margin: 40px 10px 40px 10px;
}

.toggle_title {
    position: relative;
    padding: 15px 35px 15px 15px;
    cursor: pointer;
    text-align: left;
    color: white;
    background-color: #FF797E;
}

.toggle_btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: #FF797E;
    display: block;
    width: 24px;
    height: 24px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
}

.toggle_btn:before,
.toggle_btn:after {
    position: absolute;
    display: block;
    content: '';
    background-color: #fff;
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.toggle_btn:before {
    width: 2px;
    height: 10px;
}

.toggle_title.selected .toggle_btn:before {
    content: normal;
}

.toggle_contents dd {
    display: none;
    margin: 20px;
}

.toggle_contents ul {
    list-style-type: none;
    padding: 0;
}
.toggle_contents ul li{
    color: #4d4d4d;
}
.toggle_contents ul li a{
    color: #FF797E;
}
.toggle_contents ul li p{
    padding: 0;
}
.toggle_contents ul li p img{
    width: 100%;
}
/*-----------------------------------------------------
    聞き手一覧部分
------------------------------------------------------*/
.staff_box {
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 100px;
}

.staff_box h2 {
    text-align: center;
    padding-top: 50px;
    margin-bottom: 50px;
}

.staff_list {
    display: flex;
    max-width: 350px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: space-evenly;
}

.staff {
    margin: 10px;
}

.circle {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.circle img{
    overflow: hidden;
}
/*-----------------------------------------------------
    今月の空き状況部分
------------------------------------------------------*/
.openings {
    text-align: center;
}

.openings h2 {
    margin-bottom: 40px;
}

.calendar {
    width: 80%;
    border: solid 1px #ffc3bd;
    box-shadow: #FFA39B 0 0 10px;
}

/*-----------------------------------------------------
    ロゴ画像部分
------------------------------------------------------*/
.logo {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.under_logo {
    width: 20%;
}

/*-----------------------------------------------------
    フッター部分
------------------------------------------------------*/
footer {
    width: 100%;
    background: transparent linear-gradient(309deg, #FD9487 0%, #FFEDEB 100%) 0% 0% no-repeat padding-box;
}

.company {
    max-width: 780px;
    margin: 0 auto;
    padding: 50px 0 50px 0;
    text-align: center;
    line-height: 3;
    color: #FFFFFF;
    font-family: "Noto Sans Javanese";
}

.company p {
    margin-bottom: 50px;
}

.company ul {
    list-style: none;
    padding: 0;
}

.company a:visited {
    color: inherit;
}

.copyright {
    background: #FF797E;
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
    padding: 5px;
}

.reservation_btn {
    position: fixed;
    right: -20px;
    bottom: 10px;
    z-index: 999;
}

.reservation_btn img {
    width: 50%;
}

.reservation_btn:hover {
    opacity: 0.85;
}

/*背景調整*/
@media screen and (max-width:340px) {
    .wave01,
.wave02,
.wave03 {
    height: 480px;
}
}

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

    /*画面サイズ430px以下のグラデーション調整*/
    .wave_wrapper_lpk {
        background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #fff7f6 15%, #fff7f6 100%);
    }
    .blue_box ul{
        width: 90%;
    }
}

@media screen and (min-width:600px) {

    /*↓画面サイズ600px以上の共通デザイン↓*/
    /*---------------------------------
     ヘッダ―共通部分
    ---------------------------------*/
    .header_text {
        position: relative;
    }

    .header_yoyakubtn {
        display: block;
        /*ヘッダー内予約ボタン非表示 → 表示に切り替え*/
        position: absolute;
        right: 20px;
        bottom: 0;
    }

    .header_logo {
        width: 185px;
        height: 40px;
    }

    .header_yoyakubtn img {
        width: 260px;
        height: 60px;
    }

    /*---------------------------------
     トップ画像
    ---------------------------------*/
    .mainview_img_sp {
        display: none !important;
        /*スマホ用のトップ画像非表示*/
    }

    .reserve {
        display: none;
        /*トップ画像下の予約ボタン非表示*/
    }

    .absolute_text h3 {
        font-size: 18px;
    }

    .absolute_text p {
        font-size: 16px;
    }

    /*---------------------------------
     footer内予約ボタン位置指定して表示
    ---------------------------------*/
    .company {
        position: relative;
        /*親要素*/
    }

    .reservation_btn {
        position: absolute;
        /*親要素を基準に配置*/
        bottom: 0;
    }
}

@media screen and (min-width:600px) and (max-width:780px) {

    /*↓画面サイズ600px～780px↓*/
    .mainview_img_tb {
        display: block !important;
        /*タブレット用トップ画像表示に切り替え*/
    }

    .rain_view img {
        margin-left: 100px;
        width: 50%;
    }

    .object img {
        width: 50%;
    }

    .object p {
        left: 38%;
        font-size: 2vw;
    }

    .text_banner1 {
        font-size: 16px;
    }

    .rain_view2 {
        max-width: 480px;
        margin: 0 auto;
        margin-bottom: 100px;
    }

    .rain_view2 img {
        width: 480px;
        height: 380px
    }

    .text_list {
        width: 480px;
        font-size: 16px;
        top: 5%;
        left: 8%;
        text-align: left;
        line-height: 3;
    }

    .rain_view2 li {
        padding-left: 8%;
        background: url(../img/cry.png) left 0px top 50% no-repeat;
        background-size: 5% auto;
    }

    .gutalk_listen img {
        width: 40%;
    }

    .gutalk_listen_text {
        width: 60%;
        font-size: 16px;
    }

    .questions h1 {
        padding-top: 50px;
    }

    .bg_pink {
        background-size: 100%;
    }

    .wave_text {
        position: absolute;
        top: 120px;
        left: 5%;
        right: 5%;
        line-height: 2;
    }

    .absolute {
        margin-top: 40px;
    }

    .absolute_picture {
        width: 415px;
        height: 300px;
        margin-left: 15px;
    }

    .absolute_text {
        right: 10%;
        line-height: 2;
    }

    .blue_box {
        width: 80%;
    }

    .agree p {
        width: 60%;
    }

    .wave_use_text h1 {
        margin-top: 80px;
    }

    .use_contents {
        width: 60%;
    }

    .toggle_contents {
        margin: 40px auto 40px auto;
    }

    .under_logo {
        width: 20%;
    }
}

@media screen and (min-width:781px) {
    /*画面サイズ781px～（PC用）*/

    /*h1のフォントサイズ統一*/
    h1 {
        font-size: 32px;
    }

    /*ヘッダーのテキストボックス幅*/
    .header_text {
        max-width: 980px;
        margin: 0 auto;
    }

    /*トップ画像*/
    .mainview_img_pc {
        display: block !important;
        ;
        /*PC用トップ画像表示に切り替え*/
    }

    /*動画サイズ*/
    .movie {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    /*---------------------------------
      .rain_view部分
    ---------------------------------*/
    .rain_view {
        width: 50%;
        margin: 0 auto;
    }

    .rain_view img {
        width: 50%;
    }

    .object p {
    font-size: 1.2vw;
    top: 50%;
    left: 50%;
    text-align: left;
    line-height: 2.5;
    }

    .object img {
        width: 60%;
        top: 40%;
        left: 40%;
    }

    /*---------------------------------
      あなたも日頃の色々～テキスト部分
    ---------------------------------*/
    .text_banner1 {
        margin-top: 250px;
        margin-bottom: 250px;
        font-size: 16px;
    }

    /*---------------------------------
      .rain_view2部分
    ---------------------------------*/
    .rain_view2 {
        text-align: center;
    }

    .rain_view2_pc {
        display: block !important;
        /*PC用画像表示*/
    }

    .rain_view2_sp {
        display: none !important;
        /*スマホ用画像非表示*/
    }

    .text_list {
        text-align: left;
    font-size: 1.4vw;
    top: 3%;
    left: 35%;
    line-height: 2.5;
    }

    .rain_view2 li {
        padding-left: 2%;
        background-size: 1%;
    }

    /*---------------------------------
      大丈夫ぐっとーくが聞きます！部分
    ----------------------------------*/
    .gutalk_listen_logo {
        margin-top: 220px;
        position: static;
    }

    .gutalk_listen_text {
        width: 60%;
        font-size: 16px;
        text-align: center;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .gutalk_listen_subtext {
        display: block;
    }

    .gutalk_listen img {
        width: 10%;
        opacity: 1;
    }

    /*---------------------------------
      グラデーション部分
    ----------------------------------*/
    .wave_wrapper_pk {
        background: #ffc3bd;
        background: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #ffa59d 30%, #ffa59d 100%);
        background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(rgba(255, 255, 255, 0)), color-stop(30%, #ffa59d), to(#ffa59d));
        background: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #ffa59d 30%, #ffa59d 100%);
        background: -o-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #ffa59d 30%, #ffa59d 100%);
        background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), #ffa59d 30%, #ffa59d 100%);
    }

    .bg_pink {
        background-image: url(../img/bk_wave_pink_pc.png);
        background-repeat: no-repeat;
        background-size: contain;
        color: #fff;
    }

    .bg_lp {
        background-image: url(../img/bk_wave_lightpink_pc.png);
        background-repeat: no-repeat;
        background-size: contain;
        color: #FF797E;
    }

    .bg_lp2 {
        background-image: url(../img/bk_wave_lightpink02_pc.png);
        background-repeat: no-repeat;
        background-size: contain;
        color: #FF797E;
    }
    .wave01 ,.wave02 ,.wave03 {
    padding: 10% 0;
    }
    .wave_text h3{
        font-size: 24px;
    }
    .wave_text p{
        font-size: 16px;
    }

    .bg_white {
        background-image: url(../img/bk_wave_white_pc.png);
        background-repeat: no-repeat;
        background-size: contain;
    }
    .wave04{
        padding-top: 120px;
    }
    .absolute_picture {
        width: 40%;
        height: auto;
        margin-left: 10%;
    }
        .absolute_text h3{
        font-size: 24px;
    }

    .absolute_text {
        top: 10px;
        left: 50%;
    }


    /*---------------------------------
      .blue_box部分
    ----------------------------------*/
    .blue_box {
        margin-top: -8px;
        width: 70%;
        max-width: 780px;
    }

    .blue_box li {
    background-size: 3% auto;
    padding-left: 6%;
    margin: 20px 0;
}

    /*---------------------------------------
      …などなど、ぐっTALKがお聞きします 部分
    ----------------------------------------*/
    .agree p {
        width: 52%;
    }
        .agree h3 {
font-size: 24px;    }

    .wave_text {
        padding: 0;
    }

    .annotation {
        font-size: 12px;
    }

    /*---------------------------------
      ぐっTALKのご利用方法部分
    ----------------------------------*/
    .wave_use_text {

    margin-top: 20px;
}
    }

    .use_contents {
        max-width: 480px;
    }

    /*---------------------------------
      よくあるご質問部分
    ----------------------------------*/

    .wave06 {
    height: 55vh;
    position: relative;
    top: -50px;
}
    .questions h1 {
        margin-top: -40vh;
        position: relative;
}


    /*---------------------------------
      聞き手一覧部分
    ----------------------------------*/
.wave07 {
    margin-top: 8vh;
}
.staff_box h1{
    padding-top: 10vh;
}
.staff_list {
        max-width: 550px;
    }

    .circle {
        width: 120px;
        height: 120px;
    }
.bg_white02{
    background-image: url(../img/bk_wave_white.png);
    background-repeat: no-repeat;
    background-size: cover;
}
    /*---------------------------------
      ロゴ画像部分
    ----------------------------------*/
    .under_logo {
        width: 10%;
        max-width: 120px;
    padding-top: 10%;
    }

@media screen and (min-width:857px) {
    .blue_box ul{
        width: 410px;
    }
}
@media screen and (min-width:1120px) {
    .bg_lp , .bg_pink ,.bg_lp2{
        background-size: cover;
        padding-top: 180px;
    }
    .wave01, .wave02, .wave03 {
    padding: 8% 0 5% 0;
}
    .bg_lp2.wave07 {
    background-size: contain;
    padding-top: 100px;
}
    .under_logo {
    padding-top: 8%;
}
