@charset "utf-8";

/* 丹鉄Maas mobiアプリ
-------------------------------*/
/*設定
--------------------*/
:root {
  --black: #222;
  --white: #fff;
  --gray: #707070;
  --blue: #3984E1;
  --red: #C80A0A;
  --borderGray: #CBCBCB;
  --borderBlue: #3984E1;
  --bgLightBlue: #F0F6FD;
  --box-shadow: rgba( 0, 0, 0, 0.16);
  --marker-blue: rgba(57, 225, 219, 0.3);
  --marker-yellow: rgba(249, 234, 80, 0.6);
}

/* フォント
------------------*/
@font-face {
  font-family: "notosansjp";
  font-weight: 400; 
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 500; 
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 700; 
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "notosans";
  font-weight: 500; 
  src: url("/static/css/fonts/notosans/NotoSans-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosancjk";
  src:  url("/static/css/fonts/notosanscjk/NotoSansCJKtc-VF.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "oswald-bold";
  font-weight: 900; 
  src: url("/static/css/fonts/oswald/Oswald-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  font-weight: 700; 
  src: url("/static/css/fonts/inter/Inter-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "willer";
  font-weight: 900; 
  src: url("/static/css/fonts/willer/WILLER-B.otf") format("opentype");
  font-display: swap;
}

.font-willer {
    font-family: "willer", sans-serif;
    font-weight: 900;
}


/*共通 パーツ
-------------------------------*/
article {
  font-family: "notosansjp", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "Yu Gothic medium", "Arial", "メイリオ", Meiryo,"ＭＳ ゴシック", sans-serif;
  overflow: hidden;
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
}

figure {
    margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

small {
  font-size: 70%;
}

/* color
-----------------------------------*/
.color-black {
    color: var(--black) !important;
}
.color-white {
    color: var(--white) !important;
}
.color-red {
    color: var(--red) !important;
}


/* flex
----------------------------------*/
.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-center{
  display: flex;
  justify-content: center;
}

/* section
-------------------------------------*/
.section {
    padding: 30px 0;
}

@media (min-width: 767px)  {
    .section {
      padding: 50px 0;
    }
}

/* .section-container {
    width: 96%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .section-container {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }
} */


/* block
-------------------------------------*/
.block {
    padding: 40px 0;
}

@media (min-width: 767px)  {
    .block {
      padding: 70px 0;
    }
}

/* heading
--------------------------------------*/
.heading {
  text-align: center;
  margin-bottom: 20px;
}
.heading span {
    display: block;
}
.heading .en {
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 10px;
    font-family: "notosansjp";
    font-weight: 700;
}
.heading .jp{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--black);
}

@media (min-width: 767px) {
  .heading {
      margin-bottom: 30px;
  }
  .heading .en {
      font-size: 48px;
      margin-bottom: 5px;
  }
  .heading .jp {
      font-size: 20px;
      line-height: 1.5;
    }
}

/* title */
.title {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 16px;
    font-weight: bold;
}
@media (min-width: 768px) {
  .title {
      font-size: 20px;
      margin-top: 21px;
      margin-bottom: 14px;
    }  
}

/* button
--------------------------------------*/
.button-wrap {
  margin: auto;
  text-align: center;
}

.button-black {
  width: 100%;
  max-width: 290px;
  display: inline-block;
  padding: 14px 20px 14px 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s;
  background: var(--black);
  color: var(--white);
}
.button-black:hover {
    color: var(--white);
}
@media (max-width: 767px) {

 .button-black {
     font-size: 13px;
     padding: 12px 30px;
  }
  .button-white {
      font-size: 12px;
      padding: 12px 34px 12px 14px;
  }
  .button-black-line{
      font-size: 12px;
      padding: 12px 14px;
  }
}
/* ホバー対応デバイス */
@media (hover: hover) {
  .button:hover,
  .button-radius:hover{
    opacity: 0.6;
    text-decoration: none;
  }

  .button-black:hover,
  .button-white:hover,
  .button-black-line {
        opacity: 0.6;
        text-decoration: none;
    }
}


/* link
--------------------------------*/
.link-underline {
    text-decoration: underline;
}
.link-underline:hover {
    text-decoration: underline;
}


/* arrow
-------------------------------*/
.arrow,
.arrow-right,
.arrow-down,
.arrow-top {
    position: relative;
}

.arrow::after,
.arrow-right::after,
.arrow-down::after,
.arrow-top::after,
.arrow-plus::after {
    position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
    display: inline-block;
    font-size: 14px;
}

.arrow-right::after {
    right: 10px;
    content: "\f054";
}

.arrow-down::after {
    content: "\f13a";
}

.arrow-plus::after {
    font-size: 16px;
    content: "\f055";
}

@media (min-width: 767px) {
   .arrow-right::after {
        right: 16px;
    }
}

/* text
--------------------------------------*/
.lead {
  font-family: "notosansjp",sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--black);
}
.bold {
  font-weight: bold;
}
.small {
  font-size: 70%;
}
.thin {
    font-weight: 300;
}
.text-center {
  text-align: center;
}

@media (min-width: 767px) {
  .lead {
    line-height: 1.5;
  }
}

/*marker*/
.marker-blue {
    background: linear-gradient(transparent 60%, var(--marker-blue) 40%);
}
.marker-yellow {
    background: linear-gradient(transparent 60%, var(--marker-yellow) 40%);
}

/* img
-----------------------------*/
.img-wrap {
    margin: auto;
    text-align: center;
}

/* box
-------------------------------------------*/
.box-border {
    padding: 20px 16px;
    border-radius: 10px;
    border: 1px solid var(--borderGray);
    margin: 16px auto;
}

/* box bg */
.box-bg-blue {
    background: var(--bgLightBlue);
    border-radius: 10px;
    padding: 20px 12px;
}

@media (min-width: 767px) {
    .box-border {
        padding: 20px 12px;
        margin: 8px auto;
    }
}

/* border-color */
.border-blue {
    border: 1px solid var(--borderBlue);
}


/* list
----------------------*/
/* attention */
.attention-list li{
    position: relative;
    padding-left: 14px;
    margin-top: 6px;
}
.attention-list li::before {
    content: '※';
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 80%;
}
@media (max-width: 767px) {
    .attention-list li{
        padding-left: 12px;
        margin-top: 10px;
    }
    .attention-list li::before {
        font-size: 70%;
        top: 5px;
    }
}

/*dot*/
.dot-list li{
    position: relative;
    padding-left: 16px;
    margin-top: 10px;
}
.dot-list li::before{
    content: '※';
    position: absolute;
    top: 4px;
    left: 0;
    font-size: 12px;
/*    color: var(--yellow);*/
}


/* Contents
---------------------------------------------*/
.heading + .lead {
    text-align: left;
}
@media (min-width: 767px) {
    .heading + .lead {
        text-align: center;
    }
}

/* scroll 
-----------------------*/
.scroll-container {
    overflow-x: scroll;
    margin-left: auto;
    margin-right: auto;
}
.scroll-wrap {
/*  width: 1200px;*/
    width: fit-content;
    margin: auto;
}
@media (min-width: 576px) {
    .scroll-container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .scroll-container {
        max-width: 720px;
    }
}
@media (min-width: 960px) {
    .scroll-container {
        max-width: 920px;
    }
}
@media (min-width: 1140px) {
     .scroll-container {
         overflow-x: auto;
         max-width: 1080px;
    }
}
@media (min-width: 1300px) {
     .scroll-container {
         /* max-width: 1240px; */
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

/*　MV
-------------------------------*/
.mv {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
  padding: 45px 20px 75px;
  background: url('/static/img/maas/mobi/uminokyoto-tango/sp-mv-bg.webp') no-repeat center center/ cover;
}
.mv .container {
    padding-left: 5px;
    padding-right: 5px;
}
.title-mv {
    width: 100%;
    height: auto;
    color: var(--white);
    text-align: center;
}
.title-mv span {
    display: block;
    font-weight: 700;
    text-shadow: 0px 0px 3px rgba(12, 84, 139, 0.8), 
                    0px 0px 3px rgba(12, 84, 139, 0.8), 
                    0px 0px 3px rgba(12, 84, 139, 0.8), 
                    /*0px 0px 3px rgba(12, 84, 139, 0.8), */
                    0px 0px 6px rgba(12, 84, 139, 0.8),
                    0px 0px 8px rgba(12, 84, 139, 0.8);
}

.title-mv .sub {
    letter-spacing: 0.04em;
    font-size: 22px;
    margin-bottom: 14px;
}
.title-mv .main {
    letter-spacing: 0.1em;
    font-size: 44px;
}
.title-mv .main img {
    max-width: 100%;
}
.title-mv .small {
    font-size: 30px;
    letter-spacing: 0.05em;
}
.title-mv .big  {
    margin-bottom: 0;
}

.title-mv .big > .font-willer {
    display: inline-block;
    letter-spacing: 0;
    font-size: 66px;
}

@media(min-width: 767px) {
    .mv {
        padding: 75px 20px 130px;
        background: url('/static/img/maas/mobi/uminokyoto-tango/pc-mv-bg.webp') no-repeat center center/ cover;
    }
    .title-mv .sub {
        letter-spacing: 0.04em;
        font-size: 44px;
        margin-bottom: 10px;
    }
    .title-mv .main {
        letter-spacing: 0.1em;
        font-size: 90px;
    }
    .title-mv .small {
        font-size: 60px;
        letter-spacing: 0.05em;
    }
    .title-mv .big  {
        font-size: 90px;
        margin-bottom: 0;
    }
    .title-mv .big > .font-willer {
        font-size: 136px;
    }
}

@media (max-width: 340px) {
    .title-mv .sub {
        font-size: 20px;
    }
    .title-mv .main {
        font-size: 36px;
    }
    .title-mv .big {
        font-size: 32px;
    }
    .title-mv .small {
        font-size: 26px;
    }
}

/* nav group
--------------------------------*/
.nav-group.container {
    width: 100%;
    max-width: 100%;
}
@media (min-width: 767px) {
    .nav-group.container {
        width: 100%;
        max-width: 873px;
    }
}

/* language-button-list
---------------------------*/
.language-button-list{
    display: flex;
    justify-content: flex-end;
    column-gap: 8px;
}
.language-button-list li{
    margin: 14px 0 18px;
    width: 100%;
    max-width: 122px;
}
.button-border {
    width: 100%;
    max-width: 100%;
    display: block;
    border: 1px solid var(--black);
    border-radius: 30px;
    text-align: center;
    color: var(--black);
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: "notosansjp",sans-serif;
}
.language-button-list li a:hover {
    color: var(--black);
    border-color: #ee6295;
     background-color: #feebf2;
    opacity: 0.9;
}
.language-button-list li a.is-current {
    border-color: #ee6295;
    color: var(--black);
    font-weight: bold;
    background-color: #feebf2;
}

@media(min-width: 767px){
    .language-button-list li{
        margin: 30px 0;
        max-width: 183px;
    }
    
    .button-border {
        font-size: 16px;
    }
}

/* page nav
--------------------------*/
.page-nav {

}
.navbar-list{
	background: #111;
	border: 3px solid #111;
	display: flex;
	border-radius: 100px;
	overflow: hidden;
	margin-bottom: 0px;
}
.navbar-list li{ 
	width: 100%;
	display: flex;
}
.navbar-list li a{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px 10px;
	color: #fff;
	font-weight: bold;
	border-left: 1px solid rgba(0, 0, 0, 0.2);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.navbar-list li a:hover{
	text-decoration: none;
	background: #fff;
	color: #000;
}

.navbar-list {
  margin: 0 auto;
}
.navbar-list {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /*gap: 2%;*/
}
.navbar-list li {
  /* width: calc(100% / 3); */
  display: flex;
  justify-content: center;
  /* margin-left: 2%;  */
}
.navbar-list li a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    color: #fff;
    font-weight: bold;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.navbar-list li a:hover {
    opacity: 1;
}
@media (max-width: 993px) {
  .navbar-list ul {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .page-nav {
    margin: 0 auto;
  }
  .navbar-list {
    width: 100%;
  }
  .navbar-list li:first-child a {
        border-left: none;
    }
    .navbar-list li:last-child a {
      border-right: none;
    }
    .navbar-list li a {
        font-size: 12px;
        padding: 16px 10px;
    }
}
@media (max-width: 321px) {
  .navbar-list li a {
    font-size: 10px;
  }
}


/* intro
----------------------------------*/
#intro.section {
    padding: 14px 0 20px; 
}
#intro .lead {
    text-align: left;
}
#intro .container {
    text-align: center;
}
.campaign-box {
    width: 100%;
    max-width: 95%;
    margin: 20px auto 21px;
    border: 3px solid var(--black);
    padding: 16px 16px 12px;
    background: var(--white);
}
.campaign-lead {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    color: var(--black);
}
.campaign-lead .big {
    font-size: 30px;
    font-family: "Inter", sans-serif; ;
    font-weight: 700;
    letter-spacing: 0.05em;
}
@media (min-width: 767px) {
    #intro.section {
        padding: 14px 0 40px 
    }
    #intro .lead {
        text-align: center;
    }
    .campaign-box {
        width: 100%;
        max-width: 582px;
        margin: 36px auto 36px;
        border: 3px solid var(--black);
        padding: 20px 4%;
    }
    .campaign-lead {
        font-size: 18px;
    }
}


/* area
----------------------------------*/
.area-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 30px auto 60px;
    text-align: center;
}
.area-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}
.area-sub {
    font-size: 14px;
    font-weight: 500;
}
.area-sub {
    font-size: 14px;
    font-weight: 500;
}
@media (min-width: 767px) {
    .area-wrap {
        width: 100%;
        max-width: 500px;
        margin: 36px auto 80px;
    }
    .area-name {
        font-size: 24px;
    }
    .area-sub {
        font-size: 16px;
    }
}

/* Point
---------------------------------------*/
.point-box {
    box-sizing: border-box;
}
.point-box .lead {
    font-size: 14px;
}

.point-title {
    font-size: 16px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 64px;
}
.point-title::before,
.point-title::after{
    content: '';
    position: absolute;
    display: inline-block;
    font-size: 24px;
    font-family: "oswald-bold", sans-serif;
    color: var(--blue);
}
.point-title::before {
    top: 5px;
    left: 0;
    width: 20px;
    height: 20px;
    background: url('/static/img/maas/mobi/uminokyoto-tango/ico-check.svg') no-repeat center center/ 100%;
}
.point-title::after {
    top: -5px;
    left: 32px;
}
.point-title.num-01::after {
    content: '01';
}
.point-title.num-02::after {
    content: '02';
}
.point-title.num-03::after {
    content: '03';
}.point-title.num-04::after {
    content: '04';
}

.point-content .lead {
    font-size: 14px;
}

/* point-01
-------------------------*/
.point-box.box-01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom:  8px;
}
.point-box.box-01 .left {
    width: 100%;
}
.point-box.box-01 .left .box-bg-blue {
    padding: 10px 8px;
}
.point-box.box-01 .right {
    width: 100%;
}

/* point-02
-------------------------*/
.point-box.box-02 .box-list {
    display: flex;
    flex-wrap: wrap;
}
.point-box.box-02 .box-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding: 16px 6%;
    margin-bottom: 8px;
}
.point-box.box-02 .box-item .left{
    width: 58%;
    margin-right: 2%;
}
.point-box.box-02 .box-item .left dt{
    margin-bottom: 8px;
    font-size: 14px;
}
.point-box.box-02 .box-item .left dd small{
    font-weight: 500;
    font-size: 90%;
}
.point-box.box-02 .box-item .right {
    width: 38%;
}

/* point-03
-------------------------*/
.point-box.box-03 .box-list {
    display: flex;
    flex-wrap: wrap;
}
.point-box.box-03 .box-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px 6%;
}
.point-box.box-03 .box-item {
    margin-bottom: 10px;
}
.point-box.box-03 .order-1 {
    width: 100%;
    margin-bottom: 10px;
}
.point-box.box-03 .order-2 {
    width: 58%;
    margin-right: 2%;
}
.point-box.box-03 .order-3 {
    width: 38%;
    margin-top: 0;
}

.price {
    font-size: 16px;
    font-weight: 700;
}
.price .big{
    font-size: 20px;
    font-weight: 700;
}
.price small{
    font-weight: 700;
}

/* point-04
-------------------------*/
.point-box.box-04 .box-list {
    display: flex;
    flex-wrap: wrap;
}
.point-box.box-04 .box-item {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 6%;
}
.point-box.box-04 .box-item {
    margin-bottom: 10px;
}
.point-box.box-04 .order-1{
    width: 52%;
    margin-right: 5%;
}
.point-box.box-04 .order-2{
    width: 40%;
}

@media (min-width: 767px) { 
    .point-box {
        padding: 25px 8%;
        margin-left: auto;
        margin-right: auto;
        max-width: 946px;
    }
    .point-title {
        margin-bottom: 10px;
        padding-left: 0;
    }
    .point-title::before {
        left: -66px;
    }
    .point-title::after{
        left: -34px;
    }
    
    .point-content .lead {
        font-size: 16px;
    }

    /* point-01
    -------------------------*/
    .point-box.box-01 {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 20px 5% 0 8%;
    }
    .point-box.box-01 .left {
        width: 75%;
        margin-right: 2%;
    }
    .point-box.box-01 .left .box-bg-blue {
        padding: 10px 12px;
    }
    .point-box.box-01 .right {
        width: 20%;
    }
    
    /* point-02
    ---------------------------*/
    .point-box.box-02 .box-list {
        display: flex;
        column-gap: 1%;
    }
    .point-box.box-02 .box-item {
        width: 48%;
        justify-content: space-between;
        align-items: center;
        padding: 20px 12px;
    }
    .point-box.box-02 .box-item .left {
        width: 64%;
    }
    .point-box.box-02 .box-item .left dt {
        font-size: 15px;
    }
    .point-box.box-02 .box-item .right {
        width: 36%;
    }
    
    /* point-03
    --------------------------*/
    .point-box.box-03 .box-item {
        justify-content: space-between;
        align-items: center;
    }
    .point-box.box-03 .order-1 {
        width: 70%;
    }
    .point-box.box-03 .order-2 {
        width: 68%;
    }
    .point-box.box-03 .order-3 {
        margin-top: -24px;
        width: 28%;
    }
    
    /* point-04
    -------------------------*/
    .point-box.box-04 .box-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 36px;
    }
    .point-box.box-04 .box-item {
        width: 32%;
        max-width: 230px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 1%;
    }
    .point-box.box-04 .order-1{
        order: 2;
        width: 100%;
        margin-right: 0;
        text-align: center;
    }
    .point-box.box-04 .order-2{
        order: 1;
        width: 100%;
        margin-bottom: 12px;
    }
    
}


@media (min-width: 768px) and (max-width: 992px) {
    .point-box {
        padding: 25px 11%;
    }
    
    .point-box .lead {
        font-size: 16px;
    }
    
    /* point-01
    -------------------------*/
    .point-box.box-01 {
        padding: 20px 4% 0 11%;
    }
    
    /* point-04
    -------------------------*/
    .point-box.box-04 .box-list {
        column-gap: 1.5%;
    }
    .point-box.box-04 .box-item {
        width: 31%;
    }
    
    .point-box.box-04 .box-item .order-1{
        font-size: 12px;
    }
}

/* Spot
---------------------------------------*/
.spot-list {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 8px;
    max-width: initial;
    margin: initial;
    padding-left: 20px;
}
.spot-item {
    width: 335px;
    min-height: 337px;
    margin: auto;
    text-align: center;
}
.spot-name {
    font-size: 16px;
    font-weight: bold;
    margin: 8px auto;
}
.spot-item .lead {
    font-size: 14px;
    line-height: 1.5;
}

@media (min-width: 767px) {
    .spot-list {
        padding-left: 30px;
    }
    .spot-item {
        width: 556px;
        min-height: 459px;
    }
    .spot-item .lead {
        font-size: 16px;
        line-height: 1.3;
    }
}

/* How To
--------------------------------------*/
.howto-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 0;
}
.howto-item {
    width: 100%;
    margin-bottom: 16px;
}
.howto-item .num {
    margin: 0 auto 26px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    width: fit-content;
}
.howto-item  .lead {
    font-size: 14px;
}

@media (min-width: 767px) {
    .howto-list {
        flex-wrap: nowrap;
        column-gap: 16px;
    }
    .howto-item.item-1 .button-wrap {
        margin-top: 60px;
    }
}

/* 固定追従ボタン
--------------------------------*/
.wrap-fix {
    text-align: center;
    background: rgba(222, 237, 255, 0.9);
    padding: 16px 16px 10px 10px;
}
.wrap-fix .container{
    padding-left: 0;
    padding-right: 0;
}
.wrap-fix-text {
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
}
.wrap-fix-text small{
    font-size: 98%;
    font-weight: bold;
}
.wrap-fix-text .big{
    font-size: 20px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}
.button-cv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 12px auto 5px;
    width: 100%;
    max-width: 340px;
    background: #3984E1;
    font-size: 17px;
    color: var(--white);
    border-radius: 5px;
    transition: 0.3s;
    padding: 16px 28px 16px 10px;
}
.button-cv:hover {
    opacity: 0.6;
}
.button-cv::after {
    top: 50%;
    transform: translateY(-50%);
}
.button-cv.icon {
    margin-right: 3px;
}

.js-sticky-nav {
  width: 100%;
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  transition: .3s;
  background: rgba(222, 237 ,255, 0.9);
  display: none;/*最初は非表示*/
}

/* メニューが追従していない時の高さを浮かす調整*/
.js-sticky-nav.is-view {
    display: block;/*表示*/
}
@media (min-width: 767px) {
.wrap-fix .container{
    padding-left: 10px;
    padding-right: 10px;
}
    .wrap-fix-text {
        line-height: 1.2;
    }
    .wrap-fix-text span {
        line-height: 1.1;
    }
    .button-cv {
        margin: 12px auto 5px;
        max-width: 394px;
        padding: 16px 40px 16px 16px;
    }
}
@media (max-width: 767px) {
    .js-sticky-nav {
        margin: 0 auto;
    }
}
@media (max-width: 370px) {
    .button-cv{
        font-size: 14px;
    }
}


/* モーダル
---------------------------------*/
.apri-download .modal-header{
	background: #000;
	color: #fff;
}
.apri-download .title-modal{
	font-size: 18px;
	font-weight: 900;
}
.apri-download .title-modalbody{
	background: #eee;
	padding: 10px;
	font-weight: bold;
	margin-bottom: 20px;
}

.apri-download .close {
    color: #fff;
    opacity: 1;
}
.apri-download .close:hover {
    color: #fff;
    opacity: 0.8;
}

/*--------------------------------------
 English
---------------------------------------*/
/*text*/
.uminokyoto-tango-en {
    font-family: "notosans", "notosansjp","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "Yu Gothic medium", "Arial", "メイリオ", Meiryo,"ＭＳ ゴシック", sans-serif;
}
.uminokyoto-tango-en .lead{
    font-family: "notosans", "notosansjp", sans-serif;
}

/* Mv
--------------------------*/
.uminokyoto-tango-en .mv {
    padding: 39px 14px 60px;
}

.uminokyoto-tango-en .title-mv .sub {
    letter-spacing: 0;
    font-size: 20px;
}
.uminokyoto-tango-en .title-mv .big {
    margin-bottom: 6px;
}
.uminokyoto-tango-en .title-mv .en-big {
    display: inline-block !important;
    font-size: 58px;
    letter-spacing: 0;
}
.uminokyoto-tango-en .title-mv .small {
    letter-spacing: 0;
    line-height: 1.1;
    font-size: 20px;
}
@media (min-width: 767px) {
    .uminokyoto-tango-en .mv {
        padding: 75px 20px 130px;
    }
    .uminokyoto-tango-en .title-mv .en-big {
        font-size: 120px;
    }
    .uminokyoto-tango-en .title-mv .sub {
        font-size: 44px;
    }
    .uminokyoto-tango-en .title-mv .small {
        font-size: 44px;
    }
}
@media (max-width: 330px) {
    .uminokyoto-tango-en .title-mv .big > .font-willer {
        font-size: 50px;
    }
    .uminokyoto-tango-en .title-mv .en-big {
        font-size: 44px;
    }
    .uminokyoto-tango-en .title-mv .small {
        font-size: 24px;
    }
}

/* intro
-----------------------------------*/
.uminokyoto-tango-en .wrap-fix {
    padding: 8px 16px 10px 10px;
}

/* MAP
------------------------------------*/
.uminokyoto-tango-en .area-sub {
    text-align: left;
}
@media (min-width: 767px) {
     .uminokyoto-tango-en .area-wrap {
        max-width: 100%;
    }
    .uminokyoto-tango-en .area-sub {
        text-align: center;
    }   
}


/* POINT
--------------------------------*/
.uminokyoto-tango-en .point-content .lead {
    font-family: "notosans", "notosansjp", sans-serif;
    font-weight: 500;
}
@media (min-width: 767px) {
    .uminokyoto-tango-en .point-box.box-01 .img-wrap {
        margin-top: 80px !important;
    }
    .uminokyoto-tango-en .point-content .lead {
        font-size: 14px;
    }
}

/* SPOT
-----------------------------*/
.uminokyoto-tango-en .spot-item {
    min-height: 442px;
}
@media (min-width: 767px) {
    .uminokyoto-tango-en .spot-item {
        min-height: 474px;
        padding-bottom: 20px;
    }
}

/* HOW To USE 
----------------------------------*/
@media (min-width: 767px) {
    .uminokyoto-tango-en .howto-item .lead{
        min-height: 120px;
    }
}

/*--------------------------------------
 繁體中文
---------------------------------------*/
.uminokyoto-tango-tw {
    font-family:  -apple-system,BlinkMacSystemFont, "notosansjp", "notosancjk", "notosans","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "Yu Gothic medium", "Arial", "メイリオ", Meiryo,"ＭＳ ゴシック", sans-serif;
}
.uminokyoto-tango-tw .lead{
    font-family: "notosanscjk", sans-serif;
}

/*文字化け対策*/
.uminokyoto-tango-tw .wrap-fix-text,
.uminokyoto-tango-tw .title-mv .sub {
    display: inline-block;
}
/*文字化け対策*/
.font-prevention-tw {
    font-family: "notosancjk",sans-serif;
    font-weight: 700;
     display: inline !important;
}

/* Mv
--------------------------*/
.uminokyoto-tango-tw .title-mv .big > .font-willer {
    font-size: 62px;
}
.uminokyoto-tango-tw .title-mv .tw-big {
    display: inline-block !important;
    font-size: 38px;
}
@media (min-width: 767px) {
    .uminokyoto-tango-tw .title-mv .big > .font-willer {
        font-size: 116px;
    }
    .uminokyoto-tango-tw .title-mv .tw-big {
        font-size: 94px;
    }
}
@media (max-width: 330px) {
    .uminokyoto-tango-tw .title-mv .big > .font-willer {
        font-size: 50px;
    }
    .uminokyoto-tango-tw .title-mv .tw-big {
        font-size: 32px;
    }
}

/* intro
-------------------------------*/
#intro .lead {
    font-size: 14px;
}
.uminokyoto-tango-tw .wrap-fix {
    padding: 8px 16px 10px 10px;
}
@media (min-width: 767px) {
    #intro .lead {
        font-size: 16px;
    }
}

/* Area
------------------------------*/
/*
.uminokyoto-tango-tw .area-sub {
    text-align: left;
}
@media (min-width: 767px) {
    .uminokyoto-tango-tw .area-sub {
        text-align: center;
    }
}
*/


