@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');
@media print {
    .nocopy {
        display: none !important;
    }
}
/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Shippori Mincho', serif;
    color: #2d3040;
    font-size: 1rem;
    line-height: 1.7;
}
.or {
    color: #da4741;
} /*209,72,45*/
.bl {
    color: #007285;
} /*107,176,222*/
/* ------------
 * font-family
 ------------ */
.copyright, .entry-date, nav, .button-arrow, .caststaff-credit h3 {
    font-family: "Roboto", sans-serif;
}
.scrolldown, h2 span, .ticket-area h2 {
    font-family: 'Shippori Mincho', serif;
}
h2 {
    font-family: "Allura", cursive;
}
@keyframes bgiLoop {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 500px -500px;
    }
}
/* ------------
* common 
 ------------ */

img {
  -webkit-user-drag: none; /* Chrome, Safari, Opera */
  -khtml-user-drag: none;  /* Konqueror */
  -moz-user-drag: none;    /* Firefox */
  -o-user-drag: none;      /* Opera */
  user-drag: none;         /* Standard property */
    
    
      -webkit-user-select: none;  /* テキスト選択防止 */
    -webkit-touch-callout: none; /* 長押しメニュー防止 */
    user-select: none;
}
  a img {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    user-select: none;
  }
ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    color: #555555;
    outline: none;
    text-decoration: none;
}
a:hover, a:active {
    text-decoration: none;
}
*:focus {
    outline: none;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
a:hover img {
    opacity: 0.7;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}
.text-center {
    text-align: center;
    margin: 0 auto;
}
.text-left {
    text-align: left;
    margin: 0;
}
.text-right {
    text-align: right;
    margin: 0;
}
.pink {
    color: #007285;
}
.blue {
    color: #4e74a9;
}
.skyblue {
    color: #47ceff;
}
p {
    text-align: justify;
}
#wrapper {
    top: 0;
    padding: 0;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#main-area {}
.maincopy-area {
    margin: auto;
    text-align: center;
    background: #666;
}
.maincopy {
    padding: 20px 0;
    width: 90%;
    max-width: 860px;
    min-height: 100px;
}
@media screen and (max-width:767px) {} /**/
.award {
    margin-bottom: 40px;
}
.award ul {
    font-size: 0.9rem;
    list-style: none;
    padding-left: 0;
}
.award li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.award li span.year {
    font-weight: 700;
    color: #007285;
    display: inline-block;
    width: 110px;
}
.award .award-category {
    font-weight: bold;
    color: #444;
}
.award .award-winner {
    color: #007285;
    font-style: italic;
}
.award .note {
    font-size: 0.9em;
    color: #666;
}
.award li:hover {
    background-color: #eaf4ff;
    transition: background-color 0.3s;
}
h2 {
    color: #007285;
    font-size: 4.8rem;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    max-width: 600px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.05em;
}
h2 span {
    display: block;
    font-size: 1rem;
    line-height: 1.1;
    letter-spacing: 0;
    font-weight: 400;
}
.h2-area h2 {
    text-align: right;
    margin: -60px 0 20px auto;
    padding-right: 60px;
}
h3 {
    color: #007285; /*#0069A0;*/
    font-size: 1.5rem;
    margin: 0 auto;
    padding: 30px 0;
}
@media screen and (max-width:992px) {
    h2 {
        font-size: 3rem;
    }
    .h2-area h2 {
        text-align: center;
        margin: 0 auto 20px auto;
        padding-right: 0;
    }
} /**/
/* ------------------------------------------------------------------- 
 * loading
 * ------------------------------------------------------------------- */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9), rgba(58, 64, 64, 0.95), rgba(102, 100, 79, 1));
    background-size: 300% 300%;
    animation: backgroundShift 16s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 9999;
    backdrop-filter: blur(1.5px);
}
.loading-content {
    text-align: center;
    animation: fadeText 2s ease-in-out infinite;
    z-index: 2; /* 上に表示 */
}
.text {
    display: inline-block;
    width: clamp(120px, 30vw, 300px);
    height: auto;
}
.text img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}
@keyframes backgroundShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1.1);
        opacity: 0;
    }
}
@keyframes fadeText {
    0% {
        opacity: 0.4;
        transform: scale(0.98);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0.4;
        transform: scale(0.98);
    }
}
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100; /* ナビより下、背景より上 */
}
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.2); /* 少し透けた白 */
    border-radius: 50%;
    pointer-events: none;
    animation: drift 8s linear infinite;
}
/* 漂うアニメーション（ゆっくりフェードアウト） */
@keyframes drift {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-50vh) scale(1.5); /* 少し縮小 */
        opacity: 0.5; /* 最後の透明度を少し調整 */
    }
}
/* ------------------------------------------------------------------- 
 * top 
 * ------------------------------------------------------------------- */
#top {
    position: relative;
    width: 100%;
    transition: 0.3;
    overflow: hidden;
}
#top.active {
    opacity: 1;
}
#top .bg_mc {
    z-index: 1;
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: auto;
    text-align: center;
    pointer-events: none;
    transform: scale(1);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 1s ease; /* filterに2秒の遷移を追加 */
    filter: blur(30px); /* 初期状態でブラーをかける */
}
#top .bg_mc.active {
    filter: blur(0); /* .activeクラスがついたときにブラーを解除 */
}
#top .bg_mc img {
    width: 100%;
    height: auto;
}
#top .title_logo {
    position: absolute;
   top: 55%;
    left: 1%;
    width: 30%;
    height: auto;
    z-index: 999;
    opacity: 1;
    display: block;
}
#top .copy {
    position: absolute;
    top: 79%;
    right: 2%;
    width: 22%;
    height: auto;
    z-index: 999;
    opacity: 1;
}
#top .copy img {
    width: 100%;
    height: auto;
}
@keyframes blurblur {
    0% {
        filter: blur(30px);
        transform: scale(1.2);
    }
    66.6% {
        filter: blur(0);
        transform: scale(1);
    }
    100% {
        filter: blur(0);
        transform: scale(1);
    }
}
@keyframes fadeup {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ------------------------------------------------------------------- 
 * responsive:
 * top 
 * ------------------------------------------------------------------- */
@media screen and (max-width:992px) {
    #top {}
    #top .bg_mc {}
    #top .bg_mc img {}
    #top .title_logo {
        top: 51.7%;
        left: -1%;
        width: 78%;
    }
    #top .copy {
        display: none;
    }
} /**/
@media screen and (max-width:768px) {
    #top .title_logo {
        top: 48%;
        left: -1%;
        width: 90%;
    }
} /**/
/* ------------------------------------------------------------------- 
 * topics
 * ------------------------------------------------------------------- */
#topics {
    margin: 0 auto;
    padding: 60px 0;
    background-image: url("../img/ice_age.png");
}
.topics-content {
    padding: 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.topics-L {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.topics-R {
    z-index: 9;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.homenews {
    width: auto;
    margin: 0 auto 0;
    height: 150px;
    overflow: auto;
    background: #fffffe;
    padding: 1rem 2rem;
    background-color: #fffffe;
    color: #555555;
    font-weight: bold;
    text-align: center;
}
#feed {
    width: 100%;
}
#feed ul.entry {
    margin-left: 30px;
}
#feed ul.entry li {
    line-height: 1.2;
    padding: 20px;
    margin: 0;
    text-align: left;
    font-size: 0.9rem;
    margin-bottom: 10px;
    border-bottom: 1px solid #cac4bd;
}
#feed ul.entry li a, #feed ul.entry li a:visited {
    color: #333;
    text-decoration: none;
}
#feed ul.entry li .entry-date {
    color: #c34949;
    margin-right: 10px;
}
.kokuchi-area {
    padding: 15px 0 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px auto 0;
    text-align: center;
    width: 100%;
    max-width: 1080px;
}
.kokuchi-L {
    width: 32%;
    max-width: 352px;
    margin: 0 auto;
    text-align: center;
}
.kokuchi-C {
    width: 32%;
    max-width: 352px;
    margin: 0 auto;
    text-align: center;
}
.kokuchi-R {
    width: 32%;
    max-width: 352px;
    margin: 0 auto;
    text-align: center;
}
.kokcuhi-img {
    width: 90%;
    max-width: 350px;
}
.newsarea-kokuchi {
    width: 60%;
    max-width: 60%;
    margin: auto;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * topics
 * ------------------------------------------------------------------- */
@media screen and (max-width:1240px) {
    #topics {
        padding: 30px 0;
        width: 100%;
        max-width: 100%;
    }
    .topics-content {
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
        max-width: 90%;
    }
    .topics-L {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .topics-C {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .topics-R {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .homenews {
        margin: 15px auto 0;
        padding: 15px;
        min-width: 80%;
        min-height: 200px;
    }
    #feed {
        width: 100%;
    }
    #feed ul.entry {
        margin: 0 auto;
    }
    #feed ul.entry li {
        line-height: 1.8;
    }
    #feed ul.entry li .entry-date {
        display: block;
    }
} /**/
@media screen and (max-width:992px) {
    #topics {
        min-height: auto;
    }
    .topics-content {
        padding: 0;
        width: 100%;
        display: block;
        margin: 0 auto 30px;
        text-align: center;
        max-width: 90%;
    }
    .kokuchi-area {
        display: block;
        padding: 0 0 30px;
        text-align: center;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }
    .kokuchi-L {
        width: 100%;
        max-width: 70%;
        margin: 0 auto 30px;
        text-align: center;
    }
    .kokuchi-C {
        width: 100%;
        max-width: 70%;
        margin: 0 auto 30px;
        text-align: center;
    }
    .kokuchi-R {
        width: 100%;
        max-width: 70%;
        margin: auto;
        text-align: center;
    }
    .kokcuhi-img {
        width: 80%;
        max-width: 80%;
    }
    .newsarea-kokuchi {
        width: 60%;
        max-width: 60%;
        margin: auto;
    }
    ul.entry li .entry-date {
        display: block;
    }
} /**/
@media screen and (max-width:768px) {
    #topics {}
    .kokuchi-L {
        width: 100%;
        max-width: 90%;
        margin: 0 auto 40px;
    }
    .kokuchi-C {
        width: 100%;
        max-width: 90%;
        margin: 0 auto 40px;
    }
    .kokuchi-R {
        width: 100%;
        max-width: 90%;
    }
    .kokcuhi-img {
        width: 90%;
        max-width: 90%;
    }
    .newsarea-kokuchi {
        width: 80%;
        max-width: 80%;
        margin: auto;
    }
} /**/
/* ------------------------------------------------------------------- 
 * video
 * ------------------------------------------------------------------- */
#video {
    background-color: #f5fafd;
    padding-bottom: 60px;
}
#video .videos {
    color: #eee;
    width: 100%;
    max-width: 80%;
    padding: 25px 0;
    margin: 0 auto;
    text-align: center;
}
.movie--node {
    position: relative;
    padding-top: calc(9/16 * 100%);
}
#video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#video p {
    margin: 0 auto;
    text-align: center;
}
#video p span {
    color: #007285;
    background: linear-gradient(transparent 5%, #fff 5%);
    padding: 0 5px;
}
.col_1 {
    width: 100%;
    max-width: 100%;
}
.col_2 {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.col_2 > div {
    width: 48%;
    margin: auto;
    padding: 0 1% 1% 0;
}
.col_2 > div > div {
    position: relative;
    overflow: hidden;
}
.col_3 {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.col_3 > div {
    width: 32.2%;
    padding: 0 1% 1% 0;
}
.col_3 > div > div {
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 992px) {
    #video .videos {
        padding: 0;
        width: 100%;
        max-width: 80%;
        background: none;
    }
    .col_2, .col_3 {
        display: block;
    }
    .col_2 > div {
        width: 100%;
        padding: 20px 0 20px 0;
    }
    .col_3 > div {
        width: 100%;
        padding: 20px 0 20px 0;
    }
} /*end*/
/* ------------------------------------------------------------------- 
 * intro
 * ------------------------------------------------------------------- */
#intro {
    padding: 30px 0;
}
#intro .intro-area {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;
    margin: 0 auto;
    z-index: 1;
    left: 0;
}
.staggered-gallery {
    width: 37%;
    display: flex;
    gap: 10px; /* 写真の間隔 */
align-items: center;
}
.staggered-gallery figure {
    margin: 0;
    position: relative; top: -5%;
}
.staggered-gallery figure:nth-child(2) {
    top: 5%;
}
.staggered-gallery figure:nth-child(3) {
    top: -2%;
}
.staggered-gallery img {
    width: 90%; /* お好みで調整 */
    height: auto;
    display: block;
}
#intro .intro-area .content {
    width: 60%;
    color: #333;
    position: relative;
    right: 0;
    top: 0;
    z-index: 2;
    padding-bottom: 20px;
}
#intro .intro-area .content .content-area {
    padding: 0 ;
}
#intro .intro-area .content-area p {
    margin: 0 0 15px 0;
}
#intro .intro-area .content-area p strong {
    background: linear-gradient(transparent 80%, #ad1326 80%);
}
#intro .intro-area2 .content {
    width: 100%;
    max-width: 60%;
    margin: 30px auto 60px;
}
#intro .intro-area2 .content p {
    padding-bottom: 20px;
    margin: auto;
}

#intro h3 {
    text-align: center;
    margin: auto;
}


#intro #story p {
    text-align: center;
    font-size: 1.1rem;
    padding-bottom: 20px;
    margin: auto;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * intro
 * ------------------------------------------------------------------- */
@media screen and (max-width:992px) {
    #intro .intro-area {
        display: block;
    }
    .staggered-gallery {
    width:  90%;
    display: flex;
    gap: 10px; /* 写真の間隔 */
align-items: right;
}
    
    #intro .intro-area .content {
        width: 90%;
        margin: 0 auto;
        top: 0;
        border: none;
    }
    #intro .intro-area .content .content-area {
        width: 100%;
        padding: 0;
    }
    #intro .intro-area .img {
        width: 90%;
    }
    #intro .intro-area2 .content {
        max-width: 90%;
    }
    
    
    #intro #story p {
    text-align: center;
    font-size: 1rem;
    padding-bottom: 20px;
    margin: auto;
}
 #intro h3 {
    text-align:left;
    margin: auto;
}
   
    
} /**/
.fly .img {
    width: 45%;
    z-index: 1;
    margin: auto;
    padding: 0;
   left: 0;
}
/* ------------------------------------------------------------------- 
 * accordion
 * ------------------------------------------------------------------- */
.accordion-title {
    box-sizing: border-box;
    max-width: 700px;
    cursor: pointer;
    background-color: #eee;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}
.accordion-title.close {
    background-color: #ccc;
}
.accordion-box {
    box-sizing: border-box;
    max-width: 700px;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease;
    background: #f9f9f9;
    margin: 0 auto 10px;
    padding: 0 15px;
}
.accordion-box.opening, .accordion-box.opened {
    padding: 15px;
}

@media screen and (max-width:992px) {
.accordion-title,.accordion-box {
    max-width: 90%;
}
}
/* ------------------------------------------------------------------- 
 * schedule
 * ------------------------------------------------------------------- */
#schedule {
    padding: 0 0 60px;
    width: 100%;
}
.sch {
    width: 100%;
    max-width: 700px;
    padding: 0;
}
.map-geigeki {
    width: 100%;
    max-width: 700px;
    padding: 0;
}
.ticket-area {
    width: 100%;
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
}
table.tabledesign h2 {
    font-size: 2rem;
    color: #007285;
    font-weight: 700;
    padding-top: 10px;
}
table.tabledesign h3 {
    font-size: 1rem;
    margin: auto;
    text-align: center;
    padding: 0;
}
table.tabledesign .date {
    font-size: 2rem;
    padding: 0;
    margin: auto;
    font-weight: 700;
}
table.tabledesign .venue {
    font-size: 2rem;
    padding: 0;
    margin: auto;
    font-weight: 700;
}
.tour table.tabledesign .date {
    font-size: 1.5rem;
    padding: 0;
    margin: auto;
    font-weight: 700;
}
.tour table.tabledesign .venue {
    font-size: 1.5rem;
    padding: 0;
    margin: auto;
    font-weight: 700;
}
table.tabledesign {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
}
table.tabledesign th:first-child {
    border-top: solid 1px #007285;
    background: #f9f9f9;
}
table.tabledesign td:first-child {
    border-top: solid 1px #007285;
}
table.tabledesign th {
    width: 26%;
    vertical-align: top;
    padding: 1%;
    border-bottom: solid 1px #007285;
    color: #999;
}
table.tabledesign td {
    width: 64%;
    text-align: left;
    padding: 1% 1% 1% 2%;
    border-bottom: solid 1px #999;
}
.price-list {
    max-width: 300px;
    margin: 20px;
}
.price-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid #ccc;
}
.price-item:last-child {
    border-bottom: none;
}
.seat-type {
    font-weight: bold;
}
.price {
    text-align: right;
}
.tourline {
    padding: 5%;
}
.logo-josei img {
    width: 68%;
    padding: 0;
    display: block;
    margin: 0;
}
/* ナビゲーションスタイル */
/* ナビゲーション全体のスタイル */
.tour-nav {
    margin: 30px auto;
    padding: 10px 20px;
    width: 90%;
    max-width: 960px;
    background: #fff; /* 背景色を白に設定 */
}
.tour-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.tour-nav ul li {
    position: relative;
    font-size: 18px;
}
.tour-nav ul li a {
    background: transparent;
    color: #333; /* 文字色を黒に設定 */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid transparent;
    display: inline-block;
    position: relative;
    background-color: #f1f1f1; /* ホバー時に背景色を変更 */
}
.tour-nav ul li a:hover {
    color: #333;
}
.tour-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #4a4f47; /* 下線の色 */
    transition: width 0.3s ease, left 0.3s ease;
}
.tour-nav ul li a:hover::after {
    width: 100%;
    left: 0;
}
/* 選択中のタブ */
.tour-nav ul li a.active {
    background-color: #4a4f47; /* 選択中のタブ背景 */
    color: white; /* 文字色を白に変更 */
    border-color: #4a4f47; /* 境界線の色を選択色に変更 */
}
.tour-nav ul li a.active::after {
    width: 100%;
    left: 0;
    background-color: white; /* 選択中の下線色 */
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
    .tour-nav {
        padding: 8px 16px;
    }
    .tour-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    .tour-nav ul li a {
        font-size: 16px;
        padding: 10px 20px;
    }
}
/* ------------------------------------------------------------------- 
 * responsive:
 * ticket
 * ------------------------------------------------------------------- */
@media screen and (max-width:1300px) {
    .ticket-area {
        max-width: 90%;
    }
} /**/
@media screen and (max-width:992px) {
    #schedule {
        padding: 0 0 60px;
        width: 100%;
        max-width: 100%;
    }
    .ticket-area {
        width: 100%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }
    table.tabledesign h2 {
        font-size: 1.5rem;
        padding-top: 0;
    }
    table.tabledesign .date {
        font-size: 1.5rem;
    }
    table.tabledesign .venue {
        font-size: 1.5rem;
    }
    .tour table.tabledesign .date {
        font-size: 1.1rem;
    }
    .tour table.tabledesign .venue {
        font-size: 1.1rem;
    }
} /*end*/
@media screen and (max-width:768px) {
    table.tabledesign th, table.tabledesign td {
        display: block;
        width: 100%;
    }
    .logo-josei img {
        width: 100%;
    }
} /**/
/* ------------------------------------------------------------------- 
 * caststaff
 * ------------------------------------------------------------------- */
/* ローダー画面全体 */
#otherloader {
    position: fixed;
    z-index: 9999;
    background: #ffffff;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.8s ease, visibility 1.8s ease;
}
/* ロゴラッパー */
.logo-loading {
    animation: softZoomOut 2.4s ease-in-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}
/* ロゴ自体 */
.loading-logo {
    width: 150px;
}
/* wrapper本体をあとから表示 */
#otherpage #wrapper {
    opacity: 0;
    transition: opacity 1.8s ease;
}
/* ローディング終了時 */
#otherloader.hidden {
    opacity: 0;
    visibility: hidden;
}
/* やさしいスケーリング＆フェード */
@keyframes softZoomOut {
    0% {
        transform: scale(1.6);
        opacity: 0;
    }
    30% {
        transform: scale(1.3);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
.header-logo {
    margin: 60px 0 0 60px;
    width: 80%;
    max-width: 25%;
}
@media screen and (max-width:992px) {
    .header-logo {
        margin: 0 0 0 20px;
        width: 80%;
        max-width: 35%;
    }
} /**/
#caststaff {
    padding: 0 0 60px 0;
}
/* PC用の表示（3列） */
#caststaff .section_inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PCでは3列表示 */
    gap: 20px; /* アイテム間の間隔 */
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}
/* キャラクターのコンテナのスタイル */
.charactor1 {
    position: relative;
    text-align: center;
    padding: 1%;
}
.charactor1 img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
.zoomIn img {
    transform: scale(1);
    transition: 0.6s ease-in-out;
}
.zoomIn img:hover {
    transform: scale(1.3);
}
/* 画像のマスク */
.mask {
    display: block;
    line-height: 0;
    overflow: hidden;
}
.cast-name {
    font-size: 1.5rem;line-height: 1.2;
    font-weight: 700;
    margin-top: 2px;
}
.cast-name span{font-weight: 400;
    font-size: 0.9rem;
    margin-top: 10px;
}

   .cast-name-s {
        font-size: 1.35rem;
        font-weight: 700;
        letter-spacing: 0;
        margin-top: 2px;
    }
.cast-name-s span{font-weight: 400;
    font-size: 1rem;
    margin-top: 10px;
}

.caststaff-credit {
    border-top: 1px solid #007285;
    border-bottom: 1px solid #007285;
    width: 90%;
    margin: 60px auto 0;
    padding: 2% 8%;
}
.caststaff-credit-contents {
  display: flex;align-items:flex-start;
}
.caststaff-credit-contents-L {
    width: 50%;
}
.caststaff-credit-contents-R {
    width: 50%;
    padding-top: 5%;
}


@media screen and (max-width:1360px) {
    #caststaff {
        padding: 0;
    }
    .caststaff-credit {
        padding: 2% 0 4%;
    }
    .caststaff-credit-contents {
        display: block;
        width: 100%;
    }
    .caststaff-credit-contents-L {
        width: 100%;
    }
    .caststaff-credit-contents-R {
        width: 100%;
        padding-top: 2%;
        font-size: 0.9rem;
    }
    .cast-name-s {
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        margin-top: 10px;
    }
    .charactor1 {
        margin-bottom: 30px;
    }
} /**/
/* スマホ用の表示（1列） */
@media (max-width: 768px) {
    #caststaff .section_inner {
        grid-template-columns: 1fr; /* スマホでは1列表示 */
        max-width: 60%; /* 幅を100%に設定 */
        gap: 10px; /* アイテム間の間隔を少し狭める */
    }
} /**/
/*==================================================
矢印ボタンキャスト
===================================*/
.button-arrow {
    display: inline-block;
    width: 80%;
    padding: 0px 40px 0px 10px;
    text-align: center;
    color: #ccc;
    margin: 8px 0 0 0;
    border: 1px solid #accc;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    background: #007285;
}
.button-arrow::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 10px;
    width: 20px;
    height: 5px;
    border: none;
    border-right: 2px solid #ccc;
    border-bottom: 1px solid #ccc;
    transform: skew(45deg);
    transition: .3s;
}
.button-arrow:hover {
    background: #da4741;
}
.button-arrow:hover::after {
    right: 5px;
    width: 30px;
}
/*==================================================
モアニュース
===================================*/
.buttonmore-area {
    text-align: right;
}
.button-more {
    display: inline-block;
    width: 300px;
    padding: 0px 40px 0px 10px;
    text-align: center;
    color: #007285;
    ;
    background: #f5f5f5;
    margin: 8px 0 0 0;
    border: 1px solid #999;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}
.button-more::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 10px;
    width: 20px;
    height: 5px;
    border: none;
    border-right: 2px solid #007285;
    ;
    border-bottom: 1px solid #007285;
    ;
    transform: skew(45deg);
    transition: .3s;
}
.button-more:hover {
    background: #da4741;
}
.button-more:hover::after {
    right: 5px;
    width: 30px;
}

@media screen and (max-width:992px) {
.buttonmore-area {
    text-align:center;margin: auto;
}
}/**/

/*==================================================
staff-more
===================================*/
.button-staff-more {
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    width: 160px;
    padding: 5px 30px 5px 20px;
    text-align: center;
    border: 1px solid #2d3040;
    margin: 1rem 0;
    background-color: #fbf2ec;
    color: #007285;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}
.button-staff-more::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 20px;
    height: 5px;
    border: none;
    border-right: 2px solid #2d3040;
    border-bottom: 1px solid #2d3040;
    transform: skew(45deg);
    transition: .3s;
}
.button-staff-more:hover {
    background: #ffffcc;
    color: #2d3040;
}
.button-staff-more:hover::after {
    right: 10px;
    width: 30px;
    border-right: 2px solid #007285;
    border-bottom: 1px solid #007285;
}
/* ------------------------------------------------------------------- 
 * チケットボタン
 * ------------------------------------------------------------------- */
.ticket-button {
    font-size: 1.1rem;
    display: inline-block;
    width: 80%;
    max-width: 600px;
    padding: 10px 40px 10px 10px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    background: #ff6666;
    font-weight: 700;
    margin: 15px 0 0 0;
    border: 1px solid #aaa;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}
.ticket-button::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 20px;
    height: 5px;
    border: none;
    border-right: 2px solid #ccc;
    border-bottom: 1px solid #ccc;
    transform: skew(45deg);
    transition: .3s;
}
.ticket-button:hover {
    background: #007285;
}
.ticket-button:hover::after {
    right: 5px;
    width: 30px;
}
/* ------------------------------------------------------------------- 
 * button-other
 * ------------------------------------------------------------------- */
#news article p.button-other-area a, #news article p.button-other-area a:visited {
    color: #fffffe;
    text-decoration: none;
}
#news article p .button-other {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 700;
    display: inline-block;
    width: 240px;
    min-height: 30px;
    padding: 15px 30px 11px 20px;
    text-align: center;
    background: #fcaa3f;
    color: #fffffe;
    border: solid 1px #fffffe;
    border-radius: 30px;
    margin: 1rem 0 0;
    /*background: #f5f5f5f5;*/
    cursor: pointer;
    position: relative;
    text-decoration: none;
}
#news article p .button-other::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    width: 20px;
    height: 5px;
    border: none;
    border-right: 2px solid #fffffe;
    border-bottom: 1px solid #fffffe;
    transform: skew(45deg);
    transition: .3s;
}
#news article p .button-other:hover {
    background: #007285;
}
#news article p .button-other:hover::after {
    right: 10px;
    width: 30px;
    border-right: 2px solid #fffffe;
    border-bottom: 1px solid #fffffe;
}
#news article .col_2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
#news article .col_2 > * {
    width: calc(50% - 6px);
    margin-right: 12px;
    margin-bottom: 12px;
}
#news article .col_2 > *:nth-child(2n) {
    margin-right: auto;
}
#news article .col_2 > * > * {
    position: relative;
    overflow: hidden
}
.goodstorelink {
    margin: 15px auto;
    text-align: center;
}
.goodstorelink img {
    width: 60%;
    max-width: 60%;
}
@media screen and (max-width:992px) {
    #news article .col_2 > * {
        width: 100%;
        margin-right: auto;
    }
    .goodstorelink img {
        width: 100%;
        max-width: 80%;
    }
} /*/
/* ------------------------------------------------------------------- 
 * overlay banner
 * ------------------------------------------------------------------- */

/*==================================================
告知ボタン
===================================*/
.button-kokuchi {
  font-size: 1em;
  font-weight: 700;
  display: inline-block;
background-image: linear-gradient(to top, #ff6666 0%, #ff6666 100%);
  color: #fff;
  width: 65%;
  padding:15px 30px 15px 20px;
  text-align: center;
  margin: 0;
  cursor: pointer;
  position: relative;
  text-decoration: none;line-height: 1.4;
}
.button-kokuchi::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 20px;
  height: 5px;
  border: none;
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  transform: skew(45deg);
  transition: .3s;
}
.button-kokuchi:hover {
  background: #fff;color: #ff6666;
}
.button-kokuchi:hover::after {
  right: 10px;
  width: 30px;
  border-right: 2px solid #ff6666;
  border-bottom: 1px solid #ff6666;
}


.foot-kokuchi img {
  width: 130px;
  height: 133px;
}
.foot-kokuchi-img {
  width: 100%;
}
.foot-adjust {
  padding-left: 30px;
}
.fix-pc {font-size: 0.9em;
  position: fixed;
  animation-name: fadey_bottom_start;
  animation-duration: 8s;
  z-index: 9998;
  bottom: 10px;left: 1%;
	   /*transform: translateX(-50%);*/
}
.fix-pc-wrap {
  margin: 0;
  line-height: 1;
}
.fix-pc-wrap a {
  position: relative;
  padding: 0.8em 0.8em 1em;
  min-width:360px;
  transition: 0.3s;
}
.fix-pc-wrap a:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
/* ------------------------------------------------------------------- 
 * responsive:
 * overlay banner
 * ------------------------------------------------------------------- */
@media screen and (max-width:1024px) {
  .foot-kokuchi img {
    width: 90px;
    height: 99px;
  }
  .foot-kokuchi-img {
    width: 90px;
  }
  .foot-adjust {
    padding-left: 0px;
  }
  .fix-sp {
    width: 100%;
    max-width: 100%;
    position: fixed;
    animation-name: fadey_bottom_start;
    animation-duration: 8s;
    z-index: 9998;
left: 50%;
	   transform: translateX(-50%);
    bottom: 0;
  }
  .fix-sp-wrap {
    margin: 0;
    line-height: 1;
  }
  .fix-sp-wrap a {
    position: relative;width: 96%;
  padding: 0.8em 0.8em 1em;
    transition: 0.3s;
  }
  .fix-sp-wrap a:hover {
    opacity: 0.9;
    filter: alpha(opacity=90);
  }
} /*end*/
@keyframes fadey_bottom_start {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*-------------------------------------------------------------------*/
.mt-1, .pt-1 {
    padding-top: 0.5em;
}
.mt-2, .pt-2 {
    padding-top: 1em;
}
.mt-3, .pt-3 {
    padding-top: 1.5em;
}
.mt-4, .pt-4 {
    padding-top: 2em;
}
.mt-5, .pt-5 {
    padding-top: 2.5em;
}
.mb-1, .pb-1 {
    padding-bottom: 0.5em;
}
.mb-2, .pb-2 {
    padding-bottom: 1em;
}
.mb-3, .pb-3 {
    padding-bottom: 1.5em;
}
.mb-4, .pb-4 {
    padding-bottom: 2em;
}
.mb-5, .pb-5 {
    padding-bottom: 2.5em;
}
/* ------------------------------------------------------------------- 
 * e.t.c
/*-------------------------------------------------------------------*/
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
/* ------------------------------------------------------------------- 
 * responsive:
 *  e.t.c
 * ------------------------------------------------------------------- */
@media screen and (max-width: 992px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
} /*end*/
/*===========================================================*/
/*ナビ
/*===========================================================*/
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
/*-----------------------------------------------------------
  ナビ背景（初期状態・フェード・スクロール後）
-----------------------------------------------------------*/
#nav-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    pointer-events: auto;
    transition: all 2.4s ease;
    transform: translateY(0);
    opacity: 1;
}
#nav-bg.preload {
    opacity: 0;
    transform: translateY(-20px);
}
#nav-bg.fadein {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}
#nav-bg.fixed {
    background: #da4741;
}
#otherpage #nav-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    pointer-events: auto;
    transition: all 2.4s ease;
    transform: translateY(0);
    opacity: 1;
}
#otherpage #nav-bg.fixed {
    background: #da4741;
}
/*-----------------------------------------------------------
  ハンバーガーボタン（スマホ表示用／右上固定）
-----------------------------------------------------------*/
.openbtn {
    z-index: 10002;
    position: fixed;
    display: none;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 30px;
    cursor: pointer;
}
.openbtn span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.4s ease;
    border-radius: 2px;
}
.openbtn span:nth-child(1) {
    top: 6px;
}
.openbtn span:nth-child(2) {
    top: 13px;
}
.openbtn span:nth-child(3) {
    top: 20px;
}
.openbtn.active span:nth-child(1) {
    top: 13px;
    transform: rotate(45deg);
}
.openbtn.active span:nth-child(2) {
    opacity: 0;
}
.openbtn.active span:nth-child(3) {
    top: 13px;
    transform: rotate(-45deg);
}
/*-----------------------------------------------------------
  ナビメニュー表示（PCとスマホ）
-----------------------------------------------------------*/
#g-nav {
    z-index: 10001;
    position: relative;
    display: flex;
    justify-content: center;
}
/*-----------------------------------------------------------
  レスポンシブ対応（スマホ用：992px以下）
-----------------------------------------------------------*/
@media screen and (max-width: 992px) {
    .openbtn {
        display: block;
    }
    #g-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95); /* 半透明の白背景 */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        /* アニメーション用 */
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    #g-nav.panelactive {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .gnavi {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .gnavi li {
        padding: 20px;
        border-bottom: 1px solid #ccc;
        text-align: center;
    }
    .gnavi li a {
        text-decoration: none;
        color: #333;
        font-weight: 700;
        font-size: 1.2rem;
    }
}
/*-----------------------------------------------------------
  PC表示（991px以上）
-----------------------------------------------------------*/
@media screen and (min-width: 991px) {
    .gnavi {
        display: flex;
        justify-content: center;
        gap: 40px;
        padding: 10px 0;
        list-style: none;
    }
    .gnavi li a {
        text-decoration: none;
        color: #fff;
        font-weight: 700;
        font-size: 1.2rem;
        transition: color 0.3s;
    }
    .gnavi li a:hover {
        color: #007285;
    }
}
footer .footer {
    width: 100%;
    display: flex;
    padding-top: 2%;
    justify-content: center;
    align-items: center;
}
footer .footer .footer_logo {
    width: 100%;
    max-width: 260px;
    margin: 0 5% 5%;
    opacity: .8;
}
footer .footer .footer_credit {
    width: 100%;
    max-width: 540px;
    margin: 0 5% 0 0;
    opacity: .8;
}
footer .footer .sns {
    width: 100%;
    max-width: 200px;
    margin: 5% auto 0 0;
    opacity: .8;
}
footer div.follow {
    display: flex;
    align-items: stretch;
    text-align: center;
    margin: 0;
    max-width: 200px;
    padding: 10px 0 30px;
}
footer div.follow li {
    text-align: center;
    margin: auto;
    padding: 2%;
}
footer div.follow img {
    width: 50px;
    height: 50px;
}
footer .copyright {
    background: #da4741;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-size: 0.7em;
    padding: 10px 0;
}
@media screen and (max-width: 992px) {
    footer .footer {
        display: block;
    }
    footer .footer .footer_logo {
        margin: auto;
        width: 100%;
        max-width: 50%;
        padding: 8% 0;
    }
    footer .footer .sns {
        margin: auto;
        padding: 0;
        width: 100%;
        max-width: 50%;
    }
    footer .footer .footer_credit {
        margin: auto;
        width: 100%;
        max-width: 90%;
        padding: 8% 0;
    }
} /*end*/
@media screen and (max-width: 768px) {
    footer .copyright {
        font-size: 0.5em;
    }
} /*end*/
.fadeIn {
    opacity: 0;
    transition: 1s;
    transform: translateY(0px);
}
.fadeIn.is-inview {
    transform: translateY(0);
    opacity: 1;
}
.fadeInUp {
    opacity: 0;
    transition: 1s;
    transform: translateY(20px);
}
.fadeInUp.is-inview {
    transform: translateY(0);
    opacity: 1;
}
.blurUp {
    opacity: 0;
    transition: 2s;
    filter: blur(30px);
    transform: scale(1.2);
}
.blurUp.is-inview {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}
.blurUpLeft {
    opacity: 0;
    transition: 1s;
    filter: blur(50px);
    clip-path: inset(5%);
}
@media screen and (max-width: 992px) {
    .blurUpLeft {
        clip-path: inset(5%);
    }
}
.blurUpLeft.is-inview {
    opacity: 1;
    clip-path: inset(0%);
    filter: blur(0);
    transform: scale(1);
}
.clipDown {
    opacity: 0;
    transition: 2s;
    clip-path: inset(0% 0% 100% 0);
}
.clipDown.is-inview {
    clip-path: inset(0%);
    opacity: 1;
}
.fadeInLine {
    width: 100%;
    opacity: 0;
    background: #007285;
    height: 1px;
    transform: translate(-100%, 0);
    transition: 1s;
}
.fadeInLine.is-inview {
    transform: translate(0, 0);
    opacity: 1;
}
/* ------------------------------------------------------------------- 
 * etc
 * ------------------------------------------------------------------- */
ul.kome {
    font-size: 0.9rem;
    list-style-type: none;
    padding-left: 1em;
    margin-left: 0.1em;
}
ul.kome li {
    text-indent: -1.5em;
    line-height: 1.65;
}
ul.kome li:before {
    content: "※";
    margin-right: 0.5em;
}
ul.ten {
    font-size: 0.9rem;
    list-style-type: none;
    padding-left: 1em;
    margin-left: 0.1em;
}
ul.ten li {
    text-indent: -1em;
    line-height: 1.65;
}
ul.ten li:before {
    content: "·";
    margin-right: 0.5em;
}
.kome li a {
    text-decoration: underline;
}
.kome li a:hover {
    background: #ccc;
    transition: .3s;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * etc
 * ------------------------------------------------------------------- */
@media screen and (max-width:992px) {
    ul {
        font-size: 0.9rem;
    }
} /**/
/*Slide overlay*/
.gallery {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 160px;
    padding: 0 20px;
}
.image-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1); /* より自然なズームイン */
    animation-fill-mode: forwards;
}
.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #eee;
    transform: translateX(-100%);
    opacity: 1;
    animation-fill-mode: forwards;
}
@keyframes overlayAnim {
    0% {
        transform: translateX(-100%);
        opacity: 1;
    }
    25% {
        transform: translateX(0);
        opacity: 1;
    }
    55% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%); /* 左→右へ抜けることで自然さUP */
        opacity: 0;
    }
}
@keyframes imageAnim {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
/*Background*/
.ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 140, 255, 0.15);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0.7;
    animation: rippleEffect 3s ease-out forwards;
    pointer-events: none;
    filter: blur(0.3px);
    z-index: 2; /* 必要に応じて調整 */
}
@keyframes rippleEffect {
    to {
        transform: scale(14);
        opacity: 0;
    }
}
/*
---------------------------------------------
profile
---------------------------------------------
*/
.profilenote {
    background-image: url("../img/ice_age.png");
    background-repeat: repeat;
}
.profile-content {
    font-size: 0.9rem;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: top;
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
}
.profile-L {
    width: 25%;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
}
.profile-L .logo-img {
    max-width: 80%;
    padding: 1rem;
}
.title-profilename {
    font-size: 2.1rem;
    line-height: 1.1;
    text-align: center;
    margin: auto;
    padding: 1rem 0 0;
}
.title-profilename span {
    font-size: 1rem;
    letter-spacing: 0.5rem;
}
.title-alname {
    font-size: 0.9rem;
    margin-bottom: 21px;
    letter-spacing: 0.1rem;
}
.title-profile {
    font-size: 0.8rem;
}
.profile-R {
    width: 65%;
    margin: 0 auto;
    padding: 2rem 6% 1rem 3%;
    text-align: center;
}
.profile-R small {
    font-size: 1.2rem;
}
.profile-content h3 {
    font-size: 1.1em;
    color: #ccc;
    text-align: left;
    line-height: 1.8em;
    padding: 0.8em 0 0.2em 0;
    margin: 0;
}
.profile-content .red {
    color: #955a36;
    font-size: 1rem;
    margin-right: 0.5em;
}
.profile-content p {
    font-size: 1rem;
    line-height: 1.57rem;
    text-align: left;
    letter-spacing: 0.03rem;
    padding: 0;
    margin: 0;
}
p.profile-txt {
    margin-top: 1.56rem;
    font-size: 0.88rem;
    line-height: 1.56rem;
    text-align: justify;
}
p.profile-txt span {
    text-transform: uppercase;
    padding: 0 0.5em;
    font-size: 0.9rem;
    border: 1px solid #915835;
    color: #915835;
}
.note {
    width: 100%;
    padding: 0 1rem;
}
.title-comment-img {
    width: 130px;
    text-align: center;
    padding: 1rem 0 0;
}
/* ------------------------------------------------------------------- 
 * responsive:
 * profile
 * ------------------------------------------------------------------- */
@media screen and (max-width:992px) {
    .note {
        width: 100%;
        padding: 0;
       background-image: url("../img/ice_age.png");
        background-repeat: repeat;
    }
    .profile-content {
        width: 100%;
        display: block;
        margin: 0 auto;
        text-align: center;
        max-width: 86%;
    }
    .profile-L {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 20px 0 40px;
    }
    .profile-L img {
        margin: auto;
        width: 70%;
        display: block;
    }
    .title-profilename {
        font-size: 2.1rem;
        line-height: 1.1;
        text-align: center;
        margin: -15px auto 5px;
        padding: 0;
    }
    .title-profilename span {
        font-size: 1rem;
        letter-spacing: 0.5rem;
    }
    p.comment-txt {
        font-size: 1.1em;
        line-height: 1.6em;
        text-align: justify;
    }
    p.profile-txt {
        font-size: 0.8rem;
        line-height: 1.4rem;
        text-align: justify;
    }
    .profile-R {
        width: 100%;
        padding: 0 0 20px;
    }
} /*end*/