/* --------------------
 Base
-------------------- */

@font-face {
    font-family: 'ZenMaruGothic';
    src: url('../fonts/Zen_Maru_Gothic/ZenMaruGothic-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ZenMaruGothic';
    src: url('../fonts/Zen_Maru_Gothic/ZenMaruGothic-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ZenMaruGothic';
    src: url('../fonts/Zen_Maru_Gothic/ZenMaruGothic-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ZenMaruGothic';
    src: url('../fonts/Zen_Maru_Gothic/ZenMaruGothic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ZenMaruGothic';
    src: url('../fonts/Zen_Maru_Gothic/ZenMaruGothic-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "Font Awesome 6 Free";
  src: url("../fontawesome/webfonts/fa-solid-900.woff2") format("woff2"),
       url("../fontawesome/webfonts/fa-solid-900.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}


:root {
    --font-base: 'ZenMaruGothic', 'Noto Sans JP', sans-serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;
    --fw-black: 900;
}

html, body{
    height: 100%;
}
body {
  font-family:var(--font-base);
  color: #222;
  background: #fff;
  line-height: 1.8;
  /* max-width: 1280px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

body * {
    font-family:var(--font-base);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

main {
    padding: 80px 20px;
    max-width: 1280px;
    margin: 0 auto;
    flex:1;
    width: 100%;
}

.container {
    max-width: 960px;
    margin: 0 auto;
}

/* --------------------
 Typography
-------------------- */
h1 {
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    /* margin-bottom: 16px; */
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    border-bottom:solid 1px #abb8c3;
     color: #4f7786;
     font-weight: var(--fw-bold);
    padding-bottom:0.5rem;
    margin-bottom:2rem;
    margin-top:2rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

p {
    color: #444;
    font-size: 1rem;
    font-weight: var(--fw-medium);
}

}

time {
    font-size: 0.85rem;
    color: #999;
}

/* --------------------
 Section
-------------------- */
.section {
    margin-bottom: 120px;
}

.section-header {
    /* margin-bottom: 40px; */
}

.section-header h2 {
    font-size: 1.8rem;
}

.section-header p {
    /* color: #777; */
    margin-top: 8px;
}

/* --------------------
 Card
-------------------- */
.card-list {
    display: grid;
    gap: 32px;
}

.card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.card-meta {
    font-size: 0.8rem;
    color: #999;
}

.card-text {
    margin-top: 12px;
    color: #555;
}

/* --------------------
 Card
-------------------- */
.card-list {
    display: grid;
    gap: 32px;
}

.card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.card-meta {
    font-size: 0.8rem;
    color: #999;
}

.card-text {
    margin-top: 12px;
    color: #555;
}

.comments-area,
.comment-respond,
#comments {
    display: none !important;
}



/* header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    /* border-bottom: 1px solid #eee; */
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    align-content: center;
    max-width:1280px;
    margin:0 auto;
}

.logo {
    text-align: center;
}


.logo a {
    text-decoration: none;
    color: #4f7786;
    font-weight: var(--fw-bold);
}

.logo a span {
    display: block;
    font-size: 0.7rem;
}

/* nav */
.nav-list {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: #4f7786;
    font-weight: var(--fw-bold);
}

.nav-list a {
    position: relative;
    text-decoration: none;
    color: #4f7786;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #4f7786;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

/* hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #4f7786;
    margin: 5px 0;
}

/* SP */
@media (max-width: 768px) {
    .header-inner h1 {
    padding:0px 0px 10px 0px;
        margin:0;
}
    .global-nav {
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        background: #ffffffe8;
        display: none;
        padding-top:20px;
    }

    .global-nav.is-open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        padding: 16px;
    }

    .hamburger {
        display: block;
    }

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

}

footer {
    text-align: center;
    background-color: #efefef;
    font-size: 1rem;
    font-weight: var(--fw-medium);
    position:relative;
    bottom:0;
    display:block;
    width:100%;
    padding:1em 0em;
}


footer p {
    margin: 0;
}


.Wrap-profile{
    display:flex;
    font-size: 1rem;
    font-weight: var(--fw-medium);
    gap:5%;
    align-content:center;
    align-items:center;
    justify-content:center;
}

.Wrap-profile .Wrap-icn{
    width:20%;
}

.Wrap-text .name{
    font-size:1.2rem;
}
.Wrap-text .sub{
   font-size:0.9rem;
    margin-bottom:0.5rem;
    padding-bottom:0.5rem;
}
.Wrap-text p{
    margin:0;
}

.section-header{
width: 40%;
}

.Wrap-note-list{
background-color:#eee;
padding:1rem 2rem 1rem 1rem;
border-radius:10px;
width:60%;
text-align:left;
}


.note-item{
  font-size: 0.9rem;
  font-weight: var(--fw-regular);
  margin-bottom: 0.5rem;
  border-bottom: solid 1px #b0b5b7;
  padding-bottom: 0.5rem;
  position: relative;
}

.note-item::after{
  content: "\f138"; /* circle-chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 8px;
  font-size: 0.8rem;
  color: #4f7786;
}

.note-item::marker{
    color:#92b8c7;
}
.note-item time{
    padding-left:0.5rem;
    color:#585656;
     font-size:0.8rem;
}

.flexbox{
    display:flex;
    gap:5%;
}


.note-more{
    float:right;
}
.note-more a{
    font-size: 0.9rem;
    text-align: right;
    background-color: #fff;
    display: inline-block;
    padding: 0.5rem 3rem;
    border-radius: 999px;
    margin-left: auto;
     font-weight: var(--fw-regular);
    color: #4f7786;
}

.note-more a::after{
  content: "\f138"; /* circle-chevron-right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 8px;
  font-size: 0.8rem;
  color: #4f7786;
    
}

@media (max-width: 768px) {

main {
    padding: 30vw 5vw 0vw;
}
    
.Wrap-profile,.flexbox{
    flex-direction:column;
    gap:10%;
}

.Wrap-profile .Wrap-icn{
    width:80%;
}
.flexbox .section-header{
    width: 100%;
}
.note-more{
    float:inherit;
    width:100%;
}
.note-more a{
display:block;
text-align:center;
}
.Wrap-note-list{
    padding:1rem 1rem 2rem 2rem;
     width: 85%;
}
.Wrap-note-list ul{
    padding:0rem;
}
}

body.single main.single h1{
    font-family:var(--font-base);
    font-weight:var(--fw-medium);
    font-size:2rem;
    line-height:1.5rem;
    color:#4f7786;    
    padding-bottom:2rem;
    border-bottom:1px solid #bdbdbd;
    margin-bottom:2rem;
    text-align:center;
    
}

.post-content{
    max-width:750px;
    margin:0 auto;
    text-align:center;
}

body.single main.single .btn{
    padding:1rem 2rem;
    border:none;
    border-radius:999px;
    background-color:#116383;
    color:white;
    cursor:pointer;
}
body.single main.single .btn:hover{
    border:1px solid #116383;
    background-color:white;
    color:#116383;
    
}