@charset "utf-8";

/* loading */
#splash {
    position: fixed;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to left bottom, #59BEB3 0%, #1896BB 40%, #116BB5 70%, #1F489C 100%);
    text-align: center;
    color: #fff;
    font-family: "vox", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body.no-scroll {
    overflow: hidden;
}
/* fadeUp */

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeUpAnime{
    from {
    opacity: 0;
    transform: translateY(100px);
    }
    
    to {
    opacity: 1;
    transform: translateY(0);
    }
} 
.fadeUpTrigger{
    opacity: 0;
}

/* style */
html {
    font-size: 62.5%;
    margin-top: 0!important;
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}
@media (min-width:1200px){
    html{
        scroll-padding-top:100px;
    }
}
body {
    font-family: "roboto", 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
    color: #444;
    line-height: 1.6;
}

::selection {
    color: #fff;
    background-color: #1896BB;
}

a img:hover {
    opacity: 0.8;
    transition: 0.3s;
}
.arrow-box{
    text-align: right;
}
.btn-arrow {
    position: relative;
    padding: 5px 25px 10px 5px;
    display: inline-block;
    text-align: center;
    transition: all .2s linear;
    color: #444;
    text-decoration: none;
    border-bottom: 2px solid;
    border-image: linear-gradient(to left, #59BEB3 0%, #1896BB 40%, #116BB5 70%, #1F489C 100%)1;
    outline: none;
    margin-top: 30px;
    font-size: 2rem;
}

.btn-arrow:hover {
    border-image: linear-gradient(to left, #1F489C 0%, #116BB5 40%, #1896BB 70%, #59BEB3 100%)1;
}

.btn-arrow:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    width: 15px;
    height: 1px;
    background: #999999;
    transition: all .2s linear;
}

.btn-arrow::after {
    content: '';
    position: absolute;
    top: 43%;
    right: 6px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg);
    transition: all .2s linear;
}

.btn-arrow:hover::after, .btn-arrow:hover::before {
    right: 0;
}

.mission .btn-arrow, .team .btn-arrow {
    color: #fff;
    border-bottom: 2px solid #fff;
    border-image: linear-gradient(to left, #fff, #fff)1;
}

.mission .btn-arrow:hover, .team .btn-arrow:hover {
    border-image: linear-gradient(to left, #1F489C 0%, #116BB5 40%, #1896BB 70%, #59BEB3 100%)1;
}

.mission .btn-arrow:before, .team .btn-arrow::before {
    background: #fff;
}

.mission .btn-arrow::after, .team .btn-arrow::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}


/* header */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    border-bottom: 2px solid;
    border-image: linear-gradient(to left bottom, #59BEB3 0%, #1896BB 40%, #116BB5 70%, #1F489C 100%)1;
}

nav .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

nav .logo img {
    width: 190px;
    height: auto;
}

.nav-menu {
    color: #fff;
    margin-left: auto;
    padding: 48px;
    display: none;
    width: 100%;
    max-width: 430px;
    position: absolute;
    right: 0;
    z-index: 999;
    font-size: 2rem;
    font-weight: 400;
}


.nav-menu-show {
    display: block;
    background: linear-gradient(to left bottom, #59BEB3 0%, #1896BB 40%, #116BB5 70%, #1F489C 100%);
}

.menu-items>li {
    margin-bottom: 16px;
    width: 70%;
}

.menu-items a,
.menu-items p {
    display: inline-block;
    width: 100%;
    text-wrap: nowrap;
}

.menu-items>li:last-child:hover {
    opacity: 1;
}

.menu-items .nav-contact {
    width: 100%;
}

.hamburger-btn {
    position: relative;
    width: 42px;
    height: 42px;
    cursor: pointer;
}

.hamburger-btn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 10.5px;
    height: 4px;
    background-color: #116BB5;
}

.hamburger-btn span:nth-of-type(1) {
    top: 13px;
    width: 30px;
}

.hamburger-btn span:nth-of-type(2) {
    top: 23px;
    width: 30px;
}

.hamburger-btn span:nth-of-type(3) {
    top: 34px;
    width: 30px;
}

.hamburger-btn.active span:nth-of-type(1) {
    top: 14px;
    left: 10px;
    transform: translateY(6px) rotate(-45deg);
    width: 28px;
}

.hamburger-btn.active span:nth-of-type(3) {
    top: 26px;
    left: 10px;
    transform: translateY(-6px) rotate(45deg);
    width: 28px;
}

.hamburger-btn.active span:nth-of-type(2) {
    display: none;
}

.nav-menu .menu-items .btn-lang {
    background: #fff;
    color: #1896BB;
    padding: 0.25em 1.2em 0.25em;
    font-size: 14px;
    border: 2px solid #1896BB;
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 0.5em;
    text-align: center;
}

.nav-menu .menu-items .btn-lang li {
    color: #1896BB;
}

.nav-menu .menu-items .btn-lang:hover {
    background: #1896BB;
    color: #fff;
}

.nav-menu .menu-items .btn-lang:hover li {
    border-bottom: none;
    color: #fff;
}

@media (max-width: 389px) {
    .nav-menu {
        padding: 30px;
    }
}

@media (min-width: 768px) {
    nav .logo img {
        width: 240px;
        height: auto;
    }
}

@media (min-width: 1200px) {
    .hamburger-btn {
        display: none;
    }

    header {
        padding-left: 100px;
        padding-right: 100px;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100px;
        max-width: 1375px;
        margin: 0 auto;
    }

    nav .logo {
        display: inline-block;
        padding-top: 35px;
        padding-bottom: 29px;
    }

    .nav-menu {
        display: flex;
        flex-direction: column-reverse;
        align-items: end;
        background-image: none;
        color: #444;
        margin-top: 0;
        padding: 0;
        border-radius: 40px;
        position: static;
        width: fit-content;
        max-width: 1200px;
    }

    .nav-menu>div:first-child {
        width: fit-content;
    }

    .nav-menu>div:first-child ul {
        width: 100%;
    }

    .nav-menu .menu-items {
        display: flex;
        justify-content: end;
        padding: 28px 0 18px;
    }

    .menu-items>li {
        margin-bottom: 0;
        width: max-content;
        margin-right: 2.4rem;
        padding: 0.5em;
        font-size: 1.5rem;
        font-weight: 400;
        border-bottom: 2px solid #fff;
    }

    .nav-menu li:hover {
        color: #116BB5;
        transition: all 0.3s ease-in-out;
        border-bottom: 2px solid #1896BB;
    }

    .menu-items a {
        width: max-content;
    }

    .nav-contact {
        position: relative;
    }
}

.mission h2 {
    display: flex;
    flex-direction: column;
}

.section-title-en {
    font-size: 4.8rem;
    font-weight: 300;
}

.section-title-ja {
    font-size: 1.2rem;
    margin-top: 10px;
}

@media (min-width: 1200px) {
    .section-title-en {
        font-size: 7.2rem;
    }

    .section-title-ja {
        font-size: 1.4rem;
    }
}

/* kv */
.kv {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/img_top_kv.webp);
    background-color: #1896BB;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0 20px;
    height: 100vh;
    max-height: 600px;
}

.kv-copy {
    text-align: center;
    font-size: 4.4rem;
    color: white;
    text-shadow: 0 0 15px #000;
}

.kv-copy span {
    text-shadow: 0 0 15px #000;
}

/*========= 光りながら出現させるためのCSS ===============*/
.glowAnime span {
    opacity: 0;
}
.glowAnime.glow span {
    animation: glow_anime_on 1s ease-out forwards;
}
@keyframes glow_anime_on {
    0% {
        opacity: 0;
        text-shadow: 0 0 0 #fff, 0 0 0 #fff;
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 10px #fff, 0 0 15px #fff;
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 0 #fff, 0 0 0 #fff;
    }
}
/*========= 流れるテキスト ===============*/
.slide-in {
    overflow: hidden;
      display: inline-block;
  }
  .slide-in_inner {
    display: inline-block;
  }
  
  /* 上下のアニメーション*/
  .upAnime{
      opacity: 0;/* 事前に透過0 にして消しておく*/
  }
  .slideAnimeDownUp {
      animation-name:slideTextY100;
      animation-duration:0.8s;
      animation-fill-mode:forwards;
      opacity: 0;
  }
  @keyframes slideTextY100 {
      from {
          transform: translateY(100%);/* 要素を上の枠外に移動*/
          opacity: 0;
      }
      to {
          transform: translateY(0);/* 要素を元の位置に移動*/
          opacity: 1;
      }
  }
  .slideAnimeUpDown {
      animation-name:slideTextY-100;
      animation-duration:1s;
      animation-fill-mode:forwards;
      opacity: 0;
  }
  
  @keyframes slideTextY-100 {
      from {
      transform: translateY(-100%);/* 要素を下の枠外に移動*/
      opacity: 0;
      }
      to {
      transform: translateY(0);/* 要素を元の位置に移動*/
      opacity: 1;
      }
  }
@media (min-width: 1200px) {
    .kv-copy {
        max-width: 864px;
        font-size: 6.4rem;
    }
}

/* news */
.news {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.news-container-outer {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.news-container-inner h2 {
    color: #444;
    font-size: 2.4rem;
    margin-bottom: 24px;
}

.news-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.2rem;
    padding-top: 18px;
    padding-bottom: 18px;
    border-top: 1px solid #D9D9D9;
    gap: 20px;
}

.news-item:last-child {
    border-bottom: 1px solid #D9D9D9;
}

.news-category {
    width: 100px;
    max-width: 100px;
    padding-top: 3px;
    padding-bottom: 5px;
    background-color: #1E499D;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    /* margin-left: 20px; */
}
.news-all .news-category{
    padding-top: 0;
    padding-bottom: 0;
}
.news-title {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #ffffff;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 10px;
}
.news-all .news-title {
    overflow: auto;
    text-overflow: unset;
    white-space: wrap;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 10px;
}
.page p a{
    font-weight: bold;
    color: #1E499D;
}
@media (min-width: 1200px) {
    .news {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        padding-bottom: 80px;
    }

    .news-container-outer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        width: 900px;

    }

    .news-container-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 900px;
    }

    .news-container-inner h2 {
        font-size: 3.6rem;
        font-weight: 300;
    }

    .news-item {
        flex-wrap: nowrap;
        font-size: 1.4rem;
        padding-top: 20px;
        padding-bottom: 20px;
        width: 710px;
    }

    .news-item:last-child {
        border-bottom: 1px solid #D9D9D9;
    }

    .news-category {
        border: 1px solid#fff;
        margin-left: 0;
    }

    .news-category:hover {
        background-color: #fff;
        color: #1E499D;
        border: 1px solid#1E499D;
        transition: 0.3s;
    }

    .news-title {
        margin-top: 0;
        max-width: 500px;
        font-size: 1.4rem;
        font-weight: 400;
        margin-top: 0;
    }

    .news-title:hover,.page p a:hover {
        border-bottom: 1px solid #1896BB;
        transition: 0.3s;
    }
}

/* mission */
.mission {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #fff;
    padding: 40px 20px;
    background-image: linear-gradient(to left bottom, #59BEB3 0%, #1896BB 40%, #116BB5 70%, #1F489C 100%);
}

.mission-container-outer {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    text-align: center;
}

.mission-container-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.mission-lead {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.6;
    margin-top: 30px;
}

.mission-text {
    font-size: 1.6rem;
    line-height: 2;
    margin-top: 20px;
    text-align: justify;
}

@media (min-width: 1200px) {
    .mission {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .mission-container-outer {
        max-width: 866px;
    }

    .mission-lead {
        font-size: 2.8rem;
    }

    .mission-text {
        font-size: 2.2rem;
        line-height: 2;
    }
}

/* top-product */
.product {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px 20px;
}

.product-container-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-container-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-container-inner-box01 {
    display: flex;
    flex-direction: column;
}

.product h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-top: 40px; */
}

.product-img img {
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

.product-lead {
    font-size: 2.4rem;
    margin-top: 30px;
    text-align: center;
}

.product-text {
    font-size: 1.6rem;
    line-height: 2;
    margin-top: 20px;
    text-align: justify;
}

.product .title-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.title-icon h4 {
    font-size: 2.4rem;
    margin-left: 10px;
}

.product-container-inner-box02 {
    display: flex;
    flex-direction: column;
}

.product-container-inner-box02-desc {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-container-inner-box02-desc p {
    font-size: 1.6rem;
    margin-top: 10px;
    text-align: justify;
}

.product-desc-outer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-desc-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 30px;
    border-radius: 5px;
    border: 2px solid#B9D3DB;
    box-shadow: 4px 4px #B9D3DB;
    margin-top: 15px;
    margin-bottom: 20px;
}

.product .arrow-blue {
    text-align: center;
}

.product .arrow-blue img {
    transform: rotate(90deg);
    width: 30px;
}
.br-sp{
    display: block;
}

@media (min-width: 600px) {
    .br-sp{
        display: none;
    }
}
@media (min-width: 1200px) {
    .product {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .product-container-inner-box01 {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 1100px;
        margin-top: 30px;
    }

    .product-lead {
        font-size: 3.4rem;
        margin-top: 50px;
        line-height: 1.6;
    }

    .product-text {
        max-width: 550px;
        margin-top: 0;
    }
    .product-img img {
        margin-top: 0;
    }

    .product-container-inner-box02 {
        flex-direction: row;
        justify-content: space-between;
        width: 820px;
        margin-top: 30px;
    }

    .product-container-inner-box02-desc {
        max-width: 330px;
        justify-content: space-between;
    }

    .product-desc-box {
        max-width: 330px;
        height: 230px;
    }

    .product .arrow-blue img {
        transform: rotate(0deg);
    }

    .product .arrow-blue {
        margin-top: 40px;
    }
}

/* top-team */
.team {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #fff;
    padding: 40px 20px 100px;
    background-image: linear-gradient(to left bottom, #59BEB3 0%, #1896BB 40%, #116BB5 70%, #1F489C 100%);
    height: auto;
}

.team-container-outer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.team-container-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-box {
    width: 100%;
    margin-top: 20px;
}

.team-img img {
    width: 100%;
}

.team-desc {
    top: 100px;
    right: 0;
    padding: 30px 20px 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    color: #444;
    text-align: center;
    margin-top: 20px;
}

.team-desc::after {
    padding: 100%;
}

.team-desc p {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 30px;
}

.team-desc h3 {
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    z-index: 1;
}

.team-desc h3::after {
    position: absolute;
    top: -13px;
    content: 'KENJI SUZUKI';
    color: #E4F1F5;
    font-size: 4rem;
    font-weight: 400;
    transform: translateX(-50%);
    left: 50%;
    text-align: center;
    white-space: nowrap;
    z-index: -1;
}

.team-desc .team-desc-person {
    font-size: 1.4rem;
    font-weight: 700;
    color: #116BB5;
    text-align: center;
    margin-bottom: 26px;
}

.team-bnr img {
    width: 100%;
}

.team .btn-arrow {
    position: absolute;
    bottom: 40px;
}

@media (min-width: 1200px) {
    .team {
        padding: 80px 20px;
        height: 1048px;
    }

    .team-container-inner {
        align-items: flex-start;
        width: 1100px;
    }

    .team-box {
        position: relative;
        width: 100%;
        margin-top: 50px;
    }

    .team-img img {
        width: 600px;
    }

    .team-desc {
        position: absolute;
        top: 100px;
        right: 0;
        padding: 66px 40px 40px;
        width: 550px;
    }

    .team-box {
        margin-top: 50px;
    }

    .team-desc h3::after {
        font-size: 6rem;
    }

    .team-desc h3::after {
        top: -28px;
    }

    /* .team .btn-arrow {
        bottom: 80px;
    } */

}

/* company */
.company {
    padding: 40px 20px;
}

.company h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin-top: 40px; */
}

.company-container-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-container-inner {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.company table {
    font-size: 1.6rem;
    line-height: 1.6;
    padding-right: 80px;
}

.company th {
    width: 80px;
}

.company td {
    padding-left: 25px;
    /* padding-right: 80px; */
}

.company .map {
    width: 100%;
    margin-top: 30px;
}

@media (min-width: 1200px) {
    .company {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .company-container-inner {
        flex-direction: row;
        width: 1100px;
        margin-top: 50px;
    }

    .company th {
        width: 80px;
    }

    .company td {
        padding-left: 25px;
        padding-right: 80px;
    }

    .company .map {
        max-width: 550px;
        margin-top: 0;
    }
}

/* recruit */
.recruit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #E4F1F5;
    padding: 40px 20px 100px;
}

.recruit h2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.recruit-container-outer {
    display: flex;
    flex-direction: column;
}

.recruit-container-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 30px;
}

.recruit-img img {
    width: 100%;
}

.recruit-desc {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 30px;
}

.recruit-desc p {
    font-size: 1.6rem;
}

.recruit-desc .recruit-lead {
    font-size: 2.4rem;
    margin-bottom: 30px;
}

.recruit-desc .btn-arrow {
    position: absolute;
    right: 0;
}

@media (min-width: 1200px) {
    .recruit {
        padding-top: 80px;
        padding-bottom: 150px;
    }

    .recruit-container-outer {
        flex-direction: column;
        width: 1100px;
    }

    .recruit-container-inner {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 50px;
    }

    .recruit-img img {
        max-width: 550px;
    }

    .recruit-desc {
        max-width: 530px;
        margin-top: 0;
    }

    .recruit-desc .btn-arrow {
        bottom: 0;
    }

}

/* footer */
footer {
    background-color: #18191B;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
}

footer nav ul {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

footer nav ul li {
    padding-right: 8px;
    padding-left: 8px;
    border-right: 1px solid #fff;
}

footer nav ul li:last-child {
    border-right: none;
}

footer nav ul li:hover {
    color: #116BB5;
    transition: all 0.3s ease-in-out;
}

@media (min-width: 1200px) {
    footer {
        padding-top: 60px;
        padding-bottom: 20px;
        font-size: 1.6rem;
    }

    footer nav ul {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
    }

    footer nav ul li {
        padding-right: 25px;
        padding-left: 25px;
        border-right: 1px solid #fff;
    }
}

/* single.php / page.php */
.single, .page {
    font-size: 1.6rem;
    line-height: 160%;
}

.single-kv, .page-kv {
    display: flex;
    justify-content: center;
    padding: 30px 20px;
    background: linear-gradient(to left bottom, #59BEB3 0%, #1896BB 40%, #116BB5 70%, #1F489C 100%);
    color: #fff;
    text-align: center;
}

.single h2,.single h3,.single h4,.single h5,.single h6{
    line-height: 1.6;
    margin-top: 10px;
    font-weight: 700;
}
.single h2 {
    font-size: 3.2rem;
}
.single h3 {
    font-size: 2.8rem;
}
.single h4 {
    font-size: 2.4rem;
}
.single h5 {
    font-size: 2rem;
}
.single h5 {
    font-size: 1.8rem;
}
.single-item ul, .page-item ul {
    display: flex;
}

.single-kv-txt h2, .page-kv-txt h2 {
    font-size: 2.4rem;
    line-height: 1.6;
    margin-top: 10px;
    font-weight: 400;
}
.single-kv-txt, .page-kv-txt p {
    font-size: 1.6rem;
}

.single-kv .single-item, .page-kv .page-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.2rem;
    padding-top: 18px;
    padding-bottom: 18px;
}

.single-kv-txt .post-categories li {
    width: 100px;
    max-width: 100px;
    padding-top: 3px;
    padding-bottom: 4px;
    background-color: #1E499D;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    margin-right: 25px;
}

.single-kv-txt .post-categories li:hover {
    background-color: #fff;
    color: #1E499D;
    transition: 0.3s;
    cursor: pointer;
}

.single section, .page section {
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}

.single-post-content, .page-post-content {
    margin-top: 50px;
    margin-bottom: 100px;
}

.wp-block-image {
    margin-bottom: 20px;
}
.single-post-content img{
    width: 100%;
    height: auto;
}

.single section p, .page section p {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: justify;
}
.page-post-content h2.wp-block-heading {
    font-size: 3.6rem;
    line-height: 1.6;
    margin-bottom: 1em;
}

.page-post-content h3.wp-block-heading {
    font-size: 2.4rem;
    margin-top: 2em;
    margin-bottom: 1em;
}
/* .page a{
    font-weight: 700;
    border-bottom: 1px solid #1896BB;
    transition: 0.3s;
}
.page a:hover{
    color:#116BB5;
} */

.wp-block-list{
    padding-left: 1.25em;
}
.wp-block-list li{
    list-style: disc;
}
ol.wp-block-list li{
    list-style: decimal;
}
@media (min-width: 1200px) {
    .single-post-content, .page-post-content {
        width: 900px;
        margin-top: 100px;
        margin-bottom: 150px;
    }

    .single-kv-txt {
        width: 900px;
        text-align: left;
    }

    .page-kv-txt {
        width: 900px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .single-kv-txt h2 {
        font-size: 3.2rem;
        font-weight: 400;
    }

    .page-kv-txt h2 {
        font-size: 7.6rem;
        font-weight: 300;
        font-family: "roboto", 'Noto Sans JP', sans-serif;
    }

    .single-kv, .page-kv {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wp-block-image {
        margin-bottom: 50px;
    }

    .single .news-item, .page .news-item {
        width: 900px;
    }

    .single .news-title, .page .news-title {
        width: 710px;
        max-width: 710px;
        font-size: 1.4rem;
        font-weight: 400;
        margin-top: 0;
    }
    .single-post-content img{
        max-width: 900px;
    }
}


/* contact */
.contact-container {
    margin-top: 50px;
    margin-bottom: 50px;
}
input[type=radio],input[type=checkbox] {
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
    position: relative;
    width: auto;
    color: #666;
    user-select:none;
  }
  input[type=radio]::before,input[type=checkbox]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    display: block;
    height: 16px;
    width: 16px;
    margin-top: -9px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #aaa;
  }
  input[type=radio]::after,input[type=checkbox]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    display: block;
    height: 9px;
    width: 5px;
    margin-top: -7px;
    border-right: 3px solid #1896BB;
    border-bottom: 3px solid #1896BB;
    opacity: 0;
    transform: rotate(45deg);
  }
  input[type=radio]:checked::after,input[type=checkbox]:checked::after {
    opacity: 1;
  }

.Form {
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}
.Form-Item {
    border-top: 1px solid #ddd;
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
}

.Form-Item-Label {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 30px;
}
.radio .mwform-radio-field-text{
    cursor: pointer;
}
.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

.Form-Item-Label-Required {
    border-radius: 2px;
    margin-left: 10px;
    padding-left: 8px;
    padding-right: 8px;
    text-align: center;
    background: #EB5050;
    color: #fff;
    font-size: 1rem;
    line-height: 1.8rem;
}

.Form-Item-Input {
    border: 1px solid #444;
    border-radius: 2px;
    padding: 0.6em;
    /* margin-bottom: 32px; */
    height: 40px;
    flex: 1;
    width: 100%;
    max-width: 640px;
    background: #f3f4f5;
    font-size: 1.6rem;
}

.Form-Item-Textarea {
    border: 1px solid #444;
    border-radius: 2px;
    padding: 0.6em;
    height: 180px;
    flex: 1;
    width: 100%;
    max-width: 640px;
    background: #f3f4f5;
    font-size: 1.6rem;
}
.btn-container{
    display: flex;
    flex-direction: column;
}
.Form-Btn-back, .Form-Btn-confirm, .Form-Btn-submit {
    border-radius: 2px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 24px;
    text-align: center;
    width: 100%;
    max-width: 150px;
    display: block;
    letter-spacing: 0.05em;
    background: #444444;
    color: #fff;
    font-size: 1.6rem;
    border: 1px solid #444;
    transition: 0.3s;
}

.Form-Btn-back:hover, .Form-Btn-confirm:hover, .Form-Btn-submit:hover {
    background: #fff;
    color: #444;
}
.terms{
    margin-top: 30px;
    text-align: center;
}
.terms .mwform-checkbox-field-text{
    cursor: pointer;
}
.contact p{
    overflow-wrap: anywhere;
  word-break: normal; 
  line-break: strict;
}
.contact section p {
max-width: 500px;
}
@media (min-width: 768px) {
    .btn-container{
        flex-direction: row;
        width: 500px;
    }
}
@media (min-width: 1200px) {
    .contact-container {
        margin-top: 100px;
        margin-bottom: 100px;
    }
}

/* team */
.page-team-kv {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/img_team_kv.webp);
    background-color: #1896BB;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0 20px;
    height: 100vh;
    max-height: 300px;
    color: #fff;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
    text-align: center;
}

.page-team-kv h2 .section-title-en, .page-team-kv h2 .section-title-ja{
    display: block;
}
.page-team {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #444;
    padding-top: 100px;
    height: auto;
    font-size: 1.6rem;
}
.page-team img{
    width: 100%;
}
.img-white img{
    border: 1px solid #ececec;
    box-sizing: border-box;
}
.page-team-container-outer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 20px;
}

.page-team-container-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-team h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-team h4{
    margin-bottom: 15px;
}
.page-team h4 .board-name{
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-left: 0;
    text-align: center;
}

.page-team h4 .board-position{
    font-size: 1.4rem;
    color: #116BB5;
    margin-left: 20px;
    display: block;
    margin-left: 0;
    text-align: center;
}

.page-team-box {
    width: 100%;
    margin-top: 20px;
}

.page-team-img img {
    width: 100%;
}
.img-sq{
    text-align: center;
}
.img-sq img{
width: auto;
max-height: 150px;
}
.page-team-desc {
    top: 100px;
    right: 0;
    padding: 30px 20px 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    color: #444;
    text-align: center;
    margin-top: 20px;
}

.page-team-desc::after {
    padding: 100%;
}

.page-team p {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: justify;
    /* margin-bottom: 30px; */
}

.page-team-desc h3 {
    position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    z-index: 1;
}

/* .page-team-desc h3::after {
    position: absolute;
    top: -13px;
    content: 'KENJI SUZUKI';
    color: #E4F1F5;
    font-size: 4rem;
    font-weight: 400;
    transform: translateX(-50%);
    left: 50%;
    text-align: center;
    white-space: nowrap;
    z-index: -1;
} */

.page-team-desc .page-team-desc-person {
    font-size: 1.4rem;
    font-weight: 700;
    color: #116BB5;
    text-align: center;
    margin-bottom: 26px;
}
.board{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    gap: 50px;
    padding: 0 20px;
}
.board-box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.borad-txt{
    width: 100%;
    line-height: 26px;
    margin-top: 20px;
}
.corporate{
    background-color: #E4F1F5;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}
.doctor{
    background-color: #fff;
    padding: 50px 20px;
}
.corporate-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.corporate-box-outer{
    display: flex;
    flex-direction: column;
    column-gap: 60px;
    align-items: center;
}
.corporate-box{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    column-gap: 20px;
    align-items: center;
}
.corporate-img{
    width: 100%;
}
.corporate-txt{
    width: 100%;
    margin-top: 15px;
}
.adviser{
    padding: 50px 20px 100px;
}
.adviser-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.adviser-box-outer{
    width: 100%;
}
.adviser-box{
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    column-gap: 20px;
    width: 100%;
}
.adviser-txt{
    width: 100%;
}
.adviser-txt h4{
    text-align: center;
}
.adviser-txt .board-name{
    display: block;
    margin-top: 15px;
}
.adviser-txt h4 .board-position{
    display: block;
    margin-top: 0;
}
@media (min-width: 768px) {
    .board{
        flex-direction: row;
        flex-wrap: wrap;
        align-items:flex-start;
        justify-content: center;
    }
    .board-box{
        width: calc((100% - 50px) / 2);
    }
    .corporate-box-outer{
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        align-content: space-between;
    }
    .corporate-box{
        width: calc((100% - 60px) / 2);
    }
    .adviser-box-outer{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    .adviser-box{
        width: calc(100% / 3);
    }

}
@media (min-width: 1200px) {
    .page-team {
        padding: 80px 0 0;
    }

    .page-team-container-inner {
        align-items: flex-start;
        width: 1100px;
    }

    .page-team-box {
        position: relative;
        width: 100%;
        margin-top: 50px;
    }

    .page-team-img img {
        width: 600px;
    }

    .page-team-desc {
        position: absolute;
        top: 100px;
        right: 0;
        padding: 66px 40px 40px;
        width: 550px;
    }

    .page-team-desc::after{
        padding: 100%;
    }

    .page-team-box {
        margin-top: 50px;
    }

    .page-team-desc h3::after {
        font-size: 6rem;
    }

    .page-team-desc h3::after {
        top: -28px;
    }
    .board{
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        margin-top: 205px;
        margin-bottom: 100px;
        row-gap: 50px;
    }
    .board-box{
        flex-direction: row;
        width: 900px;
        justify-content: space-between;
    }
    .board-box img{
        max-width: 300px;
    }
    .borad-txt{
        width: 100%;
        max-width: 550px;
        line-height: 26px;
        margin-top: 0;
    }
    .corporate{
        background-color: #E4F1F5;
        width: 100%;
        justify-content: center;
    }
    .corporate-box{
        flex-direction: row;
        align-items: flex-start;
        margin-top: 50px;
        column-gap: 20px;
    }
    .corporate-img{
        max-width: 190px;
    }
    .corporate-txt{
        max-width: 310px;
        margin-top: 0;
    }
    .board h4 .board-name,.board h4 .board-position,.corporate-txt h4 .board-name,.corporate-txt h4 .board-position{
        display: inline-block;
        text-align: left;
    }
    .board h4 .board-position,.corporate-txt h4 .board-position{
        margin-left: 20px;
    }
    .doctor{
        background-color: #fff;
        padding: 50px 20px;
    }
    .corporate-container{
        width: 100%;
        max-width: 1100px;
        flex-direction: column;
        align-items: flex-start;
    }
    .corporate-box-outer{
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        column-gap: 60px;
    }
    /* .adviser-box-outer::after{
        max-width: 250px;
    } */
    .corporate-box{
        margin-top: 50px;
        column-gap: 20px;
    }
    .corporate-txt{
        width: 100%;
        max-width: 310px;
    }
    .adviser{
        padding: 50px 20px 150px;
    }
    .adviser-container{
        width: 100%;
        max-width: 1100px;
        align-items: flex-start;
    }
    .img-sq img{
        width: 190px;
        max-height: 190px;
    }
    .adviser-txt h4 .board-position{
        margin-top: 20px;
    }
}

/* arhive */
.pagination {
    margin-top: 80px;
display: flex;
justify-content: center;
}
.nav-links{
 display:flex;
}
.page-numbers{
 display:inline-block;
 margin-right:20px;
 color:#333;
 font-size: 1.6rem;
}
.page-numbers a:hover{
    border-bottom: 1px solid #1896BB;
}
.page-numbers.current{
 color:#1896BB;
 font-weight: 700;
}
.page-numbers.prev,
.page-numbers.next{
    /* display: none; */
 background:transparent;
 box-shadow:none;
   border:none;
 color:#666666; 
}
.page-numbers.dots{
 background:transparent;
 box-shadow:none;
   border:none;
 color:#666666; 
}
.next{
    position: relative;
    padding: 0 25px 0 0;
}
.next::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-left: 8px solid #555;
}
.prev{
    position: relative;
    padding: 0 0 0 25px;
}
.prev::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 7px solid transparent; 
    border-right: 8px solid #555;  /* 好みで色を変えてください */  
}
/* レスポンシブデザインのためのメディアクエリ */
@media (max-width: 600px) {
.page-numbers,
.page-numbers.current    {
   padding:5px 10px; /* パディングを小さく */
}
}