/*!
Theme Name: NEW NOTE
Theme URI: https://new-note.co.jp/
Author: Shinya Miyata
Author URI: https://new-note.co.jp/
Version: 1.0
Text Domain: new-note
*/

/**
 * BASE - Bulmaのオーバーライドとカスタムスタイル
 */
:root {
    --primary-color: rgba(65, 120, 187, 1);
    --secondary-color: rgba(8, 150, 143, 1);
    --text-color: rgba(0, 0, 0, 1);
    --gray-color: rgba(129, 129, 129, 1);
    --light-gray: rgba(240, 240, 240, 1);
    --orange-color: rgba(242, 128, 14, 1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', 'Helvetica Neue', 'Helvetica', "Hiragino Sans W3", 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', '游ゴシック', 'Yu Gothic', '游ゴシック体', 'YuGothic', 'メイリオ', 'Meiryo', sans-serif;
    min-height: 100vh;
    font-size: 16px;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--text-color);
}

a:hover {
    opacity: .6;
    color: var(--gray-color);
    text-decoration: underline;
}

#wpadminbar {
    display: none;
}

/* Bulmaの見出しをオーバーライド */
h2, .title.is-2 { 
    font-size: 27px !important;
    font-weight: bold !important;
    color: var(--primary-color) !important;
    margin-bottom: 1rem !important;
}

h2 .english {
    font-size: 20px;
    font-weight: normal;
    margin-top: 16px;
    margin-left: 8px;
    color: var(--gray-color);
}

h3, .title.is-3 {
    font-size: 20px !important;
    font-weight: bold !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

h3 .english, h3 .subtitle {
    font-size: 16px;
    font-weight: normal;
    color: var(--gray-color);
}

/* Bulmaのテキストカラーをオーバーライド */
.has-text-primary {
    color: #08968F !important;
}

/* Bulmaのフォームコントロールをオーバーライド */
.input, .textarea, .select select {
    border: 1px solid rgba(170, 170, 170, 1) !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    width: 90%;
}

.input:focus, .textarea:focus, .select select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}

/**
 * GOOGLE RECAPTCHA
 */
.grecaptcha-badge {
    visibility: hidden;
}

/**
 * PAGE
 */
.page-content {
    max-width: 1200px;
    min-height: 74vh;
    width: 100vw;
    margin: auto;
    padding: 0 0 48px;
    font-size: 14px;
    word-break: break-all;
}

.page-header {
    margin: 0 auto 80px;
    font-size: 16px;
}

.page-header h2 {
    margin: 0;
    font-weight: normal;
}

/**
 * HEADER - Bulmaのnavbarをカスタマイズ
 */
.header {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    width: 100vw;
    margin: 0 auto;
    padding: 16px 24px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    margin: auto 0;
    width: 30%;
}

.header-logo a {
    display: inline-block;
    width: 120px;
}

.header-logo a:hover {
    text-decoration: none;
}

.header-logo-img {
    width: 100%;
    height: auto;
    display: block;
}

/**
 * FOOTER - Bulmaのfooterをカスタマイズ
 */
.footer {
    padding: 8px 0;
    height: 56px;
    background-color: var(--primary-color) !important;
}

.footer-copy-right {
    width: 70%;
    font-weight: 100;
    margin: auto;
    color: white;
    text-align: center;
}

.footer-copy-right p {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

/**
 * BUTTON - Bulmaのbuttonをカスタマイズ
 */
.button.is-primary {
    background-color: var(--primary-color) !important;
    border-radius: 4px;
    color: white !important;
}

.button.is-danger {
    background-color: var(--secondary-color) !important;
    border-radius: 4px;
    color: white !important;
}

.btn_contact-submit {
    background-color: var(--orange-color);
    border-radius: 4px;
    color: white;
    cursor: pointer;
    display: block;
    text-align: center;
    width: 160px;
    max-width: 90%;
    margin: auto;
    padding: 8px;
    border: none;
    font-size: 14px;
    font-weight: bold;
}

.btn_contact-submit:disabled,
.btn_disabled {
    cursor: not-allowed;
    background-color: rgba(242, 128, 14, 0.2);
}

/**
 * CONTENTS - Bulmaのcontainerとsectionを活用
 */
.contents {
    width: 75vw;
    margin: auto;
}

.contents-space-wide {
    margin: 0 0 48px;
}

.contents-space-narrow {
    margin: 0 0 24px;
}

.contents-two {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.contents-two-img {
    width: 40%;
} 

.contents-two-text {
    width: 60%;
}

.contents-two-text-right {
    text-align: right;
}

.contents-action {
    font-weight: bold;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100vw;
    height: 80vh;
    overflow: hidden;
    background-color: #fff;
}

.hero-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.hero-layer.always-show {
    opacity: 1;
    transform: none;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: auto;
}

.hero-layer.always-show img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    margin: auto;
    display: block;
}

.hero-layer.delay-1 {
    animation: fadeSlideInRight 1.2s ease 0s forwards;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 40px;
}

.hero-layer.delay-2 {
    animation: fadeSlideInLeft 1.2s ease 1.5s forwards;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 40px;
    bottom: 80px;
}

.hero-layer.delay-1 img,
.hero-layer.delay-2 img {
    width: 45%;
}

@keyframes fadeSlideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* SECTION - Bulmaのsectionをカスタマイズ */
.section {
    padding: 40px 0 !important;
    max-width: 960px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.section.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/**
 * IMAGE
 */
.img-main {
    width: 100%;
    padding: 0;
    display: block;
    text-align: center;
    margin: auto;
    height: 520px;
    object-fit: cover;
}

.img-sub {
    width: 90%;
    height: 256px;
    object-fit: cover;
    margin: 16px 0;
}

/**
 * TABLE - Bulmaのtableをカスタマイズ
 */
.table-info-profile {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
}

.table-info-row {
    display: table-row;
}

.table-info-cell-title {
    font-weight: bold;
    display: table-cell;
    vertical-align: top;
    width: 120px;
    margin: 0;
    padding: 8px 0;
}

.table-info-cell-value {
    display: table-cell;
    vertical-align: top;
}

.table-info-cell-value p {
    margin: 0;
    padding: 8px 0;
}

.table-info-cell-value p:nth-child(n + 2) {
    padding: 0;
}

/**
 * CONTACT FORM
 */
.contents-contact {
    display: flex;
    justify-content: left;
    width: 100%;
    margin: 0 0 1px;
}

.contact-label {
    width: 35%;
    font-weight: bold;
    background-color: rgba(0, 161, 233, 0.2);
    padding: 16px 8px;
}

.contact-input {
    width: 65%;
    padding: 8px 8px;
}

.contact-submit-check {
    text-align: center;
    margin-bottom: 8px;
}

.contact-submit-btn {
    text-align: center;
    margin: 32px 0 8px;
}

.contact-attention {
    color: var(--secondary-color);
    margin: 24px 0 4px;
}

.required {
    color: var(--secondary-color);
}

/**
 * OTHERS
 */
a.anchor {
    display: block;
    margin-top: -100px;
    padding-top: 100px;
}

.vision-title {
    font-size: 25px;
    font-weight: bold;
}

.signature {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    margin-top: 32px;
}

.signature span {
    font-size: 0.8rem;
    margin-right: 16px;
}

.top-message-width {
    width: 80%;
}

.bullet {
    color: var(--primary-color);
    margin-right: 4px;
}

/**
 * UTILITY CLASSES - Bulmaスタイル
 */
.u-margin-top-32px, .mt-5 {
    margin-top: 32px !important;
}

.u-margin-top-64px {
    margin-top: 64px !important;
}

.u-text-align-right, .has-text-right {
    text-align: right !important;
}

/**
 * RESPONSIVE - Bulmaのブレークポイントに合わせる
 */
@media screen and (min-width: 1200px) {
    .page-content {
        max-width: none;
    }
    
    .hero-layer.delay-2 {
        bottom: 0;
    }
}

/* Tablet and below */
@media screen and (max-width: 1023px) {
    h2, .title.is-2 {
        font-size: 20px !important;
    }
    
    h3, .title.is-3 {
        font-size: 16px !important;
        margin: 16px 0 8px 0 !important;
    }
    
    .input, .textarea, .select select {
        font-size: 10px !important;
    }
    
    .page-content {
        padding: 0 0 64px;
        font-size: 12px;
    }
    
    .header-inner {
        padding: 12px 12px 0 12px;
        display: block;
    }
    
    .header-logo-img {
        width: auto;
        height: 64px;
    }
    
    .contents {
        width: 90vw;
    }
    
    .contents-two {
        display: block;
        margin-bottom: 48px;
    }
    
    .contents-two-img,
    .contents-two-text {
        width: 100%;
    }
    
    .img-main {
        height: 360px;
    }
    
    .img-sub {
        width: 100%;
        height: 240px;
        margin: 0;
    }
    
    .table-info-profile {
        display: block;
        border-spacing: 0 0;
    }
    
    .table-info-row {
        display: block;
    }
    
    .table-info-cell-title {
        display: block;
        padding: 0 0 4px;
        font-size: 14px;
    }
    
    .table-info-cell-value {
        display: block;
        padding: 0 0 8px;
        font-size: 14px;
    }
    
    .table-info-cell-value p {
        padding: 0 0 4px;
    }
    
    .contact-label {
        font-size: 10px;
        width: 90%;
        text-align: left;
        margin: auto;
        padding: 8px;
    }
    
    .contact-input {
        width: 100%;
        margin: 4px auto 16px;
        padding: 0;
    }
    
    .contents-contact {
        display: block;
        text-align: center;
    }
    
    .hero {
        height: 50vh;
    }
    
    .hero-layer.delay-2 {
        bottom: 0;
    }
    
    .hero-layer.delay-1 img,
    .hero-layer.delay-2 img {
        width: 55%;
    }
    
    .footer-copy-right p {
        font-size: 10px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .header-logo-img {
        width: auto;
        height: 40px;
    }
    
    .img-main {
        height: 200px;
    }
    
    .hero {
        height: 25vh;
    }
    
    .top-message-width {
        width: 100%;
    }
    
    .contact-attention {
        font-size: 10px;
        width: 90%;
        margin: 24px auto 4px;
    }
}

body {
    /* font-family: 'Noto Serif JP', 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif; */
    font-family: 'PT Sans', 'Helvetica Neue', 'Helvetica', "Hiragino Sans W3", 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', '游ゴシック', 'Yu Gothic', '游ゴシック体', 'YuGothic', 'メイリオ', 'Meiryo', sans-serif;
    min-height: 100vh;
    /* padding-top: 152px;
    padding-bottom: 48px; */
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    font-size: 16px;
}
body.home {
    /* padding-top: 0 !important;
    padding-bottom: 0 !important; */
}
a {
    text-decoration: none;
    cursor: pointer;
    color: rgba(0, 0, 0, 1);
}
a:hover {
    opacity: .6;
    color: rgba(129, 129, 129, 1);
    text-decoration: underline;
}
small {
    font-family: inherit;
}
#wpadminbar {
    display:none;
}
h2{ 
    font-size: 27px;
    font-weight: bold;
    /* font-family: 'Kosugi', sans-serif; */
    color: rgba(66, 119, 188, 1);
}
/* h2 p {
    margin: 0;
} */
h2 .english {
    font-size: 20px;
    font-weight: normal;
    margin-top: 16px;
    margin-left: 8px;
    color: rgb(128, 128, 128, 1);
}
h3 {
    font-size: 20px;
    font-weight: bold;
    /* font-family: 'Kosugi', sans-serif; */
    margin: 16px 0 0 0;
}
h3 p {
    margin: 0;
}
h3 .english {
    font-size: 16px;
    font-weight: normal;
    /* margin-top: 16px;
    margin-left: 8px; */
    color: rgb(128, 128, 128, 1);
}
input[type="text"], 
input[type="tel"], 
input[type="email"], 
textarea, 
select {
    border: 1px solid rgba(170, 170, 170, 1);
    border-radius: 5px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 1);
    font-size: 14px;
    width: 90%;
    padding: 8px 8px;
    line-height: 1;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="text"]:focus, 
input[type="tel"]:focus, 
input[type="email"]:focus, 
textarea:focus, 
select:focus{
    border: 1px solid rgba(66, 119, 188, 1);
    outline: none;
}

/**
 * GOOGLE RECAPTCHA
 */
.grecaptcha-badge {
    visibility: hidden;
}

/**
 * PAGE
 */
.page-content {
    max-width: 1200px;
    min-height: 74vh;
    /* min-height: calc(100vh - 48px); */
    width: 100vw;
    margin: auto;
    padding: 0 0 48px;
    font-size: 14px;
    word-break: break-all;
}
.page-content-space-narrow {
    max-width: 1200px;
    min-height: 60vh;
    width: 100vw;
    margin: auto;
    padding: 132px 0 8px;
    font-size: 14px;
    word-break: break-all;
}
.page-header {
    margin: 0 auto 80px;
    font-size: 16px;
}
.page-header h2 {
    margin: 0;
    font-weight: normal;
}
.page-section {
    margin: auto;
}


/**
 * HEADER
 */
.header {
    background-color: rgba(255, 255, 255, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.header-inner {
    max-width: 1200px;
    width: 100vw;
    margin: 0 auto;
    padding: 16px 24px 0 24px;
    /* display: block; */
    display: flex;
    /* justify-content: space-around; */
    justify-content: space-between;
    align-items: center;
}
/* .header-inner-catch {
    display: block;
    width: 40%;
} */
.header-logo {
    margin: auto 0;
    width: 30%;
}
.header-logo a {
    display: inline-block;
    width: 120px;
}
.header-logo a:hover {
    text-decoration: none;
}
.header-logo-link {
    display: block;
}
.header-logo-img {
    width: 100%;
    height: auto;
    display: block;
}
.header-btns {
    width: 50%;
    margin: auto;
}
.header-btns ul {
    list-style: none;
    display:flex;
    justify-content: flex-end;
}
.header-btns li {

}
.header-btns ul li a {
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
}
.header-btns ul li a:hover {
    text-decoration : underline;
}
.header-inner-menu {
    display: flex;
    justify-content: flex-end;
    /* width: 80%; */
    margin: 16px 0;
}
.header-links {
    width: 100%;
}
.header-navi {
    margin: auto;
}
.header-navi ul {
    list-style: none;
    display: flex;
    /* justify-content: space-around; */
    justify-content: flex-end;
    margin: auto;
    padding: 0;
}
.header-navi li {
    /* margin: 16px 8px 0; */
    padding: 8px 16px;
}
.header-navi ul li a {
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: rgba(0,0,0,1);
}
.header-navi ul li a:hover {
    color: rgba(129, 129, 129, 1);
    text-decoration : underline;
    text-align: left;
}
.header-navi.show {
    opacity: 1;
    visibility: visible;
}
/* .header-navi ul .header-navi-blue {
    background-color: rgba(66, 119, 188, 1);
    margin: 0;
} */
.header-navi ul .header-navi-red {
    background-color: rgba(192, 0, 0, 1);
    margin: 0;
    padding: 8px 16px;
    border-radius: 6px;
}
.header-navi ul .header-navi-blue {
    background-color: rgba(68,138,202, 1);
    margin: 0;
    margin-left: 8px;
    padding: 8px 16px;
    border-radius: 6px;
}
.header-navi ul .header-navi-blue a ,
.header-navi ul .header-navi-red a {
    color: rgba(255, 255, 255, 1);
}

/**
 * FOOTER
 */
.footer {
    /* padding: 0 0 2vh;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0; */
    padding: 8px 0;
    height: 56px;
    background-color: rgba(66, 119, 188, 1);
}
.footer-top {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 32px;
}
.footer-info {
    /* margin: auto; */
    /* width: 50%; */
}
.footer-right {
    display: block;
}
.footer-sns {
    margin: auto;
    margin-top: 24px;
    margin-bottom: 0;
}
.footer-sns ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 0;
}
.footer-sns li {
    margin: auto;
    padding: 8px;
}
.footer-sns ul li a {
    font-weight: 100;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: rgba(129, 129, 129, 1);
    font-size: 12px;
}
.footer-menu {
    margin-top: 80px;
    margin-bottom: 0;
}
.footer-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: auto;
    padding: 0;
}
.footer-menu li {
    margin: 0 8px;
    padding: 8px;
}
.footer-menu ul li a {
    font-weight: 100;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: rgba(129, 129, 129, 1);
    font-size: 12px;
}
.footer-copy-right {
    width: 70%;
    font-weight: 100;
    margin: auto;
    color: rgba(255, 255, 255, 1);
    text-align: center;
}
.footer-copy-right p {
    font-family: 'Roboto', sans-serif;
}
.footer-info-header {
    font-size: 18px;
    font-weight: bold;
}

/**
 * HUMBURGER
 */
.humburger {
    position: absolute;
    right: 24px;
    top: 16px;
}
.nav_toggle {
    display: block;
    position: relative;
    width: 1.75rem;
    height: 1.5rem;
}
.nav_toggle i {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: transform .5s, opacity .5s;
}
.nav_toggle i:nth-child(1) {
    top: 0;
}
.nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}
.nav_toggle i:nth-child(3) {
    bottom: 0;
}
.nav_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}
.nav_toggle.show i:nth-child(2) {
    opacity: 0;
}
.nav_toggle.show i:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
}

/**
 * BUTTON
 */
.btn_blue {
    background-color: rgba(66, 119, 188, 1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    display: block;
    text-align: center;
    width: 160px;
    max-width: 90%;
    padding: 8px;
}
.btn_red {
    background-color: rgba(192, 0, 0, 1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    display: block;
    text-align: center;
    width: 160px;
    max-width: 90%;
    padding: 8px;
}
.btn_contact-submit{
    background-color: rgba(242, 128, 14, 1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    display: block;
    text-align: center;
    width: 160px;
    max-width: 90%;
    margin: auto;
    padding: 8px;
    border: none;
    font-size: 14px;
    font-weight: bold;
}
.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
    background-color: rgba(242, 128, 14, 0.2);
}
.btn_disabled {
    cursor: not-allowed;
    background-color: rgba(242, 128, 14, 0.2);
}

/**
 * CONTENTS
 */
.contents{
    /* max-width: 1200px; */
    width: 75vw;
    /*padding: 12px;*/
    margin: auto;
}
.contents-img-main {
    width: 75vw;
    margin: auto;
}
.contents-report {
    width: 75vw;
    margin: auto;
    text-align: center;
}
.contents-space-wide{
    margin: 0 0 48px;
}
.contents-space-narrow{
    margin: 0 0 24px;
}
.contents-space-very-narrow{
    margin: 0 0 8px;
}
.contents-indent-1{
    padding: 0 0 0 16px;
}
.contents-indent-2{
    padding: 0 0 0 32px;
}
.contents-two {
    display: flex;
    justify-content: space-between;
}
.contents-two-blog-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}
.contents-two-left {
    display: flex;
    justify-content: flex-start;
}
.contents-two-img {
    width: 40%;
} 
.contents-two-text {
    width: 60%;
}
.contents-two-details {
    width: 55%;
}
.contents-two-details-full {
    width: 100%;
}
.contents-two-gallery {
    width: 45%;
}
.contents-two-gallery ul {
    list-style: none;
    display: block;
    text-align: center;
    margin: auto;
    padding: 0;
}
.contents-two-gallery ul li {
    margin-bottom: 8px;
}
.contents-two-text-center {
    text-align: center;
}
.contents-two-text-left {
    text-align: left;
}
.contents-two-text-right {
    text-align: right;
}
.contents-contact {
    /* display: block;
    text-align: center; */
    display: flex;
    justify-content: left;
    width: 100%;
    margin: 0 0 1px;
}
.contents-contact-submit {
    display: block;
    text-align: center;
    width: 100%;
    margin: 64px auto;
}
.contents-action {
    font-weight: bold;
}
.contents-blog-date {
    
}
.contents-blog-details {
    font-size: 17px;
}

/* HERO */
.hero {
	position: relative;
	width: 100vw;
	height: 80vh;
	overflow: hidden;
	/* margin-bottom: 64px; */
	background-color: #fff;
}
.hero-layer {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1.5s ease, transform 1.5s ease;
}
.hero-layer img {
	/* object-fit: contain; */
}
.hero-layer.always-show {
	opacity: 1;
	transform: none;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: auto;
}
.hero-layer.always-show img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: center;
	margin: auto;
	display: block;
}
.hero-layer.delay-1 {
	animation: fadeSlideInRight 1.2s ease 0s forwards;
	z-index: 2;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 40px;
}
.hero-layer.delay-2 {
	animation: fadeSlideInLeft 1.2s ease 1.5s forwards;
	z-index: 3;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	padding: 40px;
	bottom: 80px;
}
.hero-layer.delay-1 img,
.hero-layer.delay-2 img {
	width: 45%;
}
@keyframes fadeSlideIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeSlideInRight {
	from {
		opacity: 0;
		transform: translateX(100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fadeSlideInLeft {
	from {
		opacity: 0;
		transform: translateX(-100px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@media screen and (min-width: 1200px) { /* wide display */
	.hero-layer.delay-2 {
		bottom: 0;
	}
}
@media screen and (max-width: 959px) { /* device tablet */
	.hero {
		height: 50vh;
	}
	.hero-layer.delay-2 {
		bottom: 0;
	}
	.hero-layer.delay-1 img,
	.hero-layer.delay-2 img {
		width: 55%;
	}
}
@media screen and (max-width: 559px) { /* device smartphone */
	.hero {
		height: 25vh;
	}
	.hero-layer.delay-2 {
		bottom: 0;
	}
	.hero-layer.delay-1 img,
	.hero-layer.delay-2 img {
		width: 55%;
	}
}

/* SECTION */
.section {
	padding: 40px 0;
	max-width: 960px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 1s ease-out, transform 1s ease-out;
}
.section.visible {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

/**
 * IMAGE
 */
.img-main{
    /* max-width: 1200px; */
    width: 100%;
    padding: 0;
    display: block;
    text-align: center;
    margin: auto;
    height: 520px;
    object-fit: cover;
}
.img-sub {
    width: 90%;
    height: 256px;
    object-fit: cover;
    margin: 16px 0;
}
.img-blog {
    object-fit: cover;
    margin: auto;
}
.img-gallery {
    width: 90%;
    object-fit: cover;
    margin: auto;
}
.img-sns {
    width: 32px;
    height: auto;
}
.img-report {
    width: 70%;
    height: auto;
    object-fit: cover;
    margin: 16px auto;
}

/**
 * TABLE
 */
.table-info{
    display: table;
    width: 100%;
}
.table-info-profile{
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 16px;
}

.table-info-row{
    display: table-row;
}
.table-info-cell-title{
    font-weight: bold;
    display: table-cell;
    vertical-align: top;
    width: 72px;
    margin: 0;
    padding: 8px 0;
}
.table-info-profile .table-info-cell-title{
    font-weight: bold;
    display: table-cell;
    vertical-align: top;
    width: 120px;
    margin: 0;
    padding: 8px 0;
}
.table-info-cell-value{
    display: table-cell;
    vertical-align: top;
}
.table-info-cell-value p {
    margin: 0;
    padding: 8px 0;
}
.table-info-cell-value p:nth-child(n + 2) {
    padding: 0;
}
.table-info-cell-value a {
    color: rgba(0, 0, 0, 1);
}
.table-info-cell-value a:hover {
    opacity: .6;
    color: rgba(129, 129, 129, 1);
    text-decoration: underline;
}

/**
 * CHECKBOX
 */
.contact-submit-check .wpcf7-form-control-wrap {
    display: block;
}
.contact-submit-check .wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
}
.contact-submit-check span.wpcf7-list-item {
    position: relative;
    margin: 0 50px 0 0 !important;/*項目ごとの余白を調整*/
}
.contact-submit-check .wpcf7-list-item-label {/*項目の色や文字サイズ*/
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
}
.contact-submit-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;/*既存のチェックボックスを見えなくする*/
}
.contact-submit-check .wpcf7-list-item-label:before {/*チェックボックスの枠*/
    content: '';
    border: 1.5px solid rgba(0, 0, 0, 1);
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    top: -3px;
    margin-right: 16px;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
    border-radius: 3px;
}
.contact-submit-check input[type="checkbox"]:checked + .wpcf7-list-item-label:after {/*チェックアイコン*/
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: url("https://new-note.co.jp/wp-content/themes/new-note/images/check-solid.svg") no-repeat center;
    background-size: contain;
}

.contact-submit-check-mv {
    display: block;
    margin-bottom: 8px;
}
.contact-submit-check-mv span.mwform-checkbox-field {
    position: relative;
    margin: 0 50px 0 0 !important;/*項目ごとの余白を調整*/
}
.contact-submit-check-mv .mwform-checkbox-field-text {/*項目の色や文字サイズ*/
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
}
.contact-submit-check-mv input[type="checkbox"] {
    position: absolute;
    opacity: 0;/*既存のチェックボックスを見えなくする*/
}
.contact-submit-check-mv .mwform-checkbox-field-text:before {/*チェックボックスの枠*/
    content: '';
    border: 1.5px solid rgba(0, 0, 0, 1);
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    top: -3px;
    margin-right: 16px;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
    border-radius: 3px;
}
.contact-submit-check-mv input[type="checkbox"]:checked + .mwform-checkbox-field-text:after {/*チェックアイコン*/
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: url("https://new-note.co.jp/wp-content/themes/new-note/images/check-solid.svg") no-repeat center;
    background-size: contain;
}


/**
 * REDIOBUTTON
 */
.contact-input-radio .wpcf7-list-item.first {
    margin: 0;
    margin-top: 6px;
}
.contact-input-radio .wpcf7-list-item-label {
    cursor: pointer;
    display: flex;
    margin-right: 16px;
}
.contact-input-radio input[type="radio"] {
    opacity: 0; /* デフォルトのボタンを非表示 */
    position: absolute;
}
.contact-input-radio .wpcf7-list-item-label::before {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(25, 25, 25, 1);
    border-radius: 100%; /* ラジオボタンっぽく丸くする */
    content: "";
    height: 1.2em;
    margin-bottom: auto;
    margin-right: .5em;
    margin-top: auto;
    transition: background-color .5s; /* 色をじんわり変化させる */
    width: 1.2em;
}
.contact-input-radio input[type="radio"]:checked + .wpcf7-list-item-label::before {
    background-color: rgba(66, 119, 188, 1); /* チェック後の中心の色 */
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 1); /* 中心の色のスタイル */
}



/**
 * OTHERS
 */
.map{
    width: 90%;
    height: 240px;
    border-radius: 1px;
    box-shadow: 0 4px 8px -2px rgba(129, 129, 129, 1);
}
.attention {
    font-weight: bold;
    text-decoration: underline;
    margin: 8px 0;
    font-size: 12px;
}
.sitemap-menu {
    margin: auto;
    width: 100%;
}
.sitemap-menu ul {
    list-style: none;
    display: block;
    margin: auto;
    padding: 0;
}
.sitemap-menu li {
    margin-top: 32px;
    padding: 4px;
    border-bottom: solid 0.5px rgba(119, 119, 119, 0.5);
}
.sitemap-menu ul li a {
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: 0.5px;
}
.contact-label {
    width: 35%;
    font-weight: bold;
    background-color: rgba(0, 161, 233, 0.2);
    padding: 16px 8px;
}
.contact-input {
    width: 65%;
    padding: 8px 8px;
}
.contact-input-radio {
    width: 65%;
    padding: 8px 8px;
}
.contact-input-radio-mw {
    width: 65%;
    padding: 16px 8px 8px;
}
.contact-submit-check {
    text-align : center;
    margin-bottom: 8px;
}
.contact-submit-btn {
    text-align : center;
    margin: 32px 0 8px;
}
.contact-submit-check-attention {
    font-size: 12px;
}
.contact-submit-check-attention a {
    color: rgba(66, 119, 188, 1);
    text-decoration: underline;
}
.contact-attention {
    color: rgba(192, 0, 0, 1);
    margin: 24px 0 4px;
}
.contact-space {
    margin: 0 0 24px;
}
.required {
    color: rgba(192, 0, 0, 1);
}
.subtitle {
    background: linear-gradient(transparent 90%, rgba(66, 119, 188, 1) 70%);
}
/* .challenge {
    font-family: 'Poppins', sans-serif;
    color: rgba(192, 0, 0, 1);
    margin-right: 16px;
} */
.bullet {
    color: rgba(66, 119, 188, 1);
    margin-right: 4px;
}
/* .title-line {
    padding: 0 8px 4px 0;
    background: linear-gradient(transparent 45%, rgba(0, 161, 233, 0.2) 100%);
    color: rgba(66, 119, 188, 1);
} */
/* 
.title-line {
    position: relative;
    padding: 8px 10% 8px 8px;
    background: rgba(66, 119, 188, 1);
    font-size: 24px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.3;
    z-index:-1;
} */
a.anchor {
    display: block;
    margin-top:-100px;
    padding-top:100px;
}
.vision-title {
    font-size: 25px;
    font-weight: bold;
}
.signature {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
		margin-top: 32px;
}
.signature span {
	font-size: 0.8rem;
	margin-right: 16px;
}
.top-message-width {
    width: 80%;
}

/**
 * UTILITY
 */
.u-margin-top-32px {
    margin-top: 32px;
}
.u-margin-top-64px {
    margin-top: 64px;
}
.u-width-80per {
    width: 80%;
}
.u-text-align-right {
    text-align: right;
}

/**
 * RESPONSIVE
 */
/*
breakpoint
    smartphone: 320px ~ 559px
    tablet: 560px ~ 959px
    pc: 960px~
		wide display: 1200px~
*/
@media screen and (min-width: 1200px) { /* wide display */
	/**
	 * PAGE
	 */
	.page-content {
		max-width: none;
	}
}
@media screen and (min-width: 960px) { 
    /**
    * HEADER
    */
    .humburger{
        visibility: hidden;
    }
}
@media screen and (max-width: 959px) { /* device tablet */
    /**
     * BASE
     */
    h2{
        font-size: 20px;
    }
    h3{
        font-size: 16px;
        margin: 16px 0 8px 0;
    }
    input[type="text"], 
    input[type="tel"], 
    input[type="email"], 
    textarea, 
    select {
        font-size: 10px;
    }

    /**
    * PAGE
    */
    .page-content {
        padding: 0 0 64px;
        font-size: 12px;
    }

    /**
    * HEADER
    */
    .header-inner {
        padding: 12px 12px 0 12px;
        margin: auto;
        display: block;
    }
    .header-inner-catch {
        width: 100%;
    }
    .header-logo-img {
        width: auto;
        height: 64px;
        display: block;
    }
    .header-btns {
        width: 0%;
    }
    .humburger{
        visibility: visible;
        top: 32px;
        right: 32px;
        z-index: 999;
    }
    .header-inner-menu {
        margin: 0;
        width: 0;
    }
    .header-navi{
        width: 50vw;
        visibility: hidden;
        transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
        position: fixed;
        top: 72px;
        right: 0;
        z-index: 998;
        background-image: linear-gradient(165deg,rgba(240, 240 ,240, 1),rgba(240, 240, 240, 1));
    }
    .header-navi ul {
        display: flex;
        flex-direction: column;
        list-style: none;
        margin-bottom: 0;
        padding: 0;
    }
    .header-navi li {
        margin: 0 8px;
    }
    .header-navi ul li {
        font-size: 12px;
        padding: 24px;
        border-bottom: solid 0.5px rgba(119, 119, 119, 0.5);
    }
    .header-navi ul li a{
        display: block;
        height: 100%;
        width: 100%
    }
    .header-btns{
        visibility: hidden;
    }

    /**
     * FOOTER
     */
    .footer-top {
        display: block;
        margin-bottom: 16px;
    }
    .footer-info {
        margin: auto;
        width: 70%;
        margin-bottom: 24px;
    }
    .footer-sns {
        margin: 32px;
    }
    .footer-menu {
        justify-content: center;
        margin-top: 0;
        margin-bottom: 24px;
    }
    .footer-copy-right p {
        font-size: 10px;
    }
    
    /**
    * CONTENTS
    */
    .contents{
        width: 90vw;
    }
    .contents-img-main {
        width: 90vw;
    }
    .contents-two {
        display: block;
        margin-bottom: 48px;
    }
    .contents-two-blog-header {
        display: block;
        margin-bottom: 32px;
    }
    .contents-two-img {
        width: 100%;
    }
    .contents-two-text {
        width: 100%;
    }
    .contents-two-details,
    .contents-two-gallery {
        width: 100%;
        margin-bottom: 16px;
    }
    .contents-contact {
        display: block;
        text-align: center;
    }
    .contents-blog-date {
        font-size: 10px;
    }
    .contents-blog-details {
        font-size: 14px;
    }

    /**
     * IMAGE
     */
    .img-main{
        /* height: auto; */
        height: 360px;
    }
    .img-sub {
        width: 100%;
        height: 240px;
        margin: 0;
    }
    .img-blog {
        width: 96px;
        margin: 0;
    }
    .img-gallery {
        width: 100%;
        margin: 0;
    }
    .img-report {
        width: 100%;
    }
    
    /**
    * TABLE
    */
    .table-blog-cell-title-row-top{
        font-size: 9px;
    }
    .table-blog-cell-title-col{
        font-size: 9px;
        padding: 8px 4px;
    }
    .table-blog-cell-title-row{
        font-size: 9px;
        padding: 8px 4px;
    }
    .table-blog-cell-value{
        font-size: 9px;
        padding: 8px 4px;
    }
    .table-blog-cell-inner {
        padding: 8px 0;
    }
    .table-blog-cell-date {
        font-size: 14px;
    }
    .table-blog-cell-title {
        font-size: 16px;
        padding: 4px;
    }
    .table-blog-cell-details {
        font-size: 12px;
    }
    .table-info{
        display: block;
    }
    .table-info-profile{
        display: block;
        border-spacing: 0 0;
    }
    .table-info-row{
        display: block;
    }
    .table-info-cell-title{
        display: block;
        padding: 0 0 4px;
        font-size: 14px;
    }
    .table-info-cell-value{
        display: block;
        padding: 0 0 8px;
        font-size: 14px;
    }
    .table-info-cell-value p {
        padding: 0 0 4px;
    }

    /**
    * OTHERS
    */
    .map{
        width: 100%;
        height: 240px;
    }
    .attention {
        margin: 8px 0;
        font-size: 9px;
    }
    .contact-label {
        font-size: 10px;
        width: 90%;
        text-align: left;
        margin: auto;
        padding: 8px;
    }
    .contact-input {
        width: 100%;
        margin: 4px auto 16px;
        padding: 0;
    }
    .contact-input-radio {
        width: 100%;
        margin: 4px auto 16px;
        padding: 0;
        display: flex;
        margin-left: 48px;
    }
    .contact-input-radio .wpcf7-list-item-label::before {
        font-size: 10px;
    }
    .contact-submit-check-attention {
        font-size: 8px;
    }
    .contact-attention {
        font-size: 10px;
        width: 90%;
        margin: 24px auto 4px;
    }
    .contact-input-radio-mw {
        width: 100%;
        margin: 8px auto 16px;
        padding: 0;
        display: flex;
        margin-left: 48px;
    }
    .contact-submit-check-mv input[type="checkbox"]:checked + .mwform-checkbox-field-text:after {
        top: -1px;
    }
}
@media screen and (max-width: 559px) { /* device smartphone */
    /**
     * BASE
     */
    h2{
        font-size: 20px;
    }
    h3{
        font-size: 16px;
        margin: 16px 0 8px 0;
    }
    input[type="text"], 
    input[type="tel"], 
    input[type="email"], 
    textarea, 
    select {
      font-size: 10px;
    }

    /**
    * PAGE
    */
    .page-content {
        padding: 0 0 64px;
        font-size: 12px;
    }

    /**
    * HEADER
    */
    .header-inner {
        padding: 12px 12px 0 12px;
        margin: auto;
        display: block;
    }
    .header-inner-catch {
        width: 100%;
    }
    .header-logo-img {
        width: auto;
        height: 40px;
        display: block;
    }
    .header-btns {
        width: 0%;
    }
    .humburger{
        visibility: visible;
        top: 16px;
        right: 16px;
        z-index: 999;
    }
    .header-inner-menu {
        margin: 0;
        width: 0;
    }
    .header-navi{
        width: 50vw;
        visibility: hidden;
        transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
        position: fixed;
        top: 56px;
        right: 0;
        z-index: 998;
        background-image: linear-gradient(165deg,rgba(240, 240 ,240, 1),rgba(240, 240, 240, 1));
    }
    .header-navi ul {
        display: flex;
        flex-direction: column;
        list-style: none;
        margin-bottom: 0;
        padding: 0;
    }
    .header-navi li {
        margin: 0 8px;
    }
    .header-navi ul li {
        font-size: 12px;
        padding: 24px;
        border-bottom: solid 0.5px rgba(119, 119, 119, 0.5);
    }
    .header-navi ul li a{
        display: block;
        height: 100%;
        width: 100%
    }
    .header-btns{
        visibility: hidden;
    }

    /**
     * FOOTER
     */
    .footer-top {
        display: block;
        margin-bottom: 16px;
    }
    .footer-info {
        margin: auto;
        width: 70%;
        margin-bottom: 24px;
    }
    .footer-sns {
        margin: 32px;
    }
    .footer-menu {
        justify-content: center;
        margin-top: 0;
        margin-bottom: 24px;
    }
    .footer-copy-right p {
        font-size: 10px;
    }
    
    /**
    * CONTENTS
    */
    .contents{
        width: 90vw;
    }
    .contents-img-main {
        width: 100%;
    }
    .contents-two {
        display: block;
        margin-bottom: 48px;
    }
    .contents-two-blog-header {
        display: block;
        margin-bottom: 32px;
    }
    .contents-two-img {
        width: 100%;
    }
    .contents-two-text {
        width: 100%;
    }
    .contents-two-details,
    .contents-two-gallery {
        width: 100%;
        margin-bottom: 16px;
    }
    .contents-contact {
        display: block;
        text-align: center;
    }
    .contents-blog-date {
        font-size: 10px;
    }
    .contents-blog-details {
        font-size: 14px;
    }

    /**
     * IMAGE
     */
    .img-main{
        /* height: auto; */
        height: 200px;
    }
    .img-sub {
        width: 100%;
        margin: 0;
    }
    .img-blog {
        width: 96px;
        margin: 0;
    }
    .img-gallery {
        width: 100%;
        margin: 0;
    }
    .img-report {
        width: 100%;
    }
    
    /**
    * TABLE
    */
    .table-blog-cell-title-row-top{
        font-size: 9px;
    }
    .table-blog-cell-title-col{
        font-size: 9px;
        padding: 8px 4px;
    }
    .table-blog-cell-title-row{
        font-size: 9px;
        padding: 8px 4px;
    }
    .table-blog-cell-value{
        font-size: 9px;
        padding: 8px 4px;
    }
    .table-blog-cell-inner {
        padding: 8px 0;
    }
    .table-blog-cell-date {
        font-size: 14px;
    }
    .table-blog-cell-title {
        font-size: 16px;
        padding: 4px;
    }
    .table-blog-cell-details {
        font-size: 12px;
    }
    .table-info{
        display: block;
    }
    .table-info-profile{
        display: block;
        border-spacing: 0 0;
    }
    .table-info-row{
        display: block;
    }
    .table-info-cell-title{
        display: block;
        padding: 0 0 4px;
        font-size: 14px;
    }
    .table-info-cell-value{
        display: block;
        padding: 0 0 8px;
        font-size: 14px;
    }
    .table-info-cell-value p {
        padding: 0 0 4px;
    }

    /**
    * OTHERS
    */
    .map{
        width: 100%;
        height: 240px;
    }
    .attention {
        margin: 8px 0;
        font-size: 9px;
    }
    .contact-label {
        font-size: 10px;
        width: 90%;
        text-align: left;
        margin: auto;
        padding: 8px;
    }
    .contact-input {
        width: 100%;
        margin: 4px auto 16px;
        padding: 0;
    }
    .contact-input-radio {
        width: 100%;
        margin: 4px auto 16px;
        padding: 0;
        display: flex;
        margin-left: 32px;
    }
    .contact-input-radio .wpcf7-list-item-label::before {
        font-size: 10px;
    }
    .contact-submit-check-attention {
        font-size: 8px;
    }
    .contact-attention {
        font-size: 10px;
        width: 90%;
        margin: 24px auto 4px;
    }
    .contact-input-radio-mw {
        width: 100%;
        margin: 8px auto 16px;
        padding: 0;
        display: flex;
        margin-left: 32px;
    }
    .contact-submit-check-mv input[type="checkbox"]:checked + .mwform-checkbox-field-text:after {
        top: -1px;
    }
    .top-message-width {
        width: 100%;
    }

}

/**
 * TOP PAGE ENHANCEMENTS - DESIGN_SPEC.md
 */

/* Color Variables */
:root {
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-background {
    background-image: url('https://new-note.co.jp/wp-content/themes/new-note/images/top/top-main-notext.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    min-height: 600px;
}

@media screen and (max-width: 768px) {
    .hero-background {
        background-image: url('https://new-note.co.jp/wp-content/themes/new-note/images/top/top-main-notext-sp.jpg');
        
    }
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 3.5rem !important;
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1.5s ease-out;
    font-size: 2rem !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateY(5px);
}

.hero-cta {
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    position: relative;
}

.section-title {
    margin-bottom: 0.75rem !important;
}

.section-header .subtitle {
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 8px 0;
}

/* Vision Section */
.vision-icon-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vision-title {
    font-size: 1.75rem;
}

/* Vision Icons を全画面サイズで横並びに強制 */
.vision-section .columns {
    display: flex !important;
    flex-wrap: nowrap !important;
}

/* Business Section */
.business-card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.business-header .icon-text {
    display: flex;
    align-items: center;
}

.business-image {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.business-card:hover .business-image {
    transform: scale(1.05);
}

.business-list {
    list-style: none;
    padding-left: 0;
}

.business-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.business-list .bullet {
    margin-right: 8px;
    flex-shrink: 0;
}

/* Strengths Section */
.strength-card {
    border: 2px solid transparent;
    transition: all 0.4s ease;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

.strength-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(66, 119, 188, 0.2);
}

.strength-number {
    font-weight: 700;
}

.strength-icon {
    transition: transform 0.3s ease;
}

.strength-card:hover .strength-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Statistics Section */
.stat-box {
    padding: 2rem 1rem;
}

.stat-number {
    font-weight: 700;
    letter-spacing: -2px;
}

/* About Section */
.info-row {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 1rem;
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    min-width: 120px;
    color: var(--gray-color);
}

.info-value {
    flex: 1;
    color: var(--text-color);
}

/* Message Section */
.message-section .image img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.message-section .image:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section .button {
    transition: all 0.3s ease;
    font-weight: 600;
}

.cta-section .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .hero-body {
        padding: 5rem 0 !important;
    }
    
    .hero-content {
        padding: 1rem !important;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .vision-title {
        font-size: 1.25rem !important;
    }
    
    .business-card .columns {
        flex-direction: column-reverse;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
    
    .strength-card {
        margin-bottom: 1rem;
    }
    
    /* 代表画像のサイズ調整 */
    .ceo-image {
        width: 120px !important;
    }
    
    /* Vision Iconsを常に横並びに、サイズを調整 */
    .vision-icon-box .icon {
        font-size: 1.5rem !important;
    }
    
    .vision-icon-box .icon.is-large {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
    
    .vision-icon-box .icon i {
        font-size: 1.5rem !important;
    }
    
    .vision-icon-box .title {
        font-size: 0.85rem !important;
        margin-top: 0.75rem !important;
    }
    
    .vision-icon-box p {
        font-size: 0.7rem !important;
    }
    
    .vision-section .columns {
        margin-left: -0.25rem !important;
        margin-right: -0.25rem !important;
    }
    
    .vision-section .column {
        padding: 0.25rem !important;
    }
}

/* Animation Enhancements */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

