@charset "utf-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a:link { text-decoration: none; color:#4c649c; }
a:visited { text-decoration: none; color:#4c649c; }
a:hover { text-decoration: none; color:#e0643d; }
a:active { text-decoration: none; color:#e0643d; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}


   // * 1. Improves visual focus of mouse in all browsers
   // * 2. Corrects text resizing oddly when font size is set using ems in IE6/7
   // *    http://clagnut.com/blog/348/#c790
   // * 3. Corrects page centering in all browsers regardless of content height
   // * 4. Improves visual appearance of containers during a delegated click in mSaf
   // *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
   // * 5. Corrects text resizing oddly after orientation change in all handhelds
   // *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/


html {
  cursor: default; /* 1 */
  font-size: 100%; /* 2 */
  overflow-y: scroll; /* 3 */
  -webkit-tap-highlight-color: transparent; /* 4 */
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
}


   // * 1. Addresses text resizing limitations in IE6/7
   // *    Improves text sizing inconsistency in all browsers
   // *    Known issue: text sizing unnecessary for 'form'
   // * 2. Improves margins set oddly in IE6/7 FF3/4 S5 C10


body,
form,
input,
button,
select,
textarea {
  font-size: 100%; /* 1 */
  margin: 0; /* 2 */
}


  // =============================================================================
  //    Links
  //    ==========================================================================

  // /*
  //  * Improves appearance when active or hovered in all browsers
  //  * people.opera.com/patrickl/experiments/keyboard/test
  //  */

a,
a:active,
a:hover {
  outline: none;
}


   // * Addresses outline set oddly in C10


a:focus {
  outline: thin dotted;
}


  // =============================================================================
  //    Typography
  //    ==========================================================================

  // /*
  //  * Corrects styling not present in IE6/7/8/9 S5 C10
  //  */

abbr {
  _border-bottom: expression(this.title ? '1px dotted' : 'none');
}

abbr[title] {
  border-bottom: 1px dotted;
}


   // * Corrects style set incorrectly as 'bolder' in FF3/4 S4/5 C10


b,
strong {
  font-weight: bold;
}


   // * Corrects styling not present in S5 C10


dfn {
  font-style: italic;
}


   // * Corrects styling not present in IE6/7/8/9


mark {
  background: #FF0;
  color: #000;
}


   // * Corrects font family displayed oddly in IE6 S5 C10
   // * en.wikipedia.org/wiki/User:Davidgothberg/Test59


pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}


   // * Improves readability of pre-formatted text in all browsers


pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}


   // * Addresses CSS quotes not supported in IE6/7


q {
  quotes: none;
}


   // * Addresses quote property not supported in S4


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


   // * Improves appearance in all browsers


small,
sub,
sup {
  font-size: 75%;
}


   // * Improves appearance in all browsers
   // * gist.github.com/413930


sub,
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}


  // =============================================================================
  //    Lists
  //    ==========================================================================

  // /*
  //  * Improves appearance of navigation-specific lists
  //  */

nav ul {
  list-style: none;
}

  // =============================================================================
  //    Embedded content
  //    ==========================================================================

  // /*
  //  * Corrects display not defined in IE6/7/8/9 & FF3
  //  */

audio[controls],
canvas,
video {
  display: inline-block;
  *display: inline;
}

audio {
  display: none;
  _display: expression(this.controls ? 'inline' : 'none');
  *zoom: 1;
}

audio[controls] {
  display: inline-block;
}


   // * 1. Improves readability when inside 'a' in all browsers
   // * 2. Improves visual appearance when scaled in IE7
   // *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/


img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
}


   // * Corrects overflow displayed oddly in IE9


svg:not(:root) {
    overflow: hidden;
}


  // =============================================================================
  //    Forms
  //    ==========================================================================

  // /*
  //  * Corrects alignment displayed oddly in IE6/7
  //  */

legend {
  *margin-left: -7px;
}


   // * Improves appearance in all browsers


button,
input,
select,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}


   // * 1. Corrects FF3/4 setting it using !important in the UA stylesheet
   // * 2. Corrects spacing displayed oddly in IE6/7
   // * 3. Corrects inability to style clickable 'input' types in iOS


button,
input {
  line-height: normal; /* 1 */
  _overflow: expression(this.type == 'button|reset|submit' ? 'visible' : ''); /* 2 */
}

  // 3

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  overflow: visible;
}


   // * Addresses box sizing forced to border-box in IE6/7


input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
}


   // * Addresses sizing set oddly to searchfield in S5 iOS C10
   // * Known issue: -moz included to future-proof


input[type="search"] {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}


   // * Addresses inner padding displayed oddly in S5 C10 on OSX


input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}


   // * Corrects appearance displayed oddly in FF3/4
   // * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/


button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}


   // * 1. Corrects scrollbar displayed oddly in IE6/7/8/9
   // * 2. Improves readability and alignment in all browsers


textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

  // =============================================================================
  //    Tables
  //    ==========================================================================

  // /*
  //  * Improves visual appearance in all browsers
  //  */

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


html,body {
}
.embed-container{
    padding-bottom: 56.25%;
    margin-top: 15px;
    height: 0; 
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}
.embed-container iframe,
.embed-container object,
.embed-container embed { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
}


img{
    width: 100%;
    height: auto;
}
ul{
   list-style: none;
}
figure img{
    border-radius: 5px;
}

.caution{
    color: #FF3300;
    font-size: 11px;
}
.nondisplay{
   display: none; 
}

*{
	margin: 0;
	padding: 0;
}
.pc-only{
    display: block;
}
.smp-only{
    display: none;
}
.ancher{
    padding-top:75px;
    display: block; 
}
html{
  font-size: 62.5%;
}
body{
  font-size: 1.0rem;
}
body{
    font-family: 'Noto Sans JP', sans-serif;
	width: 100%;
    line-height: 1.85;
    background: #F4EBD1;
    position: relative;
    padding: 0px 30px 110px;
    color: #212529;
}

a:link,
a:visited {
    color: #212529;
}
a:hover {
    color: #FFFFFF;
    transition: all  0.2s ease-in-out;
}

.rte {
    display: grid;
    gap: 15px 0;
}

.rte .embed {
  width: 100%;
  max-width: 1024px;
}

p{
    font-size: 2.0rem;
    line-height: 2.0;
    font-weight: 400;
}

dl {
    display: flex;
    flex-wrap: wrap;
    font-size: 2.0rem;
    padding: 8px 0 12px;
}
dl dt{
    width: 90px;
    padding: 0 0 13px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}
dl dd{
    width: calc(100% - 90px);
    padding: 0 0 13px;
}

.remarks {
    font-size: 1.3rem;
    color:#868e96;
    display: block;
}

#container{
    position: relative;
}

.parts001 {
    position: absolute;
    display: block;
    width: 300px;
    height: auto;
    left: 1px;
    top: 30px;
    z-index: -1;
}
.parts002{
    position: absolute;
    display: block;
    width: 480px;
    height: auto;
    right: 0px;
    bottom: 0px;
    z-index: -1;
}
.parts003 {
    position: absolute;
    display: block;
    width: 300px;
    height: auto;
    left: 2px;
    top: 90px;
    z-index: -1;
}

.parts004 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #FFFFFF;
    position: absolute;
    right: 2px;
    bottom: 72px;
    z-index: -1;
}

#header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: 'Work Sans', sans-serif;
    padding: 18px 0;
}

h1 {
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.5;
}

h1 br{
    display: none;
}

h2 {
    font-size: 3.6rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}

h3 {
    font-size: 3.0rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    line-height: 1.5;
}

a.btn {
    display: inline-block;
    background-color: transparent;
    border:2px solid #212529;
    color: #212529;
    width: auto;
    line-height: 1;
    padding: 15px 30px;
    min-width: 270px;
    max-width: 100%;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 2.0rem;
    font-weight: 500;
    border-radius: 5px;
}
a.btn:hover {
    background-color: #FFFFFF;
    border:2px solid #FFFFFF;
    color: #212529;
}

#gb_nav {
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.5;
}
#gb_nav ul{
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
#gb_nav ul li{
    padding-left: 30px;
}

.sec {
    padding: 60px 0 60px;
    position: relative;
}
.sec:first-child {
    padding: 0 0 60px;
}

.media {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.media-rr{
    flex-direction: row;
}

.media_img {
    width: calc(50% - 30px);
}
.media_body {
    width: calc(50% - 30px);
}

#live h2 {
}

.live-schedule {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1024px;
}

.live-schedule .art {
    width: calc(50% - 30px);
}

small {
    font-size: 1.3rem;
}


a.link {
    display: block;
    background: transparent;
    border:2px solid #212529;
    text-align: center;
    font-size: 1.3rem;
    padding: 15px;
    font-family: 'Work Sans', sans-serif;
    line-height: 1;
    color: #212529;
    margin-top: 30px;
    border-radius: 5px;

}
a.link:hover {
    background: #FFFFFF;
    border:2px solid #FFFFFF;
}



a.link-amazon {
  position: fixed;
  width: calc(100vw - 60px);
  bottom: 30px;
  left: 30px;
    display: block;
    background: #FFFFFF;
    text-align: center;
    font-size: 2.0rem;
    padding: 15px;
    font-family: 'Work Sans', sans-serif;
    line-height: 1;
    color: #212529;
  border-radius: 5px;

}
a.link-amazon:hover {
    background: #F4EBD1;
}

/* footer */



/*===============================================
breakpoint:600
===============================================*/
@media screen and (max-width: 980px){
    a:link,
    a:visited {
        color: #212529;
    }
    a:hover {
        color: #212529;
    }
    .parts001 {
        position: absolute;
        display: block;
        width: 240px;
        height: auto;
        left: 1px;
        top: 22px;
        z-index: -1;
    }
    .parts002{
        position: absolute;
        display: block;
        width: 300px;
        height: auto;
        right:0;
        bottom: auto;
        top: 240px;
        z-index: -1;
    }
    .parts003 {
        position: absolute;
        display: block;
        width: 260px;
        height: auto;
        left: 0px;
        top: 60px;
        z-index: -1;
    }
    .parts004 {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background-color: #FFFFFF;
        position: absolute;
        right: 2px;
        bottom: 40px;
        z-index: -1;
    }
    body{
        padding: 0px 15px 80px;
        color: #212529;
    }

    #header {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        font-family: 'Work Sans', sans-serif;
        padding: 18px 0;
    }

    #gb_nav {
        font-size: 3.6rem;
        font-weight: 500;
        line-height: 1.5;
    }
    #gb_nav ul{
        position: relative;
        display: flex;
        flex-wrap: wrap;
    }
    #gb_nav ul li{
        padding-left: 0px;
        width: 100%;
        line-height: 1.2;
        padding-top: 3px;
    }

    a.btn {
        width: 100%;
        max-width: 400px;
    }


    h1 {
        font-size: 3.6rem;
        font-weight: 500;
        line-height: 1.0;
    }
    h1 br{
        display: block;
    }
    h2 {
        font-size: 3.6rem;
        line-height: 1.3;
        display: inline-block;
        padding-bottom: 10px;
    }

    h3 {
        font-size: 2.4rem;
        font-family: 'Work Sans', sans-serif;
        font-weight: 500;
        line-height: 1.5;
    }

    p{
        font-size: 1.6rem;
    }

    dl {
        display: flex;
        flex-wrap: wrap;
        font-size: 1.6rem;
        padding: 8px 0 12px;
    }
    dl dt{
        width: 60px;
        padding: 0 0 13px;
        font-family: 'Work Sans', sans-serif;
        font-weight: 500;
        font-size: 1.6rem;
    }
    dl dd{
        width: calc(100% - 60px);
        padding: 0 0 13px;
        font-size: 1.6rem;
    }

    .sec {
        padding: 30px 0 30px;
        position: relative;
    }
    .sec:first-child {
        padding: 0 0 30px;
    }

    .media_img {
        width: 100%;
    }
    .media_body {
        width: 100%;
        padding-top: 15px;
    }
    .live-schedule {
        display: grid;
        gap: 30px 0;
    }
    .live-schedule .art {
        width: 100%;
    }

a.link-amazon {
  position: fixed;
  width: calc(100vw - 30px);
  bottom: 15px;
  left: 15px;
    display: block;
    background: #FFFFFF;
    text-align: center;
    font-size: 2.0rem;
    padding: 15px;
    font-family: 'Work Sans', sans-serif;
    line-height: 1;
    color: #212529;
  border-radius: 5px;

}
a.link-amazon:hover {
    background: #F4EBD1;
}

}


