﻿@charset "utf-8";

/*--------------------------------------

  全体

---------------------------------------*/
body * {
    transition: all .2s ease-out;
}
html {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
    font-feature-settings : "palt";
}
body {
    position: relative;
    width: 100%;
    min-height: 100%;
    line-height: 1.5;
    background: #fff2f9;
    color: #444;
    font-size: 1.4rem;
    font-weight: 300;
    font-family: 'Noto Sans Japanese', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-feature-settings : "palt";
    word-wrap: break-word;
    overflow-wrap: break-word;

    /*fotter最下部設定用*/
    display: flex;
    flex-direction: column;
}
hr {
    border-top: solid 1px rgba(100, 100, 100, .2);
}
table th,
table td {
    word-break: break-all;
}

img {
    max-width: 100%;
    height: auto;
}
/*--------------------------------------

  リンク/テキスト

---------------------------------------*/
a {
    color: #444;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
#pickup_news article a,
.balloon_box a {
    color: #3c83d5;
}

/*--------------------------------------

  レイアウト

---------------------------------------*/
.w1040 {
    position: relative;
    width: 1040px;
    max-width: 90%;
    margin: 0 auto;
}
.wrapper {
    background: rgba(224, 226, 244, .7);
    padding: 40px;
}
@media screen and (max-width:640px) {
.w1040 {
    max-width: 100%;
}
header #top_bar .w1040 {
    max-width: 90%;
}
.wrapper {
    padding: 20px;
}
}

section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: solid 1px rgba(100, 100, 100, .2);
}
section:nth-last-of-type(1) {
    margin-bottom: 0;
    border-bottom: none;
}
@media screen and (max-width:640px) {
section {
    margin-bottom: 30px;
    padding-bottom: 20px;
}
}

/*--------------------------------------

  背景

---------------------------------------*/
body.bg_body {
    background-color: #333;
    background-repeat: repeat;
    background-position: center top;
    background-size: 100% auto;
}
/*body.bg_body.pc {
    background-image: url(/img/sample/bg_body-min.png);
}
body.bg_body.sp {
    background-image: url(/img/sample/bg_body_sp-min.png);
}*/

/*--------------------------------------

  ページトップ

---------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 20px;
    z-index: 1;
    transition: unset;
}
#pagetop a {
    display: block;
    right: 10px;
    top: -50px;
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 25px;
    background: rgba(0, 0, 0, .6);
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);
}
#pagetop a:after {
    content: '';
    display: block;
    position: absolute;
    top: 18px;
    left: 16px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
 #pagetop a:hover {
    background: rgba(0, 0, 0, 1);
}

/*--------------------------------------

  タイトル

---------------------------------------*/
.ttl_big {
    margin-bottom: 40px;
    color: #444;
    font-size: 5rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: 6px;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.no_con {
    margin: 0 0 30px;
    text-align: center;
    font-size: 2rem;
}
@media screen and (max-width:640px) {
.ttl_big {
    margin-bottom: 20px;
    font-size: 3rem;
}
.no_con {
    margin: 20px 0;
    font-size: 1.4rem;
}
}

/*--------------------------------------

  ヘッダー

---------------------------------------*/
header #top_bar {
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 32px;
    z-index: 2;
    color: #777;/*ヘッダーテキストカラー*/
    background: #e7cdec;/*ヘッダー背景カラー*/
}
header + .w1040 {/* トップページ以外用 #top_bar の fixed 分プラス */
    padding-top: 62px;
}
header #top_bar.follow {
    box-shadow: 0 1px 6px rgba(0, 0, 0, .3);
}
header #top_bar h1 {
    float: left;
    margin: 6px 0;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
}
header #top_bar h1 a {
    color: #777;
}
/**/
header #top_bar .nav_g {
    float: right;
    margin: 6px 0;
    color: #fff;
}
header #top_bar .nav_g a {
    display: inline-block;
    margin-right: 18px;
    color: #777;
}
header #top_bar .nav_g a.sns {
    display: inline-block;
    margin-right: 0;
    margin-left: 14px;
    color: #777;
}
header #top_bar .nav_g a.sns .icon_svg {
    width: 20px;
    height: 20px;
}
header #top_bar .nav_g a.sns .icon_svg svg {
    width: 32px;
    height: 32px;
    margin: -8px 0 0 -8px;
}
header #top_bar .nav_g a.sns:hover svg {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}
header #top_bar .nav_g_sp {
    display: none;
}
/*SP用ドロワー*/
header #top_bar #nav-drawer {
    display: none;
}
@media screen and (max-width:960px) {
header #top_bar .nav_g {
    display: none;
}
header #top_bar .nav_g_sp {
    display: inline-block;
    position: absolute;
    top: 5px;
    right: 0;
}
header #top_bar .nav_g_sp a svg {
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
} 
header #top_bar #nav-drawer {
    display: block;
}
}
header #top_bar #nav-drawer {
    position: fixed;
    right: 10px;
    top: 36px;
    z-index: 2;
}
header #top_bar .nav-unshown {
    display: none;
}
header #top_bar #nav-open {
    display: inline-block;
    float: right;
    width: 44px;
    height: 44px;
    padding: 13px 11px;
    border-radius: 25px;
    vertical-align: middle;
    background: rgba(255, 255, 255, .8);
    cursor: pointer;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);
}
header #top_bar #nav-open span,
header #top_bar #nav-open span:before,
header #top_bar #nav-open span:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 22px;
    border-radius: 3px;
    background: #555;
    display: block;
    cursor: pointer;
}
header #top_bar #nav-open span:before {
    bottom: -8px;
}
header #top_bar #nav-open span:after {
    bottom: -16px;
}
header #top_bar #nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: .2s all ease-in-out;
}
header #top_bar #nav-input:checked ~ #nav-open {
    opacity: 0;
}
/*
header #top_bar #nav-input:checked ~ #nav-open span {
    height: 0;
}
header #top_bar #nav-input:checked ~ #nav-open span:before {
    top: 8px;
    left: 0;
    transform: rotate(45deg);
}
header #top_bar #nav-input:checked ~ #nav-open span:after {
    top: 8px;
    left: 0;
    transform: rotate(-45deg);
}
*/
header #top_bar #nav-input:checked ~ #nav-close {
    display: block;
    opacity: .5;
    cursor: pointer;
}
header #top_bar #nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    width: 85%;
    max-width: 330px;
    height: 100%;
    background: #fff;
    transition: .3s ease-in-out;
    transform: translateX(105%);
    background: #f6f6f6;
}
header #top_bar #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
    box-shadow: -6px 0 25px rgba(0,0,0,.15);
}
header #top_bar #nav-content h2 {
    padding: 4px 10px 3px 16px;
    color: #777;
    background: #e7cdec;
    font-weight: normal;
    font-size: 1.2rem;
    text-align: left;
}
header #top_bar #nav-content > a {
    position: relative;
    text-align: left;
    display: block;
    padding: 12px 16px;
    background: #fff;
    border-bottom: solid 1px #dcdcdc;
    color: #999;
}
@media screen and (min-width:960px) {
header #top_bar #nav-content h2,
header #top_bar #nav-content > a {
    /*iPhoneX用*/
    /*padding-left: constant(safe-area-inset-left);*/
    padding-left: env(safe-area-inset-left);
}
}
/* TOPとACCESSが同じページなので　current　表示無しに
header #top_bar #nav-content a.current {
    background: #f6f6f6;
}
header #top_bar #nav-content a.current::after {
    content:"";
    position: absolute;
    top: 17px;
    right: 16px;
    display: block;
    border-top: 5px solid transparent;
    border-right: 8px solid #ccc;
    border-bottom: 5px solid transparent;
}*/
header #top_bar #nav-content .sns_group {
    display: block;
    width: 100%;
    margin: 10px 0 20px;
    text-align: center;
}
header #top_bar #nav-content .sns_group a {
    display: inline-block;
    width: 46px;
    height: 46px;
    margin: 0 10px;
    padding: 12px 16px;
    border-radius: 23px;
}
header #top_bar #nav-content .sns_group a:nth-child(1) {
    margin-left: 0;
}
header #top_bar #nav-content .sns_group a:nth-last-child(1) {
    margin-right: 0;
}
header #top_bar #nav-content .sns_group a {
    background: #e7cdec;
    color: #777;
}
header #top_bar #nav-content .sns_group a svg {
    position: relative;
    top: -11px;
    left: -13px;
    width: 40px;
    height: 40px;
}
/**/
.scroll_down {
    display: block;
    position: relative;
    margin: -90px auto 10px;
    width: 80px;
    height: 80px;
}
.scroll_down span {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -23px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    animation: sdb 1.5s infinite;
    -webkit-animation: sdb 1.5s infinite;
    box-sizing: border-box;
}
@-webkit-keyframes sdb {
0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
}
50% {
    opacity: 1;
}
100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
}
}
@keyframes sdb {
0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
}
50% {
    opacity: 1;
}
100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
}
}

/*--------------------------------------

  フッター

---------------------------------------*/
footer {
    position: relative;
    width: 100%;
    margin-top: auto;
    padding: 10px;
    text-align: center;

    /*iphoneX用*/
    /*padding-bottom: constant(safe-area-inset-bottom);*/
    padding-bottom: env(safe-area-inset-bottom);
}
footer .sns {
    margin-top: -26px;
    margin-bottom: 6px;
}
footer .sns li {
    display: inline-block;
}
footer .sns li a {
    overflow: hidden;
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 10px;
    border-radius: 18px;
    color: #777;
    background: #e7cdec;
    box-shadow: 2px 2px 6px 4px rgba(0, 0, 0, .2);
}
footer .sns li a.insta {
    background: 
        radial-gradient(27.64% 101.46%, circle farthest-side, rgba(254, 192, 83, 1) 11.73%, rgba(255, 0, 26, 0.8) 34.95%, rgba(183, 41, 168, 0) 77.29%),
        linear-gradient(120deg, rgba(66, 34, 231, 1) 9.73%, rgba(255, 0, 201, 1) 100%);
    background :
        -moz-radial-gradient(27.64% 101.46%, circle farthest-side, rgba(254, 192, 83, 1) 11.73%, rgba(255, 0, 26, 0.8) 34.95%, rgba(183, 41, 168, 0) 77.29%),
        -moz-linear-gradient(120deg, rgba(66, 34, 231, 1) 9.73%, rgba(255, 0, 201, 1) 100%);
    background :
        -webkit-radial-gradient(27.64% 101.46%, circle farthest-side, rgba(254, 192, 83, 1) 11.73%, rgba(255, 0, 26, 0.8) 34.95%, rgba(183, 41, 168, 0) 77.29%),
        -webkit-linear-gradient(120deg, rgba(66, 34, 231, 1) 9.73%, rgba(255, 0, 201, 1) 100%);
}
footer .sns li a.twitter {
    background : #29a1ee;
}
footer .sns li a.facebook {
    background : #385796;
}
footer .sns .contact a {
    overflow: hidden;
    display: inline-block;
    width: 36px;
    height: 36px;
    margin: 0 10px;
    border-radius: 18px;
    color: #777;
    background: #e7cdec;
}
footer .sns .contact a .icon_svg {
    width: 36px;
    height: 36px;
}
footer .sns .contact a .icon_svg svg {
    margin: -1px 0 0 -1px;
    fill: #777;
}
footer .sns .contact a:hover svg {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}
footer .sns li a .icon_svg {
    width: 36px;
    height: 36px;
}
footer .sns li a:hover svg {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}
footer .info {
    margin-bottom: 30px;
}
footer .info .tel {
    margin-top: 20px;
    font-size: 2.8rem;
}
footer .info .tel em {
    position: relative;
    top: -4px;
    left: -8px;
    font-size: 1.8rem;
}
footer .info .tel a {
    text-decoration: underline;
}
footer .info .tel a:hover {
    text-decoration: none;
}
footer .info .tel i {
    display: inline-block;
    position: relative;
    top: -7px;
    left: 4px;
    font-size: 1.4rem;
}
footer .info .tel p {
    display: block;
    margin: 6px 0;
    font-size: 1.4rem;
}
footer .info .other {
    display: table;
    max-width: 480px;
    width: 96%;
    margin: 0 auto;
    padding-top: 20px;
    text-align: left;
    vertical-align: middle;
}
footer .info .other b {
    display: table-cell;
    margin-right: 10px;
    padding: 0 10px;
    border-right: solid 1px #999;
    width: 80px;
    text-align: right;
    vertical-align: middle;
}
footer .info .other p {
    margin-left: 10px;
    vertical-align: middle;
}
footer .info .other a.chain_shop {
    display: block;
    margin: 10px;
    font-size: 1.2rem;
}
footer .info .other a.chain_shop::after {
    content: "";
    display: block;
    clear: both;
}
footer .info .other a.chain_shop .img_wrapper {
    float: left;
    width: 120px;
    height: 42px;
    margin-right: 10px;
    overflow: hidden;
}
footer .info .other a.chain_shop .img_wrapper img {
    width: 100%;
}
footer .info .other a.chain_shop p {
    float: left;
    line-height: 1.4;
    margin: 6px 0 0 0;
    vertical-align: middle;
}
footer .info .other a.chain_shop:hover .img_wrapper img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
}
footer .info .other a.chain_shop:hover p {
    text-decoration: underline;
}
footer .pokepara {
    margin-bottom: 10px;
}
footer .pokepara a {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    font-size: 1.2rem;
}
footer .pokepara a::before {
    content: "";
    position: absolute;
    top: 4px;
    left: -2px;
    border-style: solid;
    border-width: 3px 0 3px 6px;
    border-color: transparent;
    border-left-color: #007bff;/*フッターテキストカラー*/
}
footer small {
    color: #ccc;
    font-family: 'ヒラギノ角ゴ Pro W3',Helvetica,Verdana,sans-serif;
    font-size: 1.1rem;
    font-weight: lighter;
}
@media screen and (max-width:640px) {
footer .sns {
    position: absolute;
    top: -26px;
    left: 50%;
    width: 100%;
    margin: 0 auto;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
}
footer .sns li a {
    margin: 0 8px 36px 8px;
}
footer .sns .contact a {
    margin: 0 8px 36px 8px;
}
footer .info .tel i {
    display: block;
    position: relative;
    top: -7px;
    left: 0;
    margin-bottom: -30px;
    font-size: 1.2rem;
}
footer .pokepara a {
    font-size: 1.1rem;
}
}
/*@media screen and (max-width:480px) {
footer .info .other {
    width: 280px;
}
}*/

/*--------------------------------------

  パンくず

---------------------------------------*/
#breadcrumb {
    width: 1040px;
    margin: 10px auto 20px;
    font-size: 1.4rem;
}
#breadcrumb a {
    display: inline-block;
    margin-right: 16px;
}
#breadcrumb a:after {
    display: inline-block;
    content: ">";
    position: relative;
    top: -1px;
    left: 10px;
}
#breadcrumb a:hover:after {
    text-decoration: none ;
}

/*--------------------------------------

  スワイパー

---------------------------------------*/
.swiper_pointer_0 span,
.swiper_pointer_1 span,
.swiper_pointer_2 span,
.movie_pointer span,
.swp span {
    display: inline-block;
    margin: 10px;
    font-size: 1rem;
}

/*--------------------------------------
　
  モーダル中身

---------------------------------------*/
.modal_wrapper {
    position: relative;
    width: 70%;
    margin: 20px auto 160px;
}
@media screen and (max-width:640px) {
.modal_wrapper {
    width: 90%;
}
}
.balloon_box {
    padding: 10px 16px;
    line-height: 1.6;
    font-size: 1.2rem;
    vertical-align: middle;
    word-break: break-all;
    color: #000;
	background: #ffffff;
    background: -webkit-linear-gradient( top, #ffffff 0%, #fafafa 100%);
    background: linear-gradient( to bottom, #ffffff 0%, #fafafa 100%);
    border-radius: 2px;
}
.balloon_box strong.ttl  {
    display: block;
    position: relative;
    text-align: left;
    font-size: 1.6rem;
    width: 90%;
    margin-bottom: 20px;
}
.balloon_box p {
    line-height: 1.5;
    margin: 0 10px 20px 10px;
    text-align: left;
    color: #222;
}
@media screen and (max-width:640px) {
.balloon_box img,
.balloon_box iframe {
    max-width: 100% !important;
    height: auto !important;
}
}

/*LINE*/
#modal_line .balloon_box {
    text-align: center;
}
#modal_line p {
    margin: 30px 0 40px 0;
    font-size: 1.2rem;
    text-align: center;
}
#modal_line a {
    display: block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    margin: 40px auto 20px;
    border-radius: 3px;
    color: #fff;
    background: #19bc03;
    font-size: 1.4rem;
    font-weight: bold;
}
#modal_line input[type="text"] {
    margin-left: 6px;
    margin-top: -2px;
}
/*tel*/
#modal_tel .balloon_box {
    text-align: center;
}
#modal_tel a {
    display: block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    margin: 30px auto;
    border-radius: 3px;
    color: #fff;
    background: #4485f5;
    font-size: 1.4rem;
    font-weight: bold;
}
#modal_tel .info {
    margin: -24px 0 30px 0;
    color: #999;
}
/*mail*/
#modal_mail .balloon_box {
    text-align: center;
}
#modal_mail p {
    margin: 30px 0 10px 0;
    font-size: 1.4rem;
    text-align: center;
}
#modal_mail a {
    display: block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto 30px;
    border-radius: 3px;
    color: #fff;
    background: #4485f5;
    font-size: 1.4rem;
    font-weight: bold;
}
/*share*/
#modal_share .balloon_box {
    text-align: center;
}
#modal_share p {
    margin: 30px 0 20px 0;
    font-size: 1.2rem;
    text-align: center;
}
#modal_share a {
    display: block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto 20px;
    border-radius: 3px;
    color: #fff;
    background: #4485f5;
    font-size: 1.4rem;
    font-weight: bold;
}
#modal_share a.line {
    background: #19bc03;
}
#modal_share a.insta {
    background: -moz-linear-gradient(left, #c03280 0%, #e03b65 50%, #e74a51 100%);
    background: -webkit-linear-gradient(left, #c03280 0%, #e03b65 50%, #e74a51 100%);
    background: linear-gradient(left, #c03280 0%, #e03b65 50%, #e74a51 100%);
}
#modal_share a.twitter {
    background: #000;
}
#modal_share a.facebook {
    background: #385796;
}

/*--------------------------------------

  object_fit

---------------------------------------*/
.img_cover {
    object-fit: cover;
    object-position: 50% 0%;
    font-family: 'object-fit: cover; object-position: 50% 0%;' /* IE・Edge対応 */
}
.img_contain {
    object-fit: contain; 
    object-position: 50% 50%;
    font-family: 'object-fit: contain; object-position: 50% 50%;' /* IE・Edge対応 */
}

/*--------------------------------------

  ページング

---------------------------------------*/
.paging {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
}
.paging a {
    min-width: 34px;
    padding: 4px 8px;
    margin: 0 10px;
    border-radius: 50%;
    background: #e7cdec;
    color: #777;
    display: inline-block;
}
.paging a[disabled="disabled"],
.paging adisabled {
    background: #ccc;
    pointer-events: none;
}
.paging a.current {
    background: #777;
    color: #e7cdec;
    pointer-events: none;
}
.paging span {
    background: #ccc;
}
.paging a:hover {
    text-decoration: none;
    background: #f2d3f4;
}
.paging a:nth-child(1),
.paging a:nth-last-of-type(1) {
    float: left;
    margin: 0;
    padding: 2px 16px 6px;
    border-radius: 2px;
    letter-spacing: 3px;
    text-indent: 3px;
    text-align: center;
}
.paging a:nth-last-of-type(1) {
    float: right;
}
@media screen and (max-width:640px) {
.paging {
    margin-bottom: 100px;
}
.paging a {
    display: none;
}
.paging a:nth-child(1),
.paging a:nth-last-of-type(1) {
    display: inline-block;
    width: 40%;
}
}

/*--------------------------------------

  アイコン

---------------------------------------*/
.svg_sprite {
    display: none;
}
.icon_svg {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: middle;
}
svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

/*--------------------------------------

  ボタン

---------------------------------------*/
.bt_more {
    position: relative;
    display: block;
    width: 80%;
    max-width: 240px;
    margin: 20px auto;
    padding: 9px 10px 11px 10px;
    border-radius: 30px;
    background: #e7cdec;
    color: #777;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 4px;
}
.bt_more:hover {
    text-decoration: none;
    background: #f2d3f4;
}
.bt_more_s {
    position: absolute;
    left: 50%;
    bottom: 0;
    display: block;
    width: 70%;
    max-width: 120px;
    margin: 20px auto;
    padding: 0 6px 4px 10px;
    border-radius: 30px;
    color: #777;
    background: #e7cdec;
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 4px;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
}
.bt_more_s.prof {
    background: #fff;
    border: solid 2px #e7cdec;
    color: #e7cdec;
    letter-spacing: 1px;
}
.bt_more_s:hover {
    text-decoration: none;
    border-color: #f2d3f4;
    background: #f2d3f4;
}