@charset "utf-8";

/*================*/
:root {
    --height-header-lsize: 75px;
    --height-header-msize: 80px;
    --height-header-ssize: 65px;
    --color-black: rgba(0,0,0,1);
    --color-white: rgba(255,255,255,1);
    --color-kuro: rgba(51,51,51,1);
    --color-transparent-01: rgba(0,0,0,0);
    --color-transparent-02: rgba(0,0,0,0.7);
    --color-gray-01: rgba(208,213,221,1);
    --color-gray-02: rgba(80,80,80,1);
    --color-gray-03: rgba(249,250,251,1);
    --color-gray-04: rgba(230,230,230,1);
    --color-base-01: rgba(214,27,62,1);
    --color-type-01a: rgba(214,27,62,1);
    --color-type-01b: rgba(252,189,190,0.4);
    --color-type-02a: rgba(214,27,62,1);
    --color-type-02b: rgba(252,189,190,0.4);
    --color-type-03a: rgba(214,27,62,1);
    --color-type-03b: rgba(252,189,190,0.4);
    --color-type-04a: rgba(231,128,46,1);
    --color-type-04b: rgba(240,196,109,0.4);
    --color-type-05a: rgba(67,192,240,1);
    --color-type-05b: rgba(131,196,240,0.4);
    --color-type-06a: rgba(120,120,120,1);
    --color-type-06b: rgba(0,0,0,0.4);
}

/*================*/
html {
    line-height: 1.0;
    /* font-family: "Noto Sans JP",sans-serif; */
    font-family: Arial, sans-serif;
    font-feature-settings: "palt" 1;
    font-weight: 500;
    font-style: normal;
    opacity: 1;
    transition-property: opacity;
    transition-duration: 0.7s;
    transition-timing-function: linear;
}
html.conceal {
    opacity: 0;
}
body {
    color: var(--color-kuro);
}
.basis {
}
main{
}
section {
    position: relative;
}
section>.inner {
    position: relative;
    margin: 0 auto 0 auto;
}
b {
    font-weight: inherit;
}
@media (max-width: 768px) {
    .is-pc {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .is-sp {
        display: none !important;
    }
}

/*================*/
.hitelm{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.figelm{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% auto;
    -webkit-backface-visibility: hidden;
}
.svgdefinition {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
}
svg.inlinesvg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    fill: rgba(0,0,0,0);
    stroke: rgba(0,0,0,0);
    stroke-width: 1;
    stroke-opacity: 1;
    stroke-linecap: butt;
    stroke-linejoin: miter;
}

/*================*/
.myanime-rotation {
    animation-name: myanime-rotation-01,myanime-rotation-02;
    animation-duration: 40s;
    animation-delay: 0s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center center;
}
@keyframes myanime-rotation-01{
      0%{rotate:    0deg;}
    100%{rotate: -360deg;}
}
@keyframes myanime-rotation-02{
      0%{scale:   1   1;}
     50%{scale: 1.6 1.6;}
    100%{scale:   1   1;}
}
/*
.myanime-shiny {
    animation-name: myanime-shiny-01;
    animation-duration: 5s;
    animation-delay: 0s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center center;
}
@keyframes myanime-shiny-01{
      0%{top:  200%;}
     20%{top: -200%;}
    100%{top: -200%;}
}
*/

/* ================================
 * 別ページへのリンク部分
 * ================================ */
.link-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 0em;
  background: white;
}

.external-link {
  display: block;
  width: 300px;
  text-decoration: none;
  color: #000;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.external-link:hover {
  transform: translateY(-5px);
}

.thumbnail img {
  width: 100%;
  height: 180px; /* ← 高さを固定（任意の数値に変更可能） */
  object-fit: cover; /* はみ出す部分はトリミング */
  display: block;
}
.link-description {
  padding: 16px;
}

.link-comment {
  margin: 0;
  color: #444;
  font-size: 0.95em;
}


/* 20250619追加 */
#simplepagetitle {
    display: none;
}

.breadcrumb {
    display: none;
}

.mainhead h1.block-title {
    color: #fff !important;
    line-height: 1;
}

h1.block-title .txt b.phrase {
    font-weight: bold !important;
}

.rope {
    line-height: 1;
}

.gl-footer-area-01_inner {
    letter-spacing: initial !important;
}

/* 20250714追加 */
.area-info.gridskin.gridskin--clear {
    grid-template-columns: 1fr !important;
}

.gridcell--clear {
    grid-row: initial !important;
    grid-column: initial !important;
}

.inlinesvg.inlinesvg--long {
    stroke-dasharray: 0.2 !important;
}

.cell-selected:focus {
    outline: 2px solid #2684FF;
    outline-offset: 0;
    box-shadow: 0 0 0 4px white;
}

.item:focus .txt {
    border: 2px solid #2684FF;
    outline-offset: 0;
    box-shadow: 0 0 0 4px white;
}

.figelm + p.figcaption {
    font-size: 13px;
}

@media (max-width: 768px) {
    .figelm + p.figcaption {
        font-size: 3.6vw;
    }
}

.figelm + p.figcaption--lion {
    font-size: 15px;
}

@media (max-width: 768px) {
    .figelm + p.figcaption--lion {
        font-size: 4.2vw;
    }
}

section.recommend .area-info.gridskin:has(.cell-jump) {
    grid-template-columns: 1fr;
}

section.recommend .area-info.gridskin .gridcell:has(.cell-jump) {
    padding: 0;
}