@charset 'UTF-8';
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');

/*--------------------------------------
  Reset Css
---------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
address,
code,
em,
img,
small,
strong,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
embed,
figure,
figcaption,
footer,
header,
nav,
section,
summary,
time,
audio,
video,
input,
button,
textarea,
select
{
    font-size: 100%;

    margin: 0;
    padding: 0;

    vertical-align: baseline; 

    border: 0;
}

ol,
ul
{
    list-style: none;
}

table
{
    border-spacing: 0; 
    border-collapse: collapse;
}

blockquote,
q
{
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after
{
    content: none;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video
{
    font-family: 'Roboto','ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN','Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; 
    font-size: 100%;
    line-height: 1;

    margin: 0;
    padding: 0;

    vertical-align: baseline;

    border: 0;
    outline: 0;
    background: transparent;
}

/*--------------------------------------
  Common-Setting
---------------------------------------*/
html
{
    font-size: 10px;

    overflow-y: scroll;
}

body
{
    font-size: 1.4rem;
    line-height: 1;

    overflow-y: hidden; 

    width: 100%;
    min-width: 320px;

    word-wrap: break-word;

    color: #000;
    background: #fff;

    -webkit-text-size-adjust: 100%;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@media print, screen and (min-width: 768px)
{
    body
    {
        overflow: auto; 

        min-width: 1200px;
    }
}
body.is-fixed
{
    position: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6
{
    line-height: 1.4;
}

img
{
    max-width: 100%;
    height: auto; 

    vertical-align: top;
}

input,
button,
textarea,
select
{
    border: none;
    border-radius: 0;
    outline: none;
    background: none;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    -moz-outline-style: none;
}
select::-ms-expand {
    display: none;
}
input ::-moz-focus-inner,
button ::-moz-focus-inner,
textarea ::-moz-focus-inner,
select ::-moz-focus-inner
{
    border: none;
}

label
{
    cursor: pointer;
}

strong
{
    font-weight: bold;
}

em
{
    font-style: italic;
}

a
{
    transition: opacity .3s; 
    text-decoration: none;

    color: #333;
}

a:hover
{
    opacity: .7;
}

*
{
    box-sizing: border-box;
}

*:before,
*:after
{
    box-sizing: border-box;
}

@media print, screen and (min-width: 768px)
{
    .sp-break
    {
        display: none;
    }
}

.pc-break
{
    display: none;
}
@media print, screen and (min-width: 768px)
{
    .pc-break
    {
        display: block;
    }
}

/* togglemenu */
.menu-trigger
{
    position: relative;
    top: 1px; 

    width: 25px;
    height: 20px;
}

@media print, screen and (min-width: 768px)
{
    .menu-trigger
    {
        display: none;
    }
}

.menu-trigger span
{
    display: inline-block;

    box-sizing: border-box; 

    transition: all .2s;
}

.menu-trigger span
{
    position: absolute;
    left: 0;

    width: 23px;
    height: 2px;

    background-color: #fff;
}

.menu-trigger span:nth-of-type(1)
{
    top: 0;
}

.menu-trigger span:nth-of-type(2)
{
    top: 8px;
}

.menu-trigger span:nth-of-type(3)
{
    top: 16px;
}

.menu-trigger.is-active span:nth-of-type(1)
{
    -webkit-transform: translateX(0px) translateY(8px) rotate(-45deg);
        -ms-transform: translateX(0px) translateY(8px) rotate(-45deg);
            transform: translateX(0px) translateY(8px) rotate(-45deg);
}

.menu-trigger.is-active span:nth-of-type(2)
{
    opacity: 0;
}

.menu-trigger.is-active span:nth-of-type(3)
{
    -webkit-transform: translateX(0px) translateY(-8px) rotate(45deg);
        -ms-transform: translateX(0px) translateY(-8px) rotate(45deg);
            transform: translateX(0px) translateY(-8px) rotate(45deg);
}

.main-container
{
    padding-bottom: 75px;
}
.main-container.top
{
    padding-top: 55px;
}
@media print, screen and (min-width: 768px)
{
    .main-container
    {
        padding-bottom: 145px;
    }
    .main-container.top
    {
        padding-top: 85px;
    }
}

.section-small
{
    margin-bottom: 30px;
}
@media print, screen and (min-width: 768px)
{
    .section-small
    {
        margin-bottom: 60px;
    }
}

.section-middle
{
    margin-bottom: 75px;
}
@media print, screen and (min-width: 768px)
{
    .section-middle
    {
        margin-bottom: 120px;
    }
}

.l-inner
{
    margin: 0 12px;
}
@media print, screen and (min-width: 768px)
{
    .l-inner
    {
        max-width: 1300px;
        margin: 0 auto; 
        padding: 0 50px;
    }
}

.l-heading
{
    margin-bottom: 15px; 

    text-align: center;
}
.l-heading--article
{
    margin-bottom: 40px;
}
.l-heading span
{
    display: block;
}
.l-heading-en
{
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;

    margin-bottom: 8px;
}
.l-heading-en--nomb
{
    margin-bottom: 0;
}
.l-heading-ja
{
    font-family: 'Noto Sans JP'; 
    font-size: .9rem;
    font-weight: normal;
}
@media print, screen and (min-width: 768px)
{
    .l-heading
    {
        margin-bottom: 40px;
    }
    .l-heading--article
    {
        margin-bottom: 60px;
    }
    .l-heading-en
    {
        font-size: 2.4rem;

        margin-bottom: 12px;
    }
    .l-heading-ja
    {
        font-size: 1.2rem;
    }
}

.l-text
{
    font-size: 1.2rem;
    line-height: 1.5;
}
.l-text a
{
    text-decoration: underline; 

    color: #3189ae;
}
@media print, screen and (min-width: 768px)
{
    .l-text a:hover
    {
        text-decoration: none;
    }
}
@media print, screen and (min-width: 768px)
{
    .l-text
    {
        font-size: 1.6rem;
        line-height: 1.88;
    }
}

.btn,
.more-btn
{
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 40px; 

    display: block;

    width: 192px;
    height: 40px;
    margin: 0 auto;

    text-align: center;

    border: 1px solid #777;
    background: #fff;
}
@media print, screen and (min-width: 768px)
{
    .btn,
    .more-btn
    {
        font-size: 1.6rem;
        line-height: 50px;

        position: relative; 

        width: 240px;
        height: 50px;

        cursor: pointer;
        transition: all .2s;

        outline: none;
    }
    .btn:hover,
    .more-btn:hover
    {
        opacity: 1;
        color: #1d2088;
    }
    .btn::after,
    .btn::before,
    .more-btn::after,
    .more-btn::before
    {
        position: absolute;
        z-index: 2;

        width: 0;
        height: 0;

        content: '';

        border: 2px solid transparent;
    }
    .btn::before,
    .more-btn::before
    {
        top: 0;
        left: 0;
    }
    .btn::after,
    .more-btn::after
    {
        right: 0; 
        bottom: 0;
    }
    .btn:hover::after,
    .btn:hover::before,
    .more-btn:hover::after,
    .more-btn:hover::before
    {
        width: 100%;
        height: 100%;
    }
    .btn:hover::before,
    .more-btn:hover::before
    {
        transition: width .2s, height .2s .2s; 

        border-top-color: #1d2088;
        border-right-color: #1d2088;
    }
    .btn:hover::after,
    .more-btn:hover::after
    {
        transition: border-color 0s ease-out .4s, width .2s .4s, height .2s .6s; 

        border-bottom-color: #1d2088;
        border-left-color: #1d2088;
    }
}

.btn--googlemap
{
    background: url(../images/shop/icon_pin.png) no-repeat left 30px center/11px auto;
}
@media print, screen and (min-width: 768px)
{
    .btn--googlemap
    {
        background: url(../images/shop/icon_pin.png) no-repeat left 40px center/18px auto;
    }
}

@media print, screen and (min-width: 768px)
{
    .btn--shop
    {
        font-weight: normal;

        margin: 0;

        background: url(../images/common/icon_arrw_small.png) no-repeat right 18px center;
    }
}

#breadcrumb
{
    max-width: 1300px;
    margin: 0 auto; 
    padding: 15px 12px 40px;
}
#breadcrumb li
{
    font-size: 1.0rem; 

    display: inline;
}
@media print, screen and (min-width: 768px)
{
    #breadcrumb
    {
        padding: 30px 50px 70px;
    }
}

.l-lead
{
    margin-bottom: 45px; 

    text-align: center;
}

@media print, screen and (min-width: 768px)
{
    .sp-visible
    {
        display: none !important;
    }
}

.pc-visible
{
    display: none;
}
@media print, screen and (min-width: 768px)
{
    .pc-visible
    {
        display: block;
    }
}

/* footer */
.footer
{
    /*overflow: hidden;*/

    padding: 30px 0 20px; 
	position: relative;
    background: #eee;
}
.footer-inner
{
    margin: 0 10%;
}
.footer .copy
{
    font-size: .7rem;

    text-align: center;
}

.btn-top {
    position: absolute;
    right: 10px;
    top: -80px;
}

.btn-top img {
    width: 28px;
}

@media print, screen and (min-width: 768px)
{
    .footer
    {
        padding: 55px 0 20px;
    }
    .footer-inner
    {
        max-width: 1200px; 
        margin: 0 auto;
        padding: 0 50px;
    }
    .footer .copy
    {
        font-size: 1.0rem;

        text-align: center;
    }
    
    .btn-top {
	    position: absolute;
		right: 60px;
		top: -90px;
		bottom: inherit;
    }
    
    .btn-top img {
	    width: 30px;
    }
    
}

@media print, screen and (min-width: 768px)
{
    .sitemap-group
    {
        display: -ms-flexbox;
        display: flex;

        /*margin-right: -60px; */

        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .sitemap-group .sitemap-block:last-child
    {
        display: none;
    }
    .sitemap-group .sitemap-block:not(:nth-last-child(2))
    {
        margin-right: 60px;
    }
}

.sitemap-block
{
    margin-bottom: 45px;
}
.sitemap-block .icon-newwindow
{
    display: inline-block;

    width: 13px;
    margin-left: 8px; 

    vertical-align: middle;
}
@media print, screen and (min-width: 768px)
{
    .sitemap-block
    {
        margin-bottom: 40px;
    }
    .sitemap-block:not(.sitemap-block-btn)
    {
        width: 170px;
    }
    .sitemap-block-btn
    {
        margin-bottom: 30px; 

        text-align: center;
    }
    .sitemap-block-btn .sitemap-block-ttl
    {
        display: none;
    }
}

.sitemap-block-ttl
{
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;

    margin-bottom: 20px; 
    padding: 0 5px 12px;

    border-bottom: 1px solid #1d2088;
}

.sitemap-list
{
    padding: 0 5px;
}
@media print, screen and (min-width: 1000px)
{
    .sitemap-list
    {
        padding: 0;
    }
}

.sitemap-list li
{
    font-size: 1.2rem;
    line-height: 1.4;
}
.sitemap-list li:not(:last-child)
{
    margin-bottom: 18px;
}

.sitemap-block-btn
{
    margin-bottom: 50px;
}

.sitemap-btn-group
{
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 20px; 
    padding: 0 5px;

    -ms-flex-pack: center;
    justify-content: center;
}
.sitemap-btn-group > li
{
    width: calc(50% - 15px);
    max-width: 109px;
}
.sitemap-btn-group > li:first-child
{
    margin-right: 30px;
}

.sitemap-btn-text
{
    font-size: 1.2rem;
    line-height: 1.5;
}

.footer-bottom
{
    margin-bottom: 38px;
}

.footer-sns
{
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 45px; 

    -ms-flex-pack: center;
    justify-content: center;
}
@media print, screen and (min-width: 1000px)
{
    .footer-sns
    {
        position: absolute;
        top: 50%;
        left: 0;

        -webkit-transform: translate(0, -50%);
            -ms-transform: translate(0, -50%);
                transform: translate(0, -50%);
    }
}
@media print, screen and (min-width: 1000px)
{
    .footer-sns
    {
        margin-bottom: 0;
    }
}
.footer-sns li
{
    text-align: center;
}
.footer-sns li:not(:last-child)
{
    margin-right: 60px;
}
.footer-sns li img
{
    width: 30px;
}
@media print, screen and (min-width: 768px)
{
    .footer-sns li.footer-sns-line
    {
        display: none;
    }
    .footer-sns li:not(:last-child)
    {
        margin-right: 30px;
    }
    .footer-sns li img
    {
        width: 26px;
    }
    .footer-sns li.footer-sns-instagram .footer-sns-text
    {
        display: none;
    }
    .footer-sns li.footer-sns-blog a
    {
        display: -ms-flexbox;
        display: flex;
            flex-direction: row-reverse;

        -ms-flex-direction: row-reverse;
        -ms-flex-align: center;
        align-items: center;
    }
}
.footer-sns-text
{
    font-family: 'Roboto', sans-serif;
    font-size: 1.0rem;
    font-weight: bold;

    margin-bottom: 10px;
}
@media print, screen and (min-width: 768px)
{
    .footer-sns-text
    {
        margin-bottom: 0;
        margin-left: 8px;
    }
}

.footer-logos
{
    display: -ms-flexbox;
    display: flex;

    -ms-flex-pack: center;
    justify-content: center;
}
.footer-logos--taxfree
{
    width: 111px;
    margin-right: 30px;
}
@media print, screen and (min-width: 768px)
{
    .footer-logos--taxfree
    {
        margin-right: 14px;
    }
}
.footer-logos--aacd
{
    width: 75px;
}
@media print, screen and (min-width: 1000px)
{
    .footer-logos
    {
        position: absolute;
        top: 50%;
        right: 0;

        -webkit-transform: translate(0, -50%);
            -ms-transform: translate(0, -50%);
                transform: translate(0, -50%);
    }
}

.onlineshop-btn
{
    display: none;
}
@media print, screen and (min-width: 768px)
{
    .onlineshop-btn
    {
        line-height: 60px; 

        display: block;

        width: 360px;
        height: 60px;
        margin: 0 auto 30px;

        text-align: center;

        color: #fff;
        background: #1d2088;
    }
}
@media print, screen and (min-width: 1000px)
{
    .onlineshop-btn
    {
        margin-bottom: 0;
    }
}

@media print, screen and (min-width: 1000px)
{
    .footer-bottom
    {
        position: relative;
    }
}

/* header */
.pc-globalnav
{
    display: none;
}



@media print, screen and (min-width: 768px)
{
    .pc-globalnav
    {
        position: absolute;
        z-index: 100;
        top: 60px;
        right: 0;
        left: 0;

        display: block;
        overflow: visible; 

        width: 100%;
        min-width: 1200px;

        background: #000;
    }
    .pc-globalnav.is-fixed
    {
        position: fixed;
    }
    .pc-globalnav-wrapper
    {
        position: relative;
        z-index: 100; 

        height: 140px;
        margin-top: -60px;
    }
    
    .pc-globalnav a
    {
        font-family: 'Roboto', sans-serif;
        font-family: 'Noto Sans JP';
        font-size: 1.3rem;
        font-weight: bold;
        line-height: 80px;
        height: 80px; 
        color: #fff;
        padding: 30px 30px;
    }
    
    .pc-globalnav a.menu-title {
	    pointer-events: none;
    }
    
    .js-menuTrigger {
	    position: relative;
    }
    
    .menu-title:hover {
		background: #333333;
		opacity: 1!important;  
    }
    
    .menu-title.active {
		background: #333333;
		opacity: 1!important;  
    }
    
    .megamenu-list {
	    padding: 10px 0;
    }
    
    .menu-contents {
	    display: none;
	    z-index: 150;
	    position: absolute;
	    top: 100%;
	    left: 0;
	    background: #333333;
	    color: #000;
	    text-align: left;
	    width: 100%;

	}
	
	.megamenu-item a {
	    padding: 10px 20px;
	    line-height: 1.7;
		height: auto;
        display: block;
	}
    
    .pc-globalnav-inner
    {
        min-width: 1200px;
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 20px;

        background: #000;
    }
    .pc-globalnav-list
    {
        display: -ms-flexbox;
        display: flex;

        width: 100%;

        -ms-flex-pack: justify;
        justify-content: space-between;
        
        white-space: nowrap;
    }
   
}

@media print, screen and (max-width: 1199px) {
	
    .pc-globalnav-inner
    {
        padding: 0;
    }
	
	.pc-globalnav a {
		padding: 30px 30px;
	}
}

.sp-globalnav
{
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: none;
    overflow: scroll;

    width: 100%;
    height: 100%;
    padding: 35px 0 50px; 

    background: #eee;
}
@media print, screen and (min-width: 768px)
{
    .sp-globalnav
    {
        display: none !important;
    }
}
.sp-globalnav-close
{
    position: absolute;
    top: 15px;
    left: 20px; 

    width: 20px;
}
.sp-globalnav-close-btn
{
    font-size: 1.2rem;
    line-height: 40px;

    width: 200px;
    height: 40px;
    margin: 0 auto; 

    text-align: center;

    border: 1px solid #ccc;
    background: #fff;
}
.sp-globalnav-close-btn span
{
    position: relative;

    display: inline-block;

    padding-left: 18px;
}
.sp-globalnav-close-btn span::before,
.sp-globalnav-close-btn span::after
{
    position: absolute;
    top: 50%;
    left: 0;

    display: block;

    width: 12px;
    height: 1px;

    content: '';

    background: #000;
}
.sp-globalnav-close-btn span::after
{
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.sp-globalnav-close-btn span::before
{
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.sp-globalnav-logo
{
    width: 93px;
    margin: 0 auto 30px;
}
.sp-globalnav .cv-btn
{
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 45px;

    display: block;

    width: 270px;
    height: 45px;
    margin: 0 auto 50px; 

    text-align: center;

    color: #fff;
    background: #1d2088;
}
.sp-globalnav-category-group
{
    margin: 0 0 50px;
}
.sp-globalnav-category:not(:last-child)
{
    margin-bottom: 25px;
}
.sp-globalnav-category-ttl
{
    font-family: 'Roboto', sans-serif;
    font-family: 'Noto Sans JP';
    font-weight: bold;

    padding: 0 12px 18px;

    border-bottom: 1px solid #1d2088;
}
.sp-globalnav-category-ttl + .sitemap-btn-group
{
    margin-top: 25px;
}
.sp-globalnav-list li
{
    border-bottom: #ddd 1px solid;
}
.sp-globalnav-list li a
{
    font-size: 1.1rem;
    line-height: 40px;

    position: relative; 

    display: block;

    height: 40px;
    padding: 0 12px;
}
.sp-globalnav-list li a:not(.link-newwindow)::after
{
    position: absolute;
    top: 50%;
    right: 12px;

    display: block;

    width: 8px;
    height: 8px;
    margin-top: -2px; 

    content: '';
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);

    border-top: 1px solid #1d2088;
    border-right: 1px solid #1d2088;
}
.sp-globalnav-list li a.link-newwindow::after
{
    position: absolute;
    top: 50%;
    right: 12px;

    display: block;

    width: 13px;
    height: 11px;
    margin-top: -5px;

    content: '';

    background: url(../images/common/icon_newwindow.png) no-repeat center center/cover;
}
@media print, screen and (min-width: 768px)
{
    .sp-globalnav
    {
        display: none;
    }
}

.header
{
    position: relative;
    z-index: 100;

    border-bottom: #ccc 1px solid;
}
@media print, screen and (min-width: 768px)
{
    .header-wrapper
    {
        position: relative; 
        z-index: 100;

        height: 140px;
    }
    .header-wrapper--top
    {
        height: 60px;
    }
}
@media print, screen and (min-width: 768px)
{
    .header
    {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;

        display: -ms-flexbox;
        display: flex;
            flex-direction: row-reverse;

        width: 100%;
        height: 60px;
        padding: 0 0 0 38px;

        background: #fff;

        -ms-flex-direction: row-reverse;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
    }
}
.header-compornents
{
    display: -ms-flexbox;
    display: flex;

    height: 50px;
    padding: 12px;

    background: #000;

    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header-compornents .cv-btn
{
    font-family: 'Roboto', sans-serif;
    font-size: 1.0rem;
    font-weight: bold;
    line-height: 30px;

    display: block;

    width: 90px;
    height: 30px;

    text-align: center; 

    color: #fff;
    background: #1d2088;
}
@media print, screen and (min-width: 768px)
{
    .header-compornents .cv-btn
    {
        font-size: 1.2rem; 
        line-height: 60px;

        width: 200px;
        height: 60px;
    }
}
@media print, screen and (min-width: 768px)
{
    .header-compornents
    {
        padding: 0; 

        background: #fff;
    }
}
.header-logo-area
{
    display: block; 

    height: 50px;
    padding: 12px 0;

    background: #fff;
}
@media print, screen and (min-width: 768px)
{
    .header-logo-area
    {
        height: auto; 
        padding: 0;
    }
}
.header-logo
{
    display: block;

    width: 92px;
    margin: 0 auto;
}
@media print, screen and (min-width: 768px)
{
    .header-logo
    {
        width: 129px;
    }
}
.header .fixed-header
{
    position: fixed;
    top: -50px;
    right: 0;
    left: 0;

    width: 100%;

    transition: all ease-in-out .3s;
}
@media print, screen and (min-width: 768px)
{
    .header .fixed-header
    {
        display: none;
    }
}
.header .fixed-header .header-logo-area
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    height: auto;
    padding: 0;

    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); 

    background: none;
}
.header .fixed-header .header-logo
{
    background: url(../images/common/logo_white.png) no-repeat center center/cover;
}
.header .fixed-header .header-logo img
{
    opacity: 0;
}
.header .fixed-header.is-fixed
{
    top: 0;
}

.header-sns
{
    display: none;
}
@media print, screen and (min-width: 1000px)
{
    .header-sns
    {
        display: -ms-flexbox;
        display: flex; 

        width: 180px;
    }
    .header-sns li:not(:last-child)
    {
        margin-right: 30px;
    }
    .header-sns li img
    {
        width: 26px;
    }
    .header-sns li.header-sns-blog a
    {
        display: -ms-flexbox;
        display: flex;
            flex-direction: row-reverse;

        -ms-flex-direction: row-reverse;
        -ms-flex-align: center;
        align-items: center;
    }
    .header-sns-text
    {
        font-family: 'Roboto', sans-serif;
        font-weight: bold;

        margin-left: 8px;
    }
}


.page-nav {
	width: 100%;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	justify-content: center;
  	align-items: center;
  	font-size: 11px;
}

.page-numbers {
	display: block;
	width: 25px;
	height: 25px;
	line-height: 23px;
	text-align: center;
	box-sizing: border-box;
	border: 1px solid #cccccc;
	color: #000;
	margin: 0 5px;
}

a.page-numbers {
	color: #000;
}

.page-numbers.now {
	background-color: #eeeeee;
	border: 1px solid #eeeeee;
}

.page-numbers.prev,
.page-numbers.next {
	display: none;
}

.page-numbers.first,
.page-numbers.last {
	width: 63px;
}

.page-numbers.first {
	background: url(../images/common/icon_angle_left.png) left 10px center no-repeat;
	background-size: 6px auto;
	padding-right: 5px;
	text-align: right;
	margin-left: 0;
}

.page-numbers.last {
	background: url(../images/common/icon_angle_right.png) right 10px center no-repeat;
	background-size: 6px auto;
	padding-left: 5px;
	text-align: left;
	margin-right: 0;
}

@media print, screen and (min-width: 768px)
{
	.page-nav {
		width: 100%;
		display:-webkit-box;
	  	display:-ms-flexbox;
	  	display:flex;
	  	justify-content: center;
	  	align-items: center;
	  	font-size: 12px;
	}
	
	.page-numbers {
		display: block;
		width: 30px;
		height: 30px;
		line-height: 28px;
		text-align: center;
		box-sizing: border-box;
		border: 1px solid #cccccc;
		color: #000;
		margin: 0 10px;
	}
	
	a.page-numbers {
		color: #000;
	}
	
	.page-numbers.now {
		background-color: #eeeeee;
		border: 1px solid #eeeeee;
	}
	
	.page-numbers.prev,
	.page-numbers.next {
		display: none;
	}
	
	.page-numbers.first,
	.page-numbers.last {
		width: 70px;
	}
	
	.page-numbers.first {
		background: url(../images/common/icon_angle_left.png) left 10px center no-repeat;
		background-size: 6px auto;
		padding-right: 7px;
		text-align: right;
	}
	
	.page-numbers.last {
		background: url(../images/common/icon_angle_right.png) right 10px center no-repeat;
		background-size: 6px auto;
		padding-left: 7px;
		text-align: left;
	}
}

.editor-cnt {
	display: block;
	width: 100%;
	font-size: 12px;
	line-height: 1.5;
	color: #000;
}

.editor-cnt a {
	text-decoration: underline;
	color: #000;
}

.editor-cnt h1 {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 15px;
}

.editor-cnt h2 {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 15px;
}

.editor-cnt h3 {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 15px;
}

.editor-cnt p {
	margin-bottom: 15px;
	line-height: 1.5;
}

.editor-cnt img {
	max-width: 100%;
	height: auto;
}

.editor-cnt strong {
  font-weight: bold;
}

.editor-cnt em {
  font-style: italic;
}

.editor-cnt ul {
  display: block;
  list-style-type: disc;
  margin-left: 20px;
}

.editor-cnt ul li {
  display: list-item;
}

.editor-cnt ol {
  display: block;
  list-style-type: decimal;
  margin-left: 20px;
}

.editor-cnt ol li {
  display: list-item;
}

.editor-cnt img.alignleft {
  text-align: left;
}

.editor-cnt img.aligncenter {
   display: block;
   margin: 1px auto;
}

.editor-cnt img.alignright {
   display: block;
   margin: 1px 1px 1px auto;
}

.editor-cnt iframe {
	max-width: 100%
}

@media print, screen and (min-width: 768px)
{
	
	.editor-cnt {
		width: 1000px;
		margin: 0 auto;
		font-size: 14px;
		line-height: 1.7;
		color: #000;
	}
	
	.editor-cnt a {
		text-decoration: underline;
		color: #000;
	}
	
	.editor-cnt h1 {
		font-size: 24px;
		font-weight: bold;
		line-height: 1.5;
		margin-bottom: 20px;
	}
	
	.editor-cnt h2 {
		font-size: 20px;
		font-weight: bold;
		line-height: 1.5;
		margin-bottom: 20px;
	}
	
	.editor-cnt h3 {
		font-size: 16px;
		font-weight: bold;
		line-height: 1.5;
		margin-bottom: 20px;
	}
	
	.editor-cnt p {
		margin-bottom: 20px;
		line-height: 1.7;
	}
	
	.editor-cnt img {
		max-width: 100%;
		height: auto;
	}
	
	.editor-cnt strong {
	  font-weight: bold;
	}
	
	.editor-cnt em {
	  font-style: italic;
	}
	
	.editor-cnt ul {
	  display: block;
	  list-style-type: disc;
	  margin-left: 20px;
	}
	
	.editor-cnt ul li {
	  display: list-item;
	}
	
	.editor-cnt ol {
	  display: block;
	  list-style-type: decimal;
	  margin-left: 20px;
	}
	
	.editor-cnt ol li {
	  display: list-item;
	}
	
	.editor-cnt img.alignleft {
	  text-align: left;
	}
	
	.editor-cnt img.aligncenter {
	   display: block;
	   margin: 1px auto;
	}
	
	.editor-cnt img.alignright {
	   display: block;
	   margin: 1px 1px 1px auto;
	}
	
	.editor-cnt iframe {
		max-width: 100%
	}

}

.share .sns-box-single {
	width: 100%;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	justify-content: space-between;
  	align-items: flex-start;
  	padding: 0 10px;
}

.share .sns-box-single li{
	text-align: center;
}

/*
.share .sns-box-single li+li {
	margin-left: 40px;
}
*/

.share .sns-box-single a {
  	color: #000;
  	font-size: 12px;
}

.share .sns-box-single .sns-icon {
	display: block;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 1px solid #cccccc;
	margin: 0 auto 5px;
}

.share .sns-box-single .sns-icon img {
	width: 100%;
	height: auto;
}

.share .sns-box-single .sns-name .sp {
	display: inline;
}

.share .sns-box-single .sns-name .pc {
	display: none;
}

@media print, screen and (min-width: 768px)
{
	.share .sns-box-single {
		width: 100%;
		display:-webkit-box;
	  	display:-ms-flexbox;
	  	display:flex;
	  	justify-content: center;
	  	align-items: center;
	}
	
	.share .sns-box-single li{
		display:-webkit-box;
	  	display:-ms-flexbox;
	  	display:flex;
	  	justify-content: center;
	  	align-items: center;
	}
	
	.share .sns-box-single li+li {
		margin-left: 40px;
	}
	
	.share .sns-box-single a {
	  	color: #000;
	  	font-size: 14px;
	}
	
	.share .sns-box-single .sns-icon {
		display: block;
		width: 60px;
		height: 60px;
		border-radius: 50%;
		border: 1px solid #cccccc;
		margin-right: 10px;
	}
	
	.share .sns-box-single .sns-name .sp {
		display: none;
	}
	
	.share .sns-box-single .sns-name .pc {
		display: inline;
	}
}

.single-pagenation
{
	border-bottom: 1px solid #ccc;
}
    
@media print, screen and (min-width: 768px)
{
    .single-pagenation
    {
        display: -ms-flexbox;
        display: flex;

        padding-top: 50px;

        border-top: 1px solid #ccc; 
		border-bottom: none;
		 
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.single-pagenation .pagenation-left
{
    border-top: 1px solid #ccc;
}

.single-pagenation .pagenation-left.no-cnt
{
    display: none;
}

@media print, screen and (min-width: 768px)
{
    .single-pagenation .pagenation-left
    {
	    display: block!important;
        border: none;
    }
}

.single-pagenation .pagenation-right
{
    border-top: 1px solid #ccc;
}

.single-pagenation .pagenation-right.no-cnt
{
    display: none;
}

@media print, screen and (min-width: 768px)
{
    .single-pagenation .pagenation-right
    {
	    display: block!important;
        border: none;
    }
}

.single-pagenation .pagenation-right a,
.single-pagenation .pagenation-left a
{
    position: relative;

    display: -ms-flexbox;
    display: flex;

    padding: 15px 16px;
}
.single-pagenation .pagenation-right a::after,
.single-pagenation .pagenation-left a::after
{
    position: absolute;
    top: 50%;

    display: block;

    margin-top: -3px; 

    content: '';

    border-width: 2px !important;
}
@media print, screen and (min-width: 768px)
{
    .single-pagenation .pagenation-right a,
    .single-pagenation .pagenation-left a
    {
        width: 370px;
        padding: 0 23px; 

        -ms-flex-align: center;
        align-items: center;
    }
}

.single-pagenation .pagenation-left a::after
{
    left: 0; 

    width: 8px;
    height: 8px;

    -webkit-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
            transform: rotate(225deg);

    border-top: 1px solid #3289ad;
    border-right: 1px solid #3289ad;
}
@media print, screen and (min-width: 768px)
{
    .single-pagenation .pagenation-left a::after
    {
        left: 10px;
    }
}

.single-pagenation .pagenation-left .pagenation-ttl
{
    padding-left: 10px;
}

.single-pagenation .pagenation-right a
{
        flex-direction: row-reverse; 

    -ms-flex-direction: row-reverse;
}

.single-pagenation .pagenation-right a::after
{
    right: 0; 

    width: 8px;
    height: 8px;

    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);

    border-top: 1px solid #3289ad;
    border-right: 1px solid #3289ad;
}
@media print, screen and (min-width: 768px)
{
    .single-pagenation .pagenation-right a::after
    {
        right: 10px;
    }
}

.single-pagenation .pagenation-right .pagenation-ttl
{
    padding-right: 10px;
}

.single-pagenation .pagenation-img
{
    width: 96px;
}
@media print, screen and (min-width: 768px)
{
    .single-pagenation .pagenation-img
    {
        width: 109px;
    }
}

.single-pagenation .pagenation-ttl
{
    font-size: 1.2rem;
    line-height: 1.25; 

    width: calc(100% - 96px);
}
@media print, screen and (min-width: 768px)
{
    .single-pagenation .pagenation-ttl
    {
        font-size: 1.4rem;

        width: calc(100% - 109px);
    }
}


.about-list li
{
    position: relative;
}

.about-list li:not(:last-child)
{
    margin-bottom: 20px;
}

.about-list a
{
    position: relative;
    z-index: 1; 

    display: block;
    overflow: hidden;

    width: 100%;
}
.about-list a::after
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';
    transition: all ease-in-out .3s; 

    background: rgba(255, 255, 255, .5);
}

@media print, screen and (min-width: 768px)
{
    .about-list
    {
        display: -ms-flexbox;
        display: flex;

        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .about-list li
    {
        width: 50%;
        padding: 0 20px;
    }
    .about-list li:not(:last-child)
    {
        margin-bottom: 0;
    }
    .about-list li:not(:last-child):not(:nth-last-child(2))
    {
        margin-bottom: 30px;
    }
    .about-list a:hover::after
    {
        background: rgba(71, 107, 198, .7);
    }
    .about-list a img
    {
        position: relative;
        z-index: -1;
    }
    .about-list a:hover
    {
        opacity: 1;
        color: #fff;
    }
    .about-list a:hover .about-ttl i
    {
        opacity: .7;
        color: #7fbff2;
    }
    .about-list a:hover .about-more
    {
        opacity: 0;
    }
    .about-list a:hover .about-more--hover
    {
        opacity: 1;
    }
}

.about-desc
{
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 0;

    width: 100%;
    padding: 0 32px;

    -webkit-transform: translate(0, -38%);
        -ms-transform: translate(0, -38%);
            transform: translate(0, -38%);
}
@media print, screen and (min-width: 768px)
{
    .about-desc
    {
        padding: 0 54px;
    }
}

.about-ttl
{
    font-family: 'Roboto', sans-serif;
    font-size: 2.0rem;
    font-weight: bold;

    position: relative;
    z-index: 1; 

    margin-bottom: 15px;
}
.about-ttl i
{
    font-size: 5.0rem;
    font-style: normal;

    position: absolute;
    z-index: -1;
    top: 50%;

    margin-top: -30px;

    transition: ease-in-out all .3s; 
    -webkit-transform: scale(.9, 1);
        -ms-transform: scale(.9, 1);
            transform: scale(.9, 1);

    opacity: .9;
    color: #fff;
}
@media print, screen and (min-width: 768px)
{
    .about-ttl
    {
        font-size: 3.2rem;

        margin-bottom: 30px;
    }
    .about-ttl i
    {
        font-size: 6.8rem;

        margin-top: -40px;

        letter-spacing: -2px;
    }
}

.about-text
{
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: bold;

    margin-bottom: 15px;
}
@media print, screen and (min-width: 768px)
{
    .about-text
    {
        font-size: 1.6rem;

        margin-bottom: 30px;
    }
}

.about-more--hover
{
    transition-delay: .5s; 

    opacity: 0;
}

.about-more--hover,
.about-more
{
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;

    position: relative;

    transition: all ease-in-out .35s; 

    color: #1d2088;
}
.about-more--hover span,
.about-more span
{
    position: absolute;
    position: absolute;
    top: 0;
    right: calc(100% - 235px);

    display: inline-block;

    width: 235px;
    padding-right: 70px; 

    transition: all ease-in-out .2s;
}
.about-more--hover span::after,
.about-more span::after
{
    position: absolute;
    top: 50%;
    right: 0;

    display: block;

    width: 63px;
    height: 1.5px;
    margin-top: -1px; 

    content: '';

    background: #1d2088;
}
@media print, screen and (min-width: 768px)
{
    .about-more--hover,
    .about-more
    {
        font-size: 1.4rem;
    }
    .about-more--hover span,
    .about-more span
    {
        padding-right: 140px;
    }
    .about-more--hover span::after,
    .about-more span::after
    {
        width: 126px;
    }
}

@media print, screen and (min-width: 768px)
{
    .about-more--hover
    {
        color: #fff;
    }
    .about-more--hover span
    {
        right: -54px;
    }
    .about-more--hover span::after
    {
        background: #fff;
    }
}