
@charset "utf-8";

:root {
  color-scheme: light dark;
  font-size: 14px;
  
  --width-pc: 1170px;
  --width-arrow: 30px;
  
  --root-size: 14;
  --h1mn-size: 24;
  --h1mx-size: 40;
  --h2mn-size: 20;
  --h2mx-size: 32;
  --smn-size: 12;
  --smx-size: 14;
  --vmx-width: 1280;
  --vmn-width: 375;
  
  --clr-blk: #000000;
  --clr-ivr: #333132;
  --clr-cha: #4e454a;
  --clr-dim: #696969;
  --clr-gry: #808080;
  
  --clr-drk: #A9A9A9;
  --clr-sil: #C0C0C0;
  --clr-lgy: #D3D3D3;
  --clr-gsb: #DCDCDC;
  --clr-wsm: #F5F5F5;
  
  --bgclr-drk: light-dark(var(--clr-drk),var(--clr-blk));
  --bgclr-sil: light-dark(var(--clr-sil),var(--clr-ivr));
  --bgclr-lgy: light-dark(var(--clr-lgy),var(--clr-cha));
  --bgclr-gsb: light-dark(var(--clr-gsb),var(--clr-dim));
  --bgclr-wsm: light-dark(var(--clr-wsm),var(--clr-cha));
  
  --bgclr-green: #217408;
  --bgclr-bluegreen: #048487;
  --bgclr-lightbluegreen: #04abae;
}
:where {

}


/* 基本レイアウト
-----------------------------------*/
body {
  color: #333;
  color: light-dark(#333,#fff);
  
  margin-block-start: 0;
  margin-inline-end: 0;
  margin-inline-start:0;
  &:lang(en) {
    text-wrap: pretty;
  }
}
/*@supports not(color: light-dark(white, black)) {
  body {
    color: #333;
  }
}*/

header,
footer {
  display: inline;
}

button {
  cursor: pointer;
}

.container {
  container: container / inline-size;
  /*固定ヘッダ*/
  .head-fix {
    background-color: #fff;
    background-color: light-dark(#fff,var(--clr-cha));
    border-top: 2px solid var(--bgclr-green);
    position: sticky;
    top: 0;
    z-index: 100;
    .menu {
      align-items: center;
      display: block flex;
      flex-flow: row nowrap;
      height: 40px;
      #rogo {
        /*background: url(../img/header.svg) left top no-repeat;
        background-size: auto 26px;
        background-position: -78px top;*/
        background-color: #00843D;
        background-color: light-dark(#00843D,#fff);
        mask: url(../img/header.svg) left top no-repeat;
        mask-size: auto 26px;
        mask-position: -78px top;
        height: 26px;
        width: 182px;
      }
    }
  }
  .head {
    display: none;
    background-color: #fff;
    background-color: light-dark(#fff,var(--clr-cha));
    border-top: 3px solid var(--bgclr-green);
    .menu {
      height: 40px;
      padding: 0 6px;
      #rogo {
        /*background: url(../img/header.svg) left top no-repeat;
        background-size: auto 26px;
        background-position: -78px top;*/
        background-color: #00843D;
        background-color: light-dark(#00843D,#fff);
        mask: url(../img/header.svg) left top no-repeat;
        mask-size: auto 26px;
        mask-position: -78px top;
        height: 26px;
        width: 182px;
      }
    }
  }
  .wrap {
    main {
      background-color: var(--bgclr-wsm);
      max-width: var(--width-pc);
    }
    .tab-pnl {
      .pnls {
        .pnl {
          padding: 30px 15px;
        }
      }
    }
  }
  .foot {
    background-color: var(--bgclr-bluegreen);
    color: #fff;
    /*display: none;*/
    display: block;
    height: 24px;
  }
  /*固定フッター*/
  .foot-fix {
    /*background-color: var(--bgclr-bluegreen);*/
    bottom: 0;
    color: #fff;
    /*height: 24px;*/
    height: 0;
    position: sticky;
    .to-top {
      bottom: 35px;
      position: absolute;
      right: 15px;
      z-index: 100;
    }
  }
}

/*--▼ネスト非対応ブラウザ▼--*/
.container .head-fix {
    background-color: #fff;
    background-color: light-dark(#fff,var(--clr-cha));
    border-top: 2px solid var(--bgclr-green);
    position: sticky;
    top: 0;
    z-index: 100;
}
.container .head-fix .menu {
        align-items: center;
        display: block flex;
        flex-flow: row nowrap;
      height: 40px;
}
.container .head-fix .menu #rogo {
        /*background: url(../img/header.svg) left top no-repeat;
        background-size: auto 26px;
        background-position: -78px top;*/
        background-color: #00843D;
        background-color: light-dark(#00843D,#fff);
        mask: url(../img/header.svg) left top no-repeat;
        mask-size: auto 26px;
        mask-position: -78px top;
        height: 26px;
        width: 182px;
}
.container .head {
    display: none;
    background-color: #fff;
    background-color: light-dark(#fff,var(--clr-cha));
    border-top: 3px solid var(--bgclr-green);
}
.container .head .menu {
      height: 40px;
      padding: 0 6px;
}
.container .head .menu #rogo {
        /*background: url(../img/header.svg) left top no-repeat;
        background-size: auto 26px;
        background-position: -78px top;*/
        background-color: #00843D;
        background-color: light-dark(#00843D,#fff);
        mask: url(../img/header.svg) left top no-repeat;
        mask-size: auto 26px;
        mask-position: -78px top;
        height: 26px;
        width: 182px;
}
.container .wrap main {
      background-color: var(--bgclr-wsm);
      max-width: var(--width-pc);
}
.container .wrap main .tab-pnl .pnls .pnl {
          padding: 30px 15px;
}
/*.container .wrap main .tab-pnl .pnls + .tabs {
    display: flex;
    flex-flow: row nowrap;
}*/
.container .foot {
    background-color: var(--bgclr-bluegreen);
    color: #fff;
    /*display: none;*/
    display: block;
    height: 24px;
}
.container .foot-fix {
    /*background-color: var(--bgclr-bluegreen);*/
    bottom: 0;
    color: #fff;
    /*height: 24px;*/
    height: 0;
    position: sticky;
}
.container .foot-fix .to-top {
      bottom: 35px;
      position: absolute;
      right: 15px;
      z-index: 100;
}
/*--▲ネスト非対応ブラウザ▲--*/

@container container (min-width: 768px) {
  .container {
    .head-fix {
      display: none;
    }
    .head {
      display: block;
      h1:has(.main-visual) {
        background: url(../img/mainvisual_l_bg1.jpg) center center no-repeat;
        background-size: cover;
        height: 400px;
        overflow: hidden;
        position: relative;/**/
        .main-visual {
          margin-bottom: 18%;
          margin-bottom: clamp(140px, 18%, 215px);
          width: min(100%, 1170px);
        }
        &::after {/**/
          content: "";
          background: url(../img/mainvisual_l_bg2.webp) center top no-repeat;
          background-size: cover;
          inset: 0;
          position: absolute;
        }
        img,
        picture {/**/
          z-index: 10;
        }
      }
    }
    .wrap {
      display: block flex;
      flex-flow: row nowrap;
      margin: 0 auto;
      max-width: var(--width-pc);
      main {
        flex-grow: 1;
        .tab-pnl {
          margin: 0 20px;
        }
      }
      .pc-hide {
        display: none!important;
      }
      .tab-pnl {
        .pnls {
          .pnl {
            padding: 30px 60px;
         }
       }
      }
      /*.mid-head + .info {
        flex-wrap: nowrap;
      }*/
    }
    .foot {
      display: block;
    }
    .foot-fix {
      display: none;
    }
  }
}
@container container (max-width: 767px) {
  .container {
    .wrap {
      .main-visual {
        object-fit: fill;
        aspect-ratio: 1.92 / 1;
        height: auto;
        width: 100%;
      }
      .sp-hide {
        display: none;
      }
      .tab-pnl {
        .tabs {
          .tab {
            span {
              font-size: 18px;
            }
          }
        }
      }
    }
  }
}

@supports not(container-type: size) {
  .container .head-fix {
    display: block;
  }
  .container .wrap > * {
    margin: 0 auto;
  }
  .container .wrap .pc-hide {
    display: block;
  }
  .container .wrap .sp-hide {
    display: none;
  }
}

/* 基本デザイン
-----------------------------------*/
* {
  &:focus-visible {
    outline: 2px solid magenta;
    outline-offset: 2px;
  }
}

html {
}
h1,
.h1,
h2,
.h2 {
  font-feature-settings: "palt" 1;
  font-size: clamp(calc(1rem * calc(var(--h1mn-size) / var(--root-size))), calc(calc(1rem * calc(var(--h1mx-size) / var(--root-size))) - calc(1rem * calc(var(--vmx-width) * calc(calc(var(--h1mx-size) / var(--root-size)) - calc(var(--h1mn-size) / var(--root-size))) / calc(var(--vmx-width) - var(--vmn-width))))) + calc(calc(var(--h1mx-size) - var(--h1mn-size)) / calc(var(--vmx-width) - var(--vmn-width)) * 100vw), calc(1rem * calc(var(--h1mx-size) / var(--root-size))));
  word-break: auto-phrase;
  &.hctr {
    text-wrap: balance;
  }
}
h2,
.h2 {
  font-size: clamp(calc(1rem * calc(var(--h2mn-size) / var(--root-size))), calc(calc(1rem * calc(var(--h2mx-size) / var(--root-size))) - calc(1rem * calc(var(--vmx-width) * calc(calc(var(--h2mx-size) / var(--root-size)) - calc(var(--h2mn-size) / var(--root-size))) / calc(var(--vmx-width) - var(--vmn-width))))) + calc(calc(var(--h2mx-size) - var(--h2mn-size)) / calc(var(--vmx-width) - var(--vmn-width)) * 100vw), calc(1rem * calc(var(--h2mx-size) / var(--root-size))));
}

/*リンク*/
a {
  cursor: pointer;
}

/*文字*/
.f-s {
  font-size: clamp(calc(1rem * calc(var(--smn-size) / var(--root-size))), calc(calc(1rem * calc(var(--smx-size) / var(--root-size))) - calc(1rem * calc(var(--vmx-width) * calc(calc(var(--smx-size) / var(--root-size)) - calc(var(--smn-size) / var(--root-size))) / calc(var(--vmx-width) - var(--vmn-width))))) + calc(calc(var(--smx-size) - var(--smn-size)) / calc(var(--vmx-width) - var(--vmn-width)) * 100vw), calc(1rem * calc(var(--smx-size) / var(--root-size))));
}

/*背景*/
.bg-bk {
  background-color: var(--clr-blk);
}
/*文字背景*/
.bgc-t {
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

/*メニュー非表示*/
.no-menu {
  pointer-events: none;
  -webkit-touch-callout: none;
  touch-callout: none;
}

/*タップ領域*/
.no-tap {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*インライン配置*/
.hctr {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1ch;
  justify-content: center;
}
.rt {
  text-align: right;
}
.lt {
  text-align: left;
}

/*ブロック配置*/
.vctr {
  align-content: center;
}

/*フロート*/
.fl-r {
  float: right;
}

/*表示*/
.none {
  display: none;
}
.flex {
  display: flex;
  flex-flow: row wrap;
  > * {
    flex: 0 0 auto;
    flex-grow: 1;
  }
}
/*-- ネスト非対応ブラウザ --*/
.flex > * {
    flex: 0 0 auto;
    flex-grow: 1;
}

/*サムネ*/
*:has(> .sum) {
  border: 0;
  margin: 4px;
  padding: 4px;
}
.sum {
  aspect-ratio: 1 / 1;
  cursor: pointer;
  object-fit: cover;
  width: 200px;

}

/*ページ内リンク*/
.to-top {
  background-color: rgba(0 0 0 / .5);
  border-radius: 50%;
  color: #ccc;
  height: 40px;
  text-align: center;
  text-decoration: none;
  width: 40px;
  .material-symbols-outlined {
    font-size: 32px;
    padding-top: 6px;
  }
}
/*-- ネスト非対応ブラウザ --*/
.to-top .material-symbols-outlined {
    font-size: 32px;
    padding-top: 6px;
}

/*スクロール後表示 (要JS)*/
.scroll-show {
  display: none;
}

/*----- スクロール連動ヘッダ表示切替 -----*/
@property --scroll {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --scroll-delayed {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --scroll-direction {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@keyframes setScrollProps {
  to {
    --scroll: 1000;
    --scroll-delayed: 1000;
  }
}
:root {
  animation: setScrollProps linear both;
  animation-timeline: scroll(root);
   --header-effect-duration: .5s;
}
body {
   transition: --scroll-delayed calc(var(--header-effect-duration) + .01s);
   --scroll-velocity: calc(var(--scroll) - var(--scroll-delayed));
   --scroll-speed: max(var(--scroll-velocity), -1 * var(--scroll-velocity));
   --scroll-direction: calc(var(--scroll-velocity) / var(--scroll-speed));
}
.container .scroll-hide {
  position: static!important;
}

@supports (scroll-timeline: none) {
  .container .scroll-hide {
    position: sticky!important;
    will-change: transform;
    transition: transform var(--header-effect-duration);
    transform: translateY(var(--translate));
    @container style(--scroll-direction: 0) {
      transition-delay: calc(infinity * 1s);
    }
    @container style(not (--scroll-direction: 0)) {
      transition-delay: 0s;
    }
    @container style(--scroll-direction: -1) {
      --translate: 0;
    }
    @container style(--scroll-direction: 1) {
     --translate: -100%;
    }
  }
}

/*----- ポップアップ -----*/
*[id^='pop-'] {
  max-height: 100dvh;
}
*[id^='pop-']:not(#pop-side-menu):not(#pop-hum-menu):popover-open {
  animation: pop-in .5s ease;
}
@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*[id^='pop-']::backdrop {
  backdrop-filter: blur(5px);
}
*[id^='pop-']:not(#pop-hum-menu)::backdrop {
  background: rgb(0 0 0 / 30%);
}

/*ポップ画面*/
*[id^='pop-win'] {
  > .box {
    padding: 30px 15px 10px 15px;
  }
}
/*-- ネスト非対応ブラウザ --*/
*[id^='pop-win'] > .box {
    padding: 30px 15px 10px 15px;
}

*[id^='pop-']:not(#pop-menu) {
  border: 0;
  padding: 0;
}
*[id^='pop-']:not(#pop-side-menu):not(#pop-hum-menu) {
  *[popovertargetaction='hide'] {
    position: absolute;
    right: 2px;
    top: 2px;
  }
}
/*-- ネスト非対応ブラウザ --*/
*[id^='pop-']:not(#pop-side-menu):not(#pop-hum-menu) *[popovertargetaction='hide'] {
    position: absolute;
    right: 2px;
    top: 2px;
}

/*----- タブパネル (要JS) -----*/
.tab-pnl {
  padding-bottom: 60px;
  .tabs {
    display: flex;
    flex-flow: row nowrap;
    .tab {
      background-color: rgba(4,171,174,0.5);
      border: 1px solid #eee;
      border-bottom: 2px solid #eee;
      border-top: 0;
      color: var(--bgclr-bluegreen);
      cursor: pointer;
      flex: 1;
      font-size: 13px;
      padding: 8px 0 4px 0;
      text-align: center;
      span {
        font-size: 20px;
        font-weight: bold;
      }
      &:first-child {
        border-left: 0;
      }
      &:last-child {
        border-right: 0;
      }
    }
    .tab.act {
      color: #fff;
      background-color: var(--bgclr-lightbluegreen);
      border-bottom: 0;
      border-top: 0;
    }
  }
  .pnls {
    background-color: #fff;
    border: 6px solid var(--bgclr-lightbluegreen);
    display: flex;
    flex-flow: row nowrap;
    .pnl {
      flex: 1;
      .flex {
        justify-content: space-around;
        .box {
          flex-grow: 0;
          padding: 4px;
          margin: 8px;
          width: fit-content;
          img:not(.no-menu) {
            aspect-ratio: 3 / 3.82;
            max-width: 300px;
          }
          button:has(img) {
            background-color: transparent;
            border: none;
            margin: 0;
            padding: 0;
          }
        }
        .info {
          width: fit-content;
          span {
            border: 1px solid #8E8417;
            color: #8E8417;
            padding: 2px 6px;
            position: relative;
            &::after {
              background-color: transparent;
              border: 1px solid #8E8417;
              content: "";
              height: calc(100% + 8px);
              left: 2px;
              position: absolute;
              top: -4px;
              width: calc(100% - 4px);
            }
          }
        }
      }
    }
  }
  .pnls + .tabs {
    display: flex;
    flex-flow: row nowrap;
    .tab {
      border-bottom: 0;
      border-top: 2px solid #eee;
      padding: 4px 0 8px 0;
    }
    .tab.act {
      border-bottom: 0;
      border-top: 0;
    }
  }
}
/*--▼ネスト非対応ブラウザ▼--*/
.tab-pnl {
  padding-bottom: 60px;
}
.tab-pnl .tabs {
    display: flex;
    flex-flow: row nowrap;
}
.tab-pnl .tabs .tab {
      background-color: #7CD0D1;
      border: 1px solid #eee;
      border-bottom: 2px solid #eee;
      border-top: 0;
      color: var(--bgclr-bluegreen);
      cursor: pointer;
      flex: 1;
      font-size: 13px;
      padding: 8px 0 4px 0;
      text-align: center;
}
.tab-pnl .tabs .tab span {
        font-size: 20px;
        font-weight: bold;
}
.tab-pnl .tabs .tab:first-child {
        border-left: 0;
}
.tab-pnl .tabs .tab:last-child {
        border-right: 0;
}
.tab-pnl .tabs .tab.act {
      color: #fff;
      background-color: var(--bgclr-lightbluegreen);
      border-bottom: 0;
      border-top: 0;
}
.tab-pnl .pnls {
    background-color: #fff;
    border: 6px solid var(--bgclr-lightbluegreen);
    display: flex;
    flex-flow: row nowrap;
}
.tab-pnl .pnls .pnl {
      flex: 1;
}
.tab-pnl .pnls .pnl .flex {
        justify-content: space-around;
}
.tab-pnl .pnls .pnl .flex .box {
          flex-grow: 0;
          padding: 4px;
          margin: 8px;
          width: fit-content;
}
.tab-pnl .pnls .pnl .flex .box img:not(.no-menu) {
            aspect-ratio: 3 / 3.82;
            max-width: 300px;
}
.tab-pnl .pnls .pnl .flex .box button:has(img) {
            background-color: transparent;
            border: none;
            margin: 0;
            padding: 0;
}
.tab-pnl .pnls .pnl .flex .info {
          width: fit-content;
}
.tab-pnl .pnls .pnl .flex .info span {
            border: 1px solid #8E8417;
            color: #8E8417;
            padding: 2px 6px;
            position: relative;
}
.tab-pnl .pnls .pnl .flex .info span::after {
              background-color: transparent;
              border: 1px solid #8E8417;
              content: "";
              height: calc(100% + 8px);
              left: 2px;
              position: absolute;
              top: -4px;
              width: calc(100% - 4px);
}
.tab-pnl .pnls + .tabs {
    display: flex;
    flex-flow: row nowrap;
}
.tab-pnl .pnls + .tabs .tab {
      border-bottom: 0;
      border-top: 2px solid #eee;
      padding: 4px 0 8px 0;
}
.tab-pnl .pnls + .tabs .tab.act {
      border-bottom: 0;
      border-top: 0;
}
/*--▲ネスト非対応ブラウザ▲--*/
@supports not(container-type: size) {
  .tab-pnl .pnls .pnl .flex .box div img {
    display: none;
  }
}



/*----- LP用 -----*/
.main-visual {
}
h1:has(.main-visual) {
  margin: 0;
}
.app-bnr {
  text-align: center;
  .hint {
    color: #048487;
    color: light-dark(#048487,#fff);
    /*color: var(--bgclr-bluegreen);
    color: light-dark(var(--bgclr-bluegreen),#fff);*/
    /*font-size: 34px;*/
    font-weight: bold;
    padding: 0 0 20px 0;
  }
  .bnr {
    margin: 0 auto;
    width: fit-content;
    img {
      border-radius: 16px;
    }
  }
  .attent {
    
  }
}
@media screen and (max-width: 767px) {
  .app-bnr {
    .bnr {
      img {
        border-radius: 8px;
      }
    }
  }
}
.mid-head {
  color: #048487;
  color: light-dark(#048487,#fff);
  /*color: var(--bgclr-bluegreen);
  color: light-dark(var(--bgclr-bluegreen),#fff);*/
  font-weight: normal;
  margin: 40px auto 20px auto;
  text-align: center;
  width: fit-content;
  span {
    display: block;
    border-bottom: 1px solid #7CD0D1;
    border-bottom: 1px solid light-dark(#7CD0D1,#fff);
    /*font-size: 32px;*/
    font-weight: bold;
    margin-bottom: 4px;
    padding-bottom: 2px;
  }
}
.sub-head {
  background: linear-gradient(#3F8725, #227404);
  background-color: #327F16;
  border-left: 6px solid #5FA845;
  border-radius: 3px;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  height: 40px;
  margin: 20px 20px 10px 20px;
  padding: 0 18px;
  > * {
    /*align-content: center;*/
  }
  > *:last-child {
    text-align: right;
    > * {
      vertical-align: middle;
    }
    > *:not([class^="material"]) {
      font-size: 16px;
    }
  }
  &.flex {
    align-items: center;
    > *:last-child {
      align-items: center;
      display: flex;
      flex-flow: row nowrap;
      flex-grow: 0;
    }
  }
}
.sub-head + .info {
  font-size: 16px;
  margin: 0 30px 60px 30px;
  > * {
    flex-shrink: 1;
  }
  > *:first-child {
  }
  > *:last-child {
    padding: 2px 2px 2px 12px;
    width: 30%;
    > .link {
      margin-bottom: 12px;
      > * {
        color: #2966D6;
        color: light-dark(#2966D6,#fff);
        text-decoration: none;
        vertical-align: middle;
      }
      > *:hover {
        text-decoration: underline;
      }
      > *[class^="material"] {
        font-size: 20px;
        padding-top: 3px;
      }
    }
    > .store {
      background-color: #fff;
      border: 1px solid #ccc;
      margin: 20px auto 0 auto;
      max-width: 360px;
      padding: 8px;
      > .flex {
        > .hctr {
          padding: 12px 2px 0 0;
        }
      }
      > p {
        font-size: 14px;
        margin-top: 4px;
      }
    }
    > .btn-free {
      padding-top: 12px;
      img:hover {
        opacity: 0.7;
      }
    }
  }
}
/*--▼ネスト非対応ブラウザ▼--*/
.app-bnr {
  text-align: center;
}
.app-bnr .hint {
    color: #048487;
    color: light-dark(#048487,#fff);
    /*color: var(--bgclr-bluegreen);
    color: light-dark(var(--bgclr-bluegreen),#fff);*/
    /*font-size: 34px;*/
    font-weight: bold;
    padding: 0 0 20px 0;
}
.app-bnr .bnr {
    margin: 0 auto;
    width: fit-content;
}
.app-bnr .bnr img {
      border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .app-bnr .bnr img {
        border-radius: 8px;
  }
}
.mid-head {
  color: #048487;
  color: light-dark(#048487,#fff);
  /*color: var(--bgclr-bluegreen);
  color: light-dark(var(--bgclr-bluegreen),#fff);*/
  font-weight: normal;
  margin: 40px auto 20px auto;
  text-align: center;
  width: fit-content;
}
.mid-head span {
    display: block;
    border-bottom: 1px solid #7CD0D1;
    border-bottom: 1px solid light-dark(#7CD0D1,#fff);
    /*font-size: 32px;*/
    font-weight: bold;
    margin-bottom: 4px;
    padding-bottom: 2px;
}
.sub-head {
  background: linear-gradient(#3F8725, #227404);
  background-color: #327F16;
  border-left: 6px solid #5FA845;
  border-radius: 3px;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  height: 40px;
  margin: 20px 20px 10px 20px;
  padding: 0 18px;
}
.sub-head > * {
    /*align-content: center;*/
}
.sub-head > *:last-child {
    text-align: right;
}
.sub-head > *:last-child > * {
      vertical-align: middle;
}
.sub-head > *:last-child > *:not([class^="material"]) {
      font-size: 16px;
}
.sub-head.flex {
  align-items: center;
}
.sub-head.flex > *:last-child {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  flex-grow: 0;
}
.sub-head + .info {
  font-size: 16px;
  margin: 0 30px 60px 30px;
}
.sub-head + .info > * {
    flex-shrink: 1;
}
.sub-head + .info > *:last-child {
    padding: 2px 2px 2px 12px;
    width: 30%;
}
.sub-head + .info > *:last-child > .link {
      margin-bottom: 12px;
}
.sub-head + .info > *:last-child > .link > * {
        color: #2966D6;
        color: light-dark(#2966D6,#fff);
        text-decoration: none;
        vertical-align: middle;
}
.sub-head + .info > *:last-child > .link > *:hover {
        text-decoration: underline;
}
.sub-head + .info > *:last-child > .link > *[class^="material"] {
        font-size: 20px;
        padding-top: 3px;
}
.sub-head + .info > *:last-child > .store {
      background-color: #fff;
      border: 1px solid #ccc;
      margin: 20px auto 0 auto;
      max-width: 360px;
      padding: 8px;
}
.sub-head + .info > *:last-child > .store > .flex > .hctr {
          padding: 12px 2px 0 0;
}
.sub-head + .info > *:last-child > .store > p {
        font-size: 14px;
        margin-top: 4px;
}
.sub-head + .info > *:last-child > .btn-free {
      padding-top: 12px;
}
.sub-head + .info > *:last-child > .btn-free img:hover {
        opacity: 0.7;
}
/*--▲ネスト非対応ブラウザ▲--*/

.mail {
  margin: 0 auto;
  padding: 60px 0 30px 0;
  width: fit-content;
  > * {
    vertical-align: middle;
  }
  > a {
    color: #2966D6;
    color: light-dark(#2966D6,#fff);
    font-size: 16px;
    padding: 0 6px;
    text-decoration: none;
  }
}
/*-- ネスト非対応ブラウザ --*/
.mail {
  margin: 0 auto;
  padding: 60px 0 30px 0;
  width: fit-content;
}
.mail > * {
    vertical-align: middle;
}
.mail > a {
    color: #2966D6;
    color: light-dark(#2966D6,#fff);
    font-size: 16px;
    padding: 0 6px;
    text-decoration: none;
}

