@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{
    padding-bottom: 56.25%;
    margin-top: 15px;
    height: 0; 
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}
.embed iframe,
.embed object,
.embed embed { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
}


img{
    width: 100%;
    height: auto;
}
ul{
   list-style: none;
}

.nondisplay{
   display: none; 
}

*{
	margin: 0;
	padding: 0;
}

:root {
  --colortheme: #947054;
  --colorfont: #202020;
  --colorgray: #B3B3B3;
  --fontbold: 500;
}


html{
  font-size: 62.5%;
}
body{
  font-size: 1.0rem;
}
body{
    font-family: 'Noto Serif JP', serif;
	 width: 100%;
    line-height: 2.0;
    background: #FFFFFF;
    position: relative;
    color: var(--colorfont);
    letter-spacing: 0.1ex;
}

body.error {
  min-height: 100vh;
}

a:link,
a:visited {
  color: var(--colortheme);
  border-bottom: 1px solid var(--colortheme);
}
a:hover {
  color: var(--colortheme);
  border-bottom: 1px solid transparent;
  transition: all  0.2s ease-in-out;
}

h1,
.font-h1{
  font-size: 2.0rem;
  font-weight: var(--fontbold);
  line-height: 1.5;
  letter-spacing: 0.2ex;
}

h2,
.font-h2{
  font-size: 2.0rem;
  font-weight: var(--fontbold);
  line-height: 1.5;
  letter-spacing: 0.2ex;
}

h3,
.font-h3{
    font-size: 1.5rem;
    font-weight: var(--fontbold);
    line-height: 1.5;
    letter-spacing: 0.2ex;
}

h1,h2,h3,h4 {
  display: block;
}

.font-body1,
.font-body1 p{
  font-size: 1.5rem;
  line-height: 2;
}

.font-body2,
.font-body2 p{
  font-size: 1.3rem;
  line-height: 2;
}

.font-exsmall {
  font-size: 1.1rem;
}

.font-bold {
  font-weight: var(--fontbold) !important;
}

.inner {
  padding: 0 0px;
  max-width: 860px;
  margin: 0 auto;
}

.hide {
  display: none;
}


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

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

.hero-body .hero-body-read {
  color: var(--colortheme);
  display: block;
  font-size: 2.0rem;
  font-weight: var(--fontbold);
}

.hero-body .hero-body-text {
  display: block;
  font-size: 1.5rem;
  font-weight: var(--fontbold);
}

.hero-body .hero-body-text br {
  display: none;
}

.btn-content {
  border: 1px solid var(--colortheme);
  color: var(--colortheme);
  display: inline-block;
  line-height: 1 !important;
  padding: 8px 16px;
  cursor: pointer;
}

.btn-content:hover {
  background-color: var(--colortheme);
  color: #FFFFFF;
}

.hide-contents {
  display: none;
}

.btn-link{
  border: 1px solid var(--colortheme);
  background-color: var(--colortheme);
  color: #ffffff !important;
  display: inline-block;
  line-height: 1;
  padding: 8px 16px;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 0px;
}
.btn-link:hover{
  border: 1px solid var(--colortheme);
  background-color: #FFFFFF;
  color: var(--colortheme) !important;;
  display: inline-block;
}

.theater-list li {
  border-bottom: 1px solid #B3B3B3;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.theater-item {
  position: relative;
}

.theater-item-art {
  display: flex;
  gap: 4px 0;
  flex-wrap: wrap;
  padding-right: calc(27px + 16px);
  border-bottom: 0px;
  background: url(arrow-right.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 27px 20px;
  color: var(--colortheme);
  z-index: 1;
}

.theater-item-art.theater-item-art-link {
  background: none;
  color: var(--colorfont);
}

.theater-item-art.theater-item-art-link:hover {
  opacity: 1 !important;
}

.theater-item-art .theater-item-date {
  display: inline-block;
  width: 100%;
}
.theater-item-art .theater-item-venue {
  display: block;
  width: 100%;
}

.theater-item-art .theater-item-title {
  display: block;
  width: 100%;
}

.theater-item-art .label-wrap {
  width: 100%;
}

.theater-item-art .label-wrap span{
  display: inline-block;
  padding: 4px 8px;
  line-height: 1 !important;
  background-color: var(--colorgray);
  color:#FFFFFF;
}

.theater-list .theater-item a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 0;
  z-index: 2;
}



#lang {
  position: fixed;
  width: 100%;
  bottom: 0px;
  left: 0px;
  padding: 16px;
  z-index: 999;
  overflow: hidden;
}

#lang ul {
  display: flex;
  flex-wrap: wrap;
}

#lang ul li {
  display: inline-block;
}

#lang ul li:last-child {
  margin-left: -1px;
}

#lang ul li a {
  text-align: center;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background-color: var(--colortheme);
  border-bottom: 0px solid;
  color: #FFFFFF;
  display: inline-block;
  border: 1px solid var(--colortheme);
}

#lang ul li a.current {
  background-color:  #FFFFFF;
  color: var(--colortheme);
}


#lang h2{
  position: absolute;
  left: -100vw;
}



.announcement-bar {
  background-color: var(--colortheme);
  padding: 8px 16px;
  width: 100vw;
  text-align: center;
}

.announcement-bar a{
  display: block;
  text-align: center;
  color: #FFFFFF;
  border-bottom: none;
}


#header {
  position: relative;
  width: 100vw;
  height: auto;
  padding: 32px 32px 32px;
}

#header .logo {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  position: relative;
  margin: 0 auto;
}


.hero {
  max-width: 640px;
  margin: 0 auto;
}

.hero.hero-full {
  max-width: 100%;
}

.hero.hero-full img{
  max-width: 640px;
  margin: 0 auto !important;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}


.hero img{
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}

.hero-body {
  padding: 32px 16px 0;
  display: grid;
  gap: 16px 0;
}




.main {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.sec {
  margin: 32px auto 0;
  padding-top: 32px;
  position: relative;
  z-index: 1;
}



.sec-header {
  color: var(--colortheme);
  text-align: center;
}

.title-wrap {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--colortheme);
}

.sec-header h2{
  display: block;
  border-bottom: 1px solid var(--colortheme);
  padding-bottom: 8px;
}

.sec-body {
  margin-top: 16px;
}

.sec-body-img {
  margin-top: 32px;
}

.sec-body-img ul li{
  margin-top: 16px;
}

.sec-body-img ul li img{
  display: block;
}

.sec-body dl{
  display: flex;
  flex-wrap: wrap;
}

.sec-body dl dt{
  width: 80px;
  margin-top: 8px;
}


.sec-body dl dd{
  width: calc(100% - 80px);
  margin-top: 8px;
}

.sec-body dl dt:first-child,
.sec-body dl dt:first-child + dd{
  margin-top: 0rem;
}
  
  body.lang-en .sec-body dl dt,
  body.lang-it .sec-body dl dt{
    width: 100%;
    font-weight: 700;
  }

  body.lang-en .sec-body dl dd,
  body.lang-it .sec-body dl dd{
    width: 100%;
    padding-left: 2.0rem;
    margin-top: 0;
  }



.sec-body dl ul{
  list-style: disc;
  padding-left: 18px;
}

.sec-body dl ul li{
}



.sec-body .rte ol{
  list-style: decimal;
  padding-left: 18px;
}

.sec-body .rte ol li ol{
  list-style-type: lower-latin
}

.sec-body-images {
}
.caption {
  display: block;
  margin-top: 8px;
}

.sec-body-images ul{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
}
.sec-body-images ul li{
  display: inline-block;
  width: 100%;
}

.sec-body-images ul li img{
  display: block;
  width: 100%;
  height: auto;
}



.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);
}

small {
  display: block;
  text-align: center;
}


#footer {
  padding: 64px 0 32px;
}

#footer .sns-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 32px 0;
  gap: 0 16px;
}

#footer .sns-link li {
  display: inline-block;
  width: 32px;
  height: auto;
}

#footer .sns-link li a {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 0px;
  text-decoration: none;
}

#footer .sns-link img {
  display: block;
  width: 100%;
  height: auto;
}

.btn-menu {
  position: fixed;
  right: 32px;
  top: auto;
  bottom: 32px;
  display: inline-block;
  padding: 8px 8px 22px;
  z-index: 100;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-color: #FFFFFF;
  border: 1px solid var(--colortheme);
}

.btn-menu-inner {
  position: relative;
  width: 32px;
  height: 16px;
}

.btn-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--colortheme);
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
}

.btn-menu span:first-child {
  top: 0;
  margin-top: 0;
}

.btn-menu span:last-child {
  top: auto;
  margin-top: 0;
  bottom: 0px;
}

.btn-menu p {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: var(--fontbold);
  position: absolute;
  bottom: -16px;
  left: 0px;
  width: 100%;
  color: var(--colortheme);
}

.btn-menu.active {
  background-color: var(--colortheme);
}
.btn-menu.active span {
  background-color: #FFFFFF;
}
.btn-menu.active p {
  color: #FFFFFF;
}

.nav {
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  font-size: 1.6rem;
  background-color: var(--colortheme);
  z-index: 99;
  padding: 32px 32px;
  display: none;
  overflow: scroll;
}

.nav .lang,
.nav .sns {
  border-top: 1px solid #FFFFFF;
  padding-top: 16px;
  margin-top: 8px;
  color: #FFFFFF;
  position: relative;
}

.nav .lang span,
.nav .sns span {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 4px;
  left: 0;
  background-color: #FFFFFF;
}

.nav .lang ul {
  padding-left: 16px;
}

.nav .lang ul li .current{
  border-bottom: 1px solid #FFFFFF;
}

.nav a {
  color: #FFFFFF;
  display: block;
  padding: 4px 0;
  margin: 8px 0;
  line-height: 1.5;
  display: inline-block;
}

.nav .sns a {
  display: block;
  width: 32px;
  height: auto;
  padding: 0 0;
}

.nav .sns ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: 8px;
  gap: 0 16px;
}

.nav .sns ul li {
  display: inline-block;
  width: 32px;
}

.nav .sns a img {
  display: block;
  width: 100%;
  height: auto;
}


/*===============================================
breakpoint:768
===============================================*/
@media screen and (min-width: 768px){

  #lang {
    position: fixed;
    width: auto;
    bottom: auto;
    left: auto;
    right: 0;
    top: calc(42px + 0px);
    padding: 16px;
    z-index: 999;
    overflow: hidden;
  }

  #lang ul li:last-child {
    margin-left: -0px;
  }

  h1,
  .font-h1{
  }

  h2,
  .font-h2{
      font-size: 2.4rem;
  }

  h3,
  .font-h3{
      font-size: 2.0rem;
  }

  h1,h2,h3,h4 {
    display: block;
  }

  .font-body1,
  .font-body1 p{
    font-size: 1.6rem;
    line-height: 2;
  }

  .font-body2,
  .font-body2 p{
    font-size: 1.6rem;
    line-height: 2;
  }

  .font-exsmall {
    font-size: 1.3rem;
  }

  .inner {
    padding: 0 0px;
    max-width: 860px;
    margin: 0 auto;
  }

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

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

  .hero-body .hero-body-read {
    font-size: 2.4rem;
    line-height: 2.0;
  }

  .hero-body .hero-body-read  br{
    display: none;
  }

  .hero-body .hero-body-text {
    font-size: 2.0rem;
    line-height: 2.0;
  }

  .hero-body .hero-body-text br {
    display: block;
  }

  .theater-list li {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .theater-item-art .theater-item-date {
    display: block;
    width: 100%;
  }
  .theater-item-art .theater-item-venue {
    display: block;
    width: 100%;
  }
  .theater-item:hover .theater-item-art{
    opacity: 0.4;
    transition: all  0.2s ease-in-out;
  }
  

  .announcement-bar {
    padding: 8px 16px;
  }

  .announcement-bar a{
  }


  #header {
    position: relative;
    width: 100vw;
    height: auto;
    padding: 64px 32px 32px;
  }

  #header .logo {
    max-width: 360px;
  }


  .hero {
    max-width: 640px;
    margin: 0 auto;
  }

  .hero img{
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
  }

  .hero-body {
    padding: 32px 0px 0;
    display: grid;
    gap: 32px 0;
    text-align: center;
  }


  .main {
    position: relative;
    padding: 0 32px;
  }

  .sec {
    margin: 74px auto 0;
    padding-top: 32px;
  }



  .sec-header {
  }

  .title-wrap {
    padding-bottom: 4px;
  }

  .sec-header h2{
    padding-bottom: 16px;
  }

  .sec-body {
    margin-top: 32px;
  }

  .sec-body-img {
    margin-top: 42px;
  }

  .sec-body-img ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1px;
  }
  .sec-body-img ul li{
    margin-top: 0px;
    display: block;
    width: calc(33.3333% - 1px);
    margin-left: 1px;
  }

  .sec-body-img ul li img{
    display: block;
  }

  .sec-body dl{
    display: flex;
    flex-wrap: wrap;
  }

  .sec-body dl dt{
    width: 120px;
    margin-top: 8px;
  }


  .sec-body dl dd{
    width: calc(100% - 120px);
    margin-top: 8px;
  }

  .sec-body dl dt:first-child,
  .sec-body dl dt:first-child + dd{
    margin-top: 0rem;
  }

  .sec-body dl ul{
    list-style: disc;
    padding-left: 18px;
  }

  .sec-body dl ul li{
  }

  body.lang-it .sec-body dl dt{
    width: 100%;
    font-weight: 700;
  }

  body.lang-it .sec-body dl dd{
    width: 100%;
    padding-left: 2.0rem;
    margin-top: 0;
  }


  .sec-body .rte ol{
    list-style: decimal;
    padding-left: 18px;
  }

  .sec-body .rte ol li ol{
    list-style-type: lower-latin
  }

  .sec-body-images {
  }
  .caption {
    display: block;
    margin-top: 8px;
  }





  .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);
  }

  small {
    display: block;
    text-align: center;
  }


  #footer {
    padding: 96px 0 32px;
  }

  .btn-menu {
    position: fixed;
    right: 32px;
    top: 64px;
    bottom: auto;
    width: 32px;
    height: 16px;
    z-index: 100;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
  }

  .btn-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--colortheme);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1px;
  }

  .btn-menu span:first-child {
    top: 0;
    margin-top: 0;
  }

  .btn-menu span:last-child {
    top: auto;
    margin-top: 0;
    bottom: 0px;
  }

  .btn-menu p {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: var(--fontbold);
    position: absolute;
    bottom: -16px;
    left: 0px;
    width: 100%;
    color: var(--colortheme);
  }

  .btn-menu.active span {
    background-color: #FFFFFF;
  }
  .btn-menu.active p {
    color: #FFFFFF;
  }

  .nav {
    position: fixed;
    right: 0;
    top: 0;
    width: auto;
    height: 100vh;
    font-size: 1.6rem;
    background-color: var(--colortheme);
    z-index: 99;
    padding: 64px 64px;
    display: none;
    overflow: scroll;
  }

  .nav .lang,
  .nav .sns {
    border-top: 1px solid #FFFFFF;
    padding-top: 16px;
    margin-top: 8px;
    color: #FFFFFF;
    position: relative;
  }

  .nav .lang span,
  .nav .sns span {
    width: 100%;
    height: 1px;
    position: absolute;
    top: 4px;
    left: 0;
    background-color: #FFFFFF;
  }

  .nav .lang ul {
    padding-left: 16px;
  }

  .nav .lang ul li .current{
    border-bottom: 1px solid #FFFFFF;
  }

  .nav a {
    color: #FFFFFF;
    display: block;
    padding: 4px 0;
    margin: 8px 0;
    line-height: 1.5;
    display: inline-block;
  }

  .nav .sns a {
    display: block;
    width: 32px;
    height: auto;
    padding: 0 0;
  }

  .nav .sns ul {
    display: flex;
    flex-wrap: wrap;
    padding-top: 8px;
    gap: 0 16px;
  }

  .nav .sns ul li {
    display: inline-block;
    width: 32px;
  }

  .nav .sns a img {
    display: block;
    width: 100%;
    height: auto;
  }

}


