@charset "UTF-8";
/* コピペ用 */
/* background: rgba(0,0,0,0.2); */
/* シンプルリンクホバー */
/* @include link-hover-simple; */
/* @include incSmooth(); */
/* @include btm(); */
/* @include top(); */
/* 基準フォントサイズ（PC） */
/* px → rem変換関数 */
/* フォントサイズ用Mixin（汎用）

  font-size のみ
  @include fs(16);
  この場合、line-heightは自動的に適用される
  例）
  @include fs(95);  → font-size: 5.9375rem; line-height: 1.2;
  @include fs(25);  → font-size: 1.5625rem; line-height: 1.4;
  @include fs(16);  → font-size: 1rem;      line-height: 1.8;
  @include fs(12);  → font-size: 0.75rem;   line-height: 2.0;

  手動指定1
  font-size + line-height
  @include fs(16, 1.8);

  手動指定2
  font-size + line-height + letter-spacing
  @include fs(16, 1.8, 0.04em);
*/
/* clamp フォントサイズ用Mixin

  大見出し（vw手動指定）
  .head01Main {
    @include fsc(44, 6.25, 100);
  }
  → font-size: clamp(44px, 6.25vw, 100px);
  SP(375px):    44px  ← min が下限として効く
  PC(1280px):   80px  ← vw が効く
  大画面(1600px): 100px ← max が上限として効く

  vw の値の求め方
  vw = max ÷ デザイン基準幅(px) × 100
  例）PC最大100px、基準幅1600px の場合
  100 ÷ 1600 × 100 = 6.25vw
*/
/* clamp フォントサイズ用Mixin2（vw自動計算）

  大見出し2（min・max を入れると vw を自動計算）
  .head01Main {
    @include fsc2(44, 100);
  }
  → font-size: clamp(44px, 6.25vw, 100px);  ※基準幅1600pxで自動計算

  基準幅を変えたい場合
  @include fsc2(44, 100, 1440);
*/
/* パディング生成（null安全＋レスポンシブ対応）
  .section {
    @include responsive-padding(70px, 40px);
  }
  PC: padding: 70px 40px;
  SP: padding: 52.5px 30px;
*/
/* マージンボトム汎用クラス吐き出し */
/* 幅設定汎用クラス吐き出し */
/*

.sampleClass {

$font-base: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, sans-serif;
$font-min:  "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
$font-en: "EB Garamond", serif;

背景色
background: rgba(0,0,0,0.2);

通常テキスト（SPはhtmlのフォントサイズに追従）
@include fs(16);

大見出し
@include fsc(44, 6.25, 100);

大見出し2（min・max を入れると vw を自動計算）
@include fsc2(44, 100);

マージン（SPは60%）
@include btm();
@include top();

パディング
@include responsive-padding(70px, 40px); 

シンプルホバー
@include link-hover-simple;

フォントスムーズ
@include incSmooth();

}

*/
.service01 {
  margin-bottom: 0;
  padding: 0 40px 140px; }
  .service01 .inr {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1360px; }
    .service01 .inr .img {
      width: 45%; }
    .service01 .inr .data {
      width: 49%; }

@media only screen and (max-width: 960px) {
  .service01 {
    padding: 0 5vw 60px; }
    .service01 .inr {
      display: block;
      max-width: 100%; }
      .service01 .inr .img {
        margin: 0 0 24px;
        text-align: center;
        width: 100%; }
        .service01 .inr .img img {
          display: inline-block; }
      .service01 .inr .data {
        width: 100%; } }
.service02 {
  margin-bottom: 0;
  padding: 0 40px; }
  .service02 .inr {
    margin: 0 auto;
    max-width: 1360px; }

@media only screen and (max-width: 960px) {
  .service02 {
    padding: 0 5vw 20px; }
    .service02 .inr {
      max-width: 100%; } }
.pageList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px; }
  .pageList li {
    cursor: pointer;
    margin-bottom: 60px;
    overflow: hidden; }
    .pageList li a {
      display: block;
      transition: 0.2s; }
      .pageList li a .img {
        margin-bottom: 12px;
        aspect-ratio: 16 / 9;
        overflow: hidden; }
        .pageList li a .img img {
          object-fit: cover;
          object-position: center;
          width: 100%;
          height: 100%; }
      .pageList li a h2 {
        border-bottom: 1px solid #B2BCCB;
        font-size: 1.3125rem;
        line-height: 1.8;
        line-height: 1.55;
        font-weight: 500;
        padding: 16px 0;
        position: relative; }
        .pageList li a h2:before {
          background: #066DC8;
          content: '';
          display: block;
          height: 1px;
          width: 110px;
          position: absolute;
          bottom: -1px;
          left: 0; }
      .pageList li a:hover {
        opacity: 0.8; }

@media only screen and (max-width: 960px) {
  .pageList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px; }
    .pageList li {
      margin-bottom: 28px; }
      .pageList li a .img {
        margin-bottom: 0; }
      .pageList li a h2 {
        font-size: 14px;
        line-height: 1.45;
        padding: 12px 0 10px;
        position: relative; }
        .pageList li a h2:before {
          background: #066DC8;
          content: '';
          display: block;
          height: 1px;
          width: 110px;
          position: absolute;
          bottom: -1px;
          left: 0; }
      .pageList li a:hover {
        opacity: 0.8; } }
.newsDetail {
  padding: 0 40px; }
  .newsDetail .inr {
    margin: 0 auto;
    max-width: 1260px; }
  .newsDetail .head01 {
    margin-bottom: 48px; }
    .newsDetail .head01:before {
      margin-bottom: 28px; }
    .newsDetail .head01 .ja {
      font-size: 3.125rem;
      line-height: 1.2;
      padding-top: 0; }

@media only screen and (max-width: 960px) {
  .newsDetail {
    padding: 0 5vw; }
    .newsDetail .inr {
      padding-bottom: 0; }
    .newsDetail .head01 {
      margin-bottom: 28px; }
      .newsDetail .head01:before {
        margin-bottom: 24px; }
      .newsDetail .head01 .ja {
        font-size: 24px;
        padding-top: 0; }
    .newsDetail .newsDetailTitle {
      margin-bottom: 40px; }
      .newsDetail .newsDetailTitle h1 {
        padding-bottom: 20px; }
        .newsDetail .newsDetailTitle h1 .title {
          font-size: 20px;
          font-weight: 500;
          line-height: 1.55;
          margin-top: 12px;
          width: 100%; }
        .newsDetail .newsDetailTitle h1 .cat {
          font-size: 11px;
          margin: 0;
          top: 1px; }
        .newsDetail .newsDetailTitle h1 .date {
          font-size: 12px; } }
.editor h1 {
  margin-bottom: 48px;
  color: #516989;
  display: block;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
  font-size: 3.125rem;
  line-height: 1.2;
  font-weight: 500;
  line-height: 1.35;
  padding-top: 0;
  position: relative; }
  .editor h1:before {
    background: #0B73CF;
    content: '';
    display: block;
    margin-bottom: 28px;
    height: 6px;
    width: 46px; }
@media only screen and (max-width: 960px) {
  .editor h1 {
    font-size: 24px;
    line-height: 1.55;
    margin-bottom: 28px;
    padding-top: 0; }
    .editor h1:before {
      margin-bottom: 24px;
      height: 5px;
      width: 32px; } }
.editor h2 {
  background: #0065BF;
  background: linear-gradient(90deg, #0065bf 0%, #327dc2 50%, #afbacb 100%);
  color: #FFF;
  font-size: 1.375rem;
  line-height: 1.8;
  font-weight: 500;
  line-height: 1.4;
  padding: 16px 20px;
  margin-bottom: 40px; }
@media only screen and (max-width: 960px) {
  .editor h2 {
    font-size: 18px;
    padding: 12px 16px;
    margin-bottom: 28px; } }
.editor h3 {
  border-bottom: 1px solid #B2BCCB;
  font-size: 1.25rem;
  line-height: 1.8;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 24px;
  padding: 16px 0;
  position: relative; }
  .editor h3:before {
    background: #066DC8;
    content: '';
    display: block;
    height: 1px;
    width: 110px;
    position: absolute;
    bottom: -1px;
    left: 0; }
@media only screen and (max-width: 960px) {
  .editor h3 {
    font-size: 17px;
    margin-bottom: 20px;
    padding: 12px 0; }
    .editor h3:before {
      width: 80px; } }
.editor h4 {
  font-size: 1.125rem;
  line-height: 1.8;
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 12px;
  padding: 0 16px;
  position: relative; }
  .editor h4:before {
    background: #066DC8;
    content: '';
    display: block;
    height: 18px;
    width: 3px;
    position: absolute;
    top: 6px;
    left: 0; }
@media only screen and (max-width: 960px) {
  .editor h4 {
    font-size: 15px;
    padding: 0 12px; }
    .editor h4:before {
      height: 16px;
      top: 5px; } }
.editor p {
  margin-bottom: 20px; }
.editor > p {
  margin-bottom: 60px; }
  .editor > p:last-child {
    margin-bottom: 0 !important; }
.editor .center img {
  display: inline-block; }

@media only screen and (max-width: 960px) {
  .editor p {
    margin-bottom: 16px; }
  .editor > p {
    margin-bottom: 40px; }
    .editor > p:last-child {
      margin-bottom: 0 !important; } }
.productsList {
  background: #075698;
  padding: 120px 40px; }
  .productsList .inr {
    margin: 0 auto;
    max-width: 1360px; }
    .productsList .inr .head01 {
      margin-bottom: 0; }
      .productsList .inr .head01:before {
        background: #FFF;
        margin-bottom: 24px; }
      .productsList .inr .head01 .ja {
        color: #FFF;
        font-size: 2.5rem;
        line-height: 1.2;
        padding-top: 0; }
    .productsList .inr .pageList li {
      margin-bottom: 0;
      margin-top: 60px; }
      .productsList .inr .pageList li a {
        color: #FFF; }
        .productsList .inr .pageList li a h2:before {
          display: none; }

@media only screen and (max-width: 960px) {
  .productsList {
    padding: 80px 5vw; }
    .productsList .inr {
      margin: 0 auto;
      max-width: 1360px; }
      .productsList .inr .head01:before {
        margin-bottom: 24px; }
      .productsList .inr .head01 .ja {
        font-size: 24px;
        padding-top: 0; }
      .productsList .inr .pageList li {
        margin-bottom: 0;
        margin-top: 40px; }
        .productsList .inr .pageList li a {
          color: #FFF; }
          .productsList .inr .pageList li a h2:before {
            display: none; } }
.contents .anchorNav {
  background: none;
  border: none;
  border-bottom: 1px solid #DEDEDE;
  border-radius: 12px;
  margin-bottom: 40px;
  padding: 0 0 36px; }
  .contents .anchorNav p {
    margin: 0; }
  .contents .anchorNav ul {
    margin-top: 40px; }
    .contents .anchorNav ul:after {
      display: none; }
    .contents .anchorNav ul li > a {
      padding: 3px 24px 3px 24px; }
      .contents .anchorNav ul li > a::before {
        height: 8px;
        width: 8px;
        right: auto;
        left: 4px;
        top: calc(50% - 3px); }

@media only screen and (max-width: 960px) {
  .contents.clm2 #side {
    padding-top: 40px;
    width: 100%; } }
.catarogArea {
  background: #FFF;
  display: flex;
  justify-content: space-between;
  padding: 60px;
  width: 100%; }
  .catarogArea .caL {
    width: 35%; }
    .catarogArea .caL .title {
      color: #0B73CF;
      font-size: 1.875rem;
      line-height: 1.4;
      line-height: 1.55;
      font-weight: 600;
      padding: 0 0 24px;
      position: relative; }
      .catarogArea .caL .title:before {
        background: #0B73CF;
        content: '';
        display: block;
        height: 6px;
        width: 46px;
        position: absolute;
        bottom: 0;
        left: 0; }
  .catarogArea .caR {
    width: 55%; }
    .catarogArea .caR .mapBtn li {
      width: 100%; }

@media only screen and (max-width: 960px) {
  .catarogArea {
    display: block;
    padding: 48px 7.5vw; }
    .catarogArea .caL {
      padding-bottom: 24px;
      width: 100%; }
      .catarogArea .caL .title {
        font-size: 24px;
        padding: 0 0 20px; }
        .catarogArea .caL .title:before {
          height: 4px;
          width: 32px; }
    .catarogArea .caR {
      width: 100%; }
      .catarogArea .caR .mapBtn li {
        width: 100%; }
        .catarogArea .caR .mapBtn li a.max260 {
          max-width: 100%; } }
.editor .layout__box .mapBtn {
  justify-content: space-between;
  flex-wrap: wrap; }
  .editor .layout__box .mapBtn li {
    margin: 12px 0 0;
    width: 48%;
    min-width: 240px; }

@media only screen and (max-width: 580px) {
  .editor .mapBtn,
  .editor .layout__box .mapBtn {
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 2.5vw;
    padding-right: 2.5vw; }
    .editor .mapBtn li,
    .editor .layout__box .mapBtn li {
      margin: 12px 0 0;
      width: 100%;
      min-width: 240px; }
      .editor .mapBtn li a,
      .editor .layout__box .mapBtn li a {
        max-width: 100% !important; } }
.stomaStyle {
  margin-bottom: 80px; }
  .stomaStyle h2 {
    font-family: "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif; }
  .stomaStyle h3 {
    color: #0B73CF; }

.boldAtt {
  color: #BF0000;
  font-size: 1.4375rem;
  line-height: 1.8;
  font-weight: bold;
  padding: 40px 0 0; }

.boldBlue {
  color: #0B73CF;
  font-size: 1.4375rem;
  line-height: 1.8;
  font-weight: bold; }

.blueLink {
  color: #0B73CF;
  text-decoration: underline; }

.callCenter {
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  font-weight: bold;
  max-width: 680px;
  margin-bottom: 40px; }
  .callCenter dt {
    border-right: 1px solid #CCC;
    margin-right: 24px;
    padding-right: 24px; }
  .callCenter dd a {
    color: #0B73CF;
    font-family: "EB Garamond", serif;
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 500;
    line-height: 1;
    text-decoration: underline; }

.mitsumori {
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  font-weight: bold;
  max-width: 680px;
  margin-bottom: 40px; }
  .mitsumori dt {
    border-right: 1px solid #CCC;
    margin-right: 24px;
    padding-right: 24px; }
  .mitsumori dd .mapBtn {
    min-width: 260px; }
  .mitsumori dd .mapBtn li {
    margin-right: 0;
    width: 100%; }

.callCenterWide {
  background: #FFF;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 170px;
  max-width: 1000px;
  margin: 0 auto; }
  .callCenterWide p {
    text-align: center;
    width: 100%; }
  .callCenterWide dl {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-weight: bold; }
    .callCenterWide dl dt {
      border-right: 1px solid #CCC;
      margin-right: 24px;
      padding-right: 24px; }
    .callCenterWide dl dd a {
      color: #0B73CF;
      font-family: "EB Garamond", serif;
      font-size: 2.5rem;
      line-height: 1.2;
      font-weight: 500;
      line-height: 1;
      text-decoration: underline; }

@media only screen and (max-width: 960px) {
  .stomaStyle {
    margin-bottom: 48px; }

  .boldAtt {
    font-size: 18px;
    padding: 20px 0 0; }

  .callCenter {
    display: block;
    height: auto;
    max-width: 100%;
    padding: 24px 5vw 28px;
    text-align: center; }
    .callCenter dt {
      font-size: 17px;
      border: none;
      margin-right: 0;
      padding-right: 0;
      padding-bottom: 4px; }
    .callCenter dd a {
      color: #0B73CF;
      font-family: "EB Garamond", serif;
      font-size: 36px;
      font-weight: 500;
      line-height: 1;
      text-decoration: underline; }

  .spScroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; }
    .spScroll img {
      display: block;
      max-width: none;
      width: 1000px;
      /* または1000pxなど画像サイズに合わせる */
      height: auto; }

  .mitsumori {
    display: block;
    height: auto;
    max-width: 100%;
    padding: 24px 5vw 28px;
    text-align: center; }
    .mitsumori dt {
      font-size: 17px;
      border: none;
      margin-right: 0;
      padding-right: 0;
      padding-bottom: 4px; }
    .mitsumori dd .mapBtn {
      min-width: 260px; }
    .mitsumori dd .mapBtn li {
      margin-right: 0;
      width: 100%; }

  .callCenterWide {
    display: block;
    height: auto;
    max-width: 100%;
    padding: 24px 5vw 28px;
    text-align: center; }
    .callCenterWide p {
      font-size: 14px; }
    .callCenterWide dl {
      display: block;
      align-items: center;
      align-content: center;
      justify-content: center;
      font-weight: bold; }
      .callCenterWide dl dt {
        font-size: 17px;
        border: none;
        margin-right: 0;
        padding-right: 0;
        padding-bottom: 4px; }
      .callCenterWide dl dd a {
        color: #0B73CF;
        font-family: "EB Garamond", serif;
        font-size: 2.5rem;
        line-height: 1.2;
        font-weight: 500;
        line-height: 1;
        text-decoration: underline; } }
