@charset "UTF-8"

/* ===============================
   Reset and Base Styles
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* 横スクロールを防ぐ */
}

body {
    display: flex;
    flex-flow: column;
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
    background-color: #f0f0f0; /* appearance */
    font-size: 16px;
    font-weight: 500;
    font-family: 'League Spartan','Avenir','Helvetica Neue','Helvetica','Arial','Noto Sans JP','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
    color: #000;
}
/* フッター固定用 */
main {
    flex: 1;
    padding: 65px 0 0 0;
}


/* ===============================
   ヘッダー・フッター
   =============================== */
/* ヘッダーメディアクエリ */
@media screen and (max-width: 800px) {
    /* 800px以下に適用されるCSS（タブレット用） */

}
@media screen and (max-width: 480px) {
    /* 480px以下に適用されるCSS（スマホ用） */
}

/* ヘッダー */
header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    background-color: rgba(240,240,240,0.25);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 9px 0 6px 0;
    width: 100%;
    max-width: 1000px;
}

header .logo-top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    height: 50px;
}
header .logo-top a {
    font-size: 32px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
}

.menu {
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
}
.menu-item {
    margin: 0;
    padding: 0 5px;
    display: inline-block;
    vertical-align: middle;
}

/* ヘッダーリンク */
header a,
header a:active,
header a:visited {
    color: #000;
    text-decoration: none;
}
header a:hover,
header a:visited:hover {
    color: #3d484f;
    text-decoration: none;
    transition: all .2s ease-in;
}

/* ========================
    ヘッダーロゴ・スクロールアニメーション
    ======================== */
.logo-top a{
    /*テキストの基点とするためrelativeを指定*/
    position: relative;
    /*はみ出る要素を隠す*/
    overflow: hidden;
    padding:15px 70px;
}

.logo-top span{
    /*絶対配置でテキストの位置を決める*/
    position: absolute;
    left: 50%;
    top:0;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: translate(-50%, 0);/*X方向に-50% ※中央寄せにするため*/
  /*ブロック要素にして透過なし、テキスト折り返しなし*/  
    display: block;
    opacity:1;
    white-space: nowrap;
}

/*差し替わるテキストの設定*/
.logo-top span:nth-child(2){
    opacity:0;/*透過0に*/
    transform: translate(-50%,100%);/*X方向に-50% Y方向に100%*/
}

/*hoverするとテキストが入れ替わる設定*/
.logo-top:hover span:nth-child(1){
    opacity:0;/*透過0に*/
    transform: translate(-50%,-100%);/*X方向に-50% Y方向に-100%*/
}

.logo-top:hover span:nth-child(2){
    opacity:1;/*不透明に*/
    transform: translate(-50%, 0);/*X方向に-50% Y方向に0*/
}

.logo-top .img {
    width: 140px;
    height: 30px;
    object-fit: contain;   
}

/* ========================
     ヘッダーメニュー・四角が流れるアニメーション
     ======================== */
 
 /*== ヘッダーメニューボタン共通設定 */
 .menu-item a {
     /*アニメーションの起点とするためrelativeを指定*/
     position: relative;
     overflow: hidden;
     /*ボタンの形状*/
     text-decoration: none;
     display: inline-block;
     border: 0px solid #555;
     border-radius: 2px;
     padding: 1px 0px;
     width: 70px;
     text-align: center;
     outline: none;
     /*アニメーションの指定*/   
     transition: ease .2s;
 }
 
 /*ボタン内spanの形状*/
 .menu-item span {
     position: relative;
     z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
 }
 .menu-item a:hover span{
     color:#f0f0f0;
 }
 
 /*== 背景が流れる（右から左） */
 .menu-item a:before {
     content: '';
         /*絶対配置で位置を指定*/
     position: absolute;
     top: 0;
     left: 0;
     z-index: 2;
     width: 100%;
     height: 100%;
         /*アニメーション*/
     transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
     transform: scale(0, 1);
     transform-origin: left top;
 }
 
 /*　ヘッダーメニューボタンの色*/
 .menu-item a:before {
     background: linear-gradient(90deg, rgba(101, 186, 187,1) 0%, rgba(75,168,210,1) 100%);
 }
 
 /*hoverした際の形状*/
.menu-item a:hover:before{
   transform-origin:right top;
   transform:scale(1, 1);
 }




/* ===============================
   フッター
   =============================== */
footer {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    box-shadow: 0 0px 3px rgba(0,0,0,0.1);
}
footer p {
    margin: 0;
    padding: 0;
}
footer a {
    transition: color .2s;
}
.copylight {
    padding: 0;
    font-size: 80%;
}
.footer-link {
    padding: 4px 0 0;
    font-size: 70%;
}


/* ===============================
   Layout
   =============================== */

/* 画像全般 */
.img {
    max-width: 100%;
    height: auto;
}


/* いろいろなページ */
/* 左右余白*/
.page-top,
.page-narrow,
.page-article {
    margin: 0px auto 70px;
    width: 90%;
}

.page-top { /* トップページ */
    max-width: 650px;
}
.page-narrow { /* コンテンツ少ないページ */
    max-width: 500px;
}
.page-article { /* テキストメイン記事ページ */
    max-width: 700px;
}

/* 本文 */
.page-body {

}


/* ===============================
   パーツ
   =============================== */
/* 記事ページ */
/* パンくずリスト */
.breadcrumb {
    margin: 20px 0 0;
    padding: 0;
    display: inline-block;
}
.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.breadcrumb li {
    margin-right: 10px;
}
.breadcrumb li::after {
    content: '/';
    margin-left: 10px;
}
.breadcrumb li:last-child::after {
    content: '';
}
.breadcrumb a {
    color: #9a9a9a;
    transition: color .2s
}
.breadcrumb a:hover,
.breadcrumb a:visited:hover {
    color: #3ea9b4;
}
.breadcrumb a:visited {
    color: #9a9a9a;
}
.breadcrumb li:last-child {
}


/* 更新日時 */
.update-date {
    background-color: #39dbd0;
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 12px #5aedd9;
    box-shadow: 0px 0px 12px #5aedd9;
    padding: 0;
    margin: 0;
}
.update-date p {
    margin: 0;
    padding: 2px 15px;
    font-size: 13px;
}


/* 中央寄せ */
.center-margin {
    display: block;
    margin: 40px auto;
    gap: 40px;
}
.center-flex {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
/* 右寄せ */
.right-flex {
    display: flex;
    justify-content: flex-end;
}

/* box */
.description {
    display: grid;
    place-content: center;
    margin: 30px auto;
    padding: 6px 26px;
    -webkit-box-shadow: 5px 5px 15px #c9ff7f, -5px -5px 15px #ffffff;
    box-shadow: 5px 5px 15px #c9ff7f, -5px -5px 15px #ffffff;
    font-size: 85%;
    color: #000;
    font-weight: 500;
    background-color: #aaf745;
    border-radius: 18px;
}
.neumorph {
    margin: 30px 0;
    padding: 4px 30px;
    background-color: #f0f0f0;
    -webkit-box-shadow: 7px 7px 16px #cccccc, -7px -7px 16px #ffffff;
    box-shadow: 7px 7px 16px #cccccc, -7px -7px 16px #ffffff;
    border-radius: 20px;
}
.neumorph-c {
    display: inline-block;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    padding: 6px 50px;
    max-width: 100%;
    background-color: #f0f0f0;
    -webkit-box-shadow: 7px 7px 16px #cccccc, -7px -7px 16px #ffffff;
    box-shadow: 7px 7px 16px #cccccc, -7px -7px 16px #ffffff;
    border-radius: 50px;
}


/*　マージンなし・コンテナ内で中央寄せするもの　*/
.description-in {
    display: grid;
    place-content: center;
    margin: 0 auto;
    padding: 6px 26px;
    -webkit-box-shadow: 5px 5px 15px #c9ff7f, -5px -5px 15px #ffffff;
    box-shadow: 5px 5px 15px #c9ff7f, -5px -5px 15px #ffffff;
    font-size: 85%;
    color: #000;
    font-weight: 500;
    background-color: #aaf745;
    border-radius: 18px;
}
.neumorph-in {
    margin: 0;
    padding: 4px 30px;
    background-color: #f0f0f0;
    -webkit-box-shadow: 7px 7px 16px #cccccc, -7px -7px 16px #ffffff;
    box-shadow: 7px 7px 16px #cccccc, -7px -7px 16px #ffffff;
    border-radius: 20px;
}
.neumorph-c-in {
    display: inline-block;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 6px 50px;
    max-width: 100%;
    background-color: #f0f0f0;
    -webkit-box-shadow: 7px 7px 16px #cccccc, -7px -7px 16px #ffffff;
    box-shadow: 7px 7px 16px #cccccc, -7px -7px 16px #ffffff;
    border-radius: 50px;
}

/* 未使用 */
.glass {
    margin: 20px auto;
    padding: 10px 30px;
    background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);  
  -webkit-box-shadow: 0 3px 18px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}


/* トップのカードリンクコンテナ */
.c-link-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* トップ用カードボタン */
.c-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px; /* Adjust as needed */
    background-color: #f0f0f0;
    border-radius: 50px;
    box-shadow: 
        9px 9px 18px #bebebe,
        -5px -5px 15px #ffffff;
    text-decoration: none;
    color: #333;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.c-link-img:hover {
    box-shadow: 
        inset 9px 9px 18px #bebebe,
        inset -9px -9px 18px #ffffff;
    transform: scale(0.95);
}

.c-link-img {
    width: 120%;
    height: 120%;
    object-fit: cover; /* Adjusts the image size */
    position: absolute; /* Ensure it stays within the container */
    top: -10%; /* Adjust to offset the image slightly */
    left: -10%; /* Adjust to offset the image slightly */
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.c-link-btn:hover .c-link-img {
    filter: grayscale(0%) blur(4px);
}

.c-link-txt {
    position: absolute;
    z-index: 1;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 10px; /* Adjust padding as needed */
    font-size: 30px; /* Adjust font size as needed */
    pointer-events: none;
}
.c-link-txt p {
    margin: 0;
    line-height: 1.2; /* Adjust line height for spacing between lines */
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}
.c-link-btn:hover .c-link-txt p {
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 1);
}


/* アイコンつき見出し */
.icon-heading {
    display: flex;
    margin: 20px 0 0 0;
}
.icon-heading .img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50px;
    margin: 0 20px 0 0;
}


/* ===============================
   Typography
   =============================== */
/* リンク */
a {
    color: #3ea9b4;
    text-decoration: none;
}
main a {
    transition: color .2s;
}
/* ホバー */
a:hover {
    color: #37c9ae;
}
/* クリック */
a:active {
    color: #2a899e;
}
/* 訪問済み */
a:visited {
    color: #2a899e;
}
/* 訪問済みホバー */
a:visited:hover {
    color: #37c9ae;
}
/* アイコン */
/*.side-blanc a:after {
    font-family: 'Font Awesome 5 Free';
    content: ' \f35d';
    font-weight: 600;
    color: #7b7b7b;
    font-size: 80%;
}*/

a[href^=http]:not(.notex)::after,/* aタグのhref属性がhttpから始まっている場合 .noexは除外 */
a[target=_blank]:not(.notex)::after {/* aタグのtarget属性が_blankの場合 .noexは除外 */
    margin: 0 0 0 3px;
    font-family: "Font Awesome 5 Free";
    content: '\f35d';
    font-weight: 600;
    font-size: 70%;
}

/* ホバーで上がる */
/* 通常のリンクスタイル */
a.hover-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* ホバー時のリンクスタイル */
a.hover-link:hover {
    transform: translateY(-2px);
}

/* ブロック要素内の中央・右寄せ */
.right-align {
    text-align: right;
}
.center-align {
    text-align: center;
}

/* 見出し */
h1 {
    margin: 30px 0 10px 0;
    padding: 0;
}


/* ===============================
   Utilities
   =============================== */

/* ===============================
   メディアクエリ
   =============================== */
@media screen and (max-width: 800px) {
    /* 800px以下に適用されるCSS（タブレット用） */

}
@media screen and (max-width: 480px) {
    /* 480px以下に適用されるCSS（スマホ用） */
}