/* =========================
  Reset Base
========================= */
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

html {
  line-height: 1;
}

body {
  line-height: 1;
}

/* =========================
  List
========================= */
ol,
ul {
  list-style: none;
}

/* =========================
  Quotes
========================= */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
}

/* =========================
  Links
========================= */
a {
  margin: 0;
  text-decoration: none;
  color: inherit;
}

/* =========================
  Images
========================= */
img {
  border: 0;
}

/* =========================
  Table
========================= */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  vertical-align: top;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/inter/v20/UcCo3FwrK3iLTcvtYwYL8g.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129,
                 U+0168-0169, U+01A0-01A1, U+01AF-01B0,
                 U+0300-0301, U+0303-0304, U+0308-0309,
                 U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}

/*---------------------------------------------------------------------------------*/


/* =========================
  Color Variables
========================= */
:root {
  --color-black-1: #333;
  --color-black-2: #4a4c4d;
  --color-black-3: #636566;
  --color-black-4: #7c7f80;
  --color-black-5: #949799;
  --color-black-6: #aeb1b3;
  --color-black-7: #c6cacc;
  --color-black-8: #dfe4e6;
  --color-black-9: #ebf0f2;

  --color-white: #fff;
  --color-red: #ff6450;
  --color-yellow: #ff8634;
  --color-cta: #00b772;
  --color-attention: #ff0046;
}

/* =========================
  Text Color
========================= */
.color-black-1 { color: var(--color-black-1); }
.color-black-2 { color: var(--color-black-2); }
.color-black-3 { color: var(--color-black-3); }
.color-black-4 { color: var(--color-black-4); }
.color-black-5 { color: var(--color-black-5); }
.color-black-6 { color: var(--color-black-6); }
.color-black-7 { color: var(--color-black-7); }
.color-black-8 { color: var(--color-black-8); }
.color-black-9 { color: var(--color-black-9); }

.color-white     { color: var(--color-white); }
.color-red       { color: var(--color-red); }
.color-yellow    { color: var(--color-yellow); }
.color-cta       { color: var(--color-cta); }
.color-attention { color: var(--color-attention); }

/* Gradient Text */
.color-red-grad {
  background-image: linear-gradient(90deg, #ff6450, #ff8634);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
  Background Color
========================= */
.bg-black-1 { background-color: var(--color-black-1); }
.bg-black-2 { background-color: var(--color-black-2); }
.bg-black-3 { background-color: var(--color-black-3); }
.bg-black-4 { background-color: var(--color-black-4); }
.bg-black-5 { background-color: var(--color-black-5); }
.bg-black-6 { background-color: var(--color-black-6); }
.bg-black-7 { background-color: var(--color-black-7); }
.bg-black-8 { background-color: var(--color-black-8); }
.bg-black-9 { background-color: var(--color-black-9); }

.bg-white     { background-color: var(--color-white); }
.bg-red       { background-color: var(--color-red); }
.bg-yellow    { background-color: var(--color-yellow); }
.bg-cta       { background-color: var(--color-cta); }
.bg-attention { background-color: var(--color-attention); }

/* Gradient Background */
.bg-red-grad {
  background-image: linear-gradient(90deg, #ff6450, #ff8634);
}

.bg-cta-grad {
  background-image: linear-gradient(90deg, #00b772, #00b7b7);
}

/* =========================
  Base Typography
========================= */
body * {
  color: var(--color-black-1);
  font-family:
    Inter,
    "Noto Sans JP",
    "Helvetica Neue",
    Helvetica,
    Arial,
    "Hiragino Kaku Gothic Pro",
    "ヒラギノ角ゴ Pro W3",
    メイリオ,
    Meiryo,
    "ＭＳ Ｐゴシック",
    sans-serif;/*Inter,*/

  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* Font Variant */
body .font-poppins {
  font-family: Poppins, sans-serif;
  font-weight: 600;
}

/* =========================
  Media Elements
========================= */
picture {
  display: flex;
}

img {
  max-width: 100%;
}

/* =========================
  Responsive Utilities
========================= */

/* SP */
.sp\:hidden {
  /*display: none !important;*//*------  あとで！ */
}

@media screen and (max-width: 768px) {
  .sp\:hidden {
    display: none !important;
  }
}

.sp\:block {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp\:block {
    display: block !important;
  }
}

.sp\:flex {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp\:flex {
    display: flex !important;
  }
}

/* Tablet */
.tab\:block {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .tab\:block {
    display: block !important;
  }
}

/* =========================
  Section Layout
========================= */
.section {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.section_label {
  display: inline-block;
  font-size: 17px;
}

@media screen and (max-width: 768px) {
  .section_label {
    font-size: 11px !important;
  }
}

.section_heading {
  font-size: 40px;
  line-height: 1.28;
}

@media screen and (max-width: 768px) {
  .section_heading {
    font-size: 24px
  }
}

.section_lead {
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .section_lead {
    margin-top: 4px !important;
    font-size: 13px !important;
  }
  
}

/*---------------------------------------------------------------------------------*/

.header{
    left: 0;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 10;
}
.header_inner{
    align-items: center;
    -moz-column-gap: 12px;
    column-gap: 12px;
    display: flex;
    justify-content: space-between;
}
.header_info, .header_tel {
    align-items: center;
    display: flex;
}
.header_info {
    -moz-column-gap: 14px;
    column-gap: 14px;
}
.header_tel {
    -moz-column-gap: 4px;
    column-gap: 4px;
    text-align: center;
}
.header_tel-number {
    font-size: 21px;
    letter-spacing: .05em;
    line-height: 1;
}
.header_tel-note {
    font-size: 11px;
    line-height: 1;
    margin-top: 4px;
}
.header_buttons {
    align-items: center;
    -moz-column-gap: 14px;
    column-gap: 14px;
    display: flex;
}
.header_button {
    align-items: center;
    border-radius: 25px;
    -moz-column-gap: 2px;
    column-gap: 2px;
    cursor: pointer;
    display: flex;
    font-size: 15px;
    height: 44px;
    justify-content: center;
    position: relative;
    top: -4px;
    transition: all .32s ease;
    width: 192px;
}
.header_button:first-child {
    background-image: linear-gradient(90deg, #ff6450, #ff8634);
    box-shadow: 0 4px 0 0 #993c30;
}
.header_button:last-child {
    background-image: linear-gradient(90deg, #00b772, #00b7b7);
    box-shadow: 0 4px #005233;
}
.header_button:hover {
    box-shadow: none;
    transform: translateY(4px)
}

@media screen and (max-width: 1024px) {
    .header {
        padding: 20px;
    }
    .header_logo {
        /* max-width: 160px; */
    }
    .header_tel picture {
        max-width: 26px;
    }
    .header_tel-number {
        font-size: 15px;
    }
    .header_tel-note {
        margin-top: 0;
    }
}
@media screen and (max-width: 768px) {
    .header {
        padding: 17px 20px;
    }
    .header_logo {
        max-width: 120px;
    }
    .header_buttons {
        display: none;
    }
}

/*---------------------------------------------------------------------------------*/

.container_head {
    align-items: flex-start;
    display: flex;
}
.container_head .sections{
    flex: 1;
    overflow: hidden;
}
.section#hero {
    overflow: hidden;
    padding: 110px 20px 64px;
}
.section#hero .section_inner {
    margin: auto;
    max-width: 880px;
    width: 100%;
}
.section#hero .section_inner, .section#hero .section_summary {
    position: relative;
}
.section#hero .section_summary {
    max-width: 580px;
    width: 100%;
    z-index: 2;
}
.section#hero .section_thumb {
    position: absolute;
    right: -344px;
    top: 50%;
    transform: translateY(-50%);
    width: 688px;
    z-index: 1;
}
.section#hero .section_heading {
    margin-top: 8px;
    max-width: 532px;
    width: 100%;
}
.section_lead {
    margin-top: 12px;
}
.section_infos {
    margin-top: 40px;
    position: relative;
    width: 100%;
}
.section_info {
    align-items: center;
    -moz-column-gap: 16px;
    column-gap: 16px;
    display: flex;
}
.section_info picture {
    max-width: 178px;
    width: calc(50% - 8px);
}
.notes {
    counter-reset: item;
}
.section .notes {
    margin-top: 14px;
}
.notes p, .notes p a {
    font-size: 11px;
    font-weight: 500;
}
.notes p {
    padding-left: 10px;
    position: relative;
}
.notes p:before {
    content: "*";
    counter-increment: item;
    left: 0;
    position: absolute;
    top: 0;
}

.section_button {
    align-items: center;
    border-radius: 28px;
    box-shadow: 0 4px #005233;
    -moz-column-gap: 4px;
    column-gap: 4px;
    cursor: pointer;
    font-size: 17px;
    height: 56px;
    justify-content: center;
    margin: 16px auto 0;
    position: relative;
    transition: all .32s ease;
    width: 256px;
    z-index: 2;
}

@media screen and (max-width: 1024px) {
    .section#hero .section_summary {
        max-width: 540px;
    }
    .section#hero .section_thumb {
        width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .section#hero {
        padding: 44px 20px 56px;
    }
    .section#hero .section_summary {
        margin: auto;
        max-width: 500px;
    }
    .section#hero .section_heading {
        margin-top: 4px;
        max-width: 348px;
    }
    .section#hero .section_lead {
        margin-top: 4px;
    }
    .section_infos {
        margin-top: 32px;
    }
    .section_info {
        display: block;
    }
    .section_info picture:not(:first-child) {
        margin-top: 28px;
    }
    .section#hero .section_thumb {
        right: -120px;
        width: 380px;
    }
    .section_button {
        margin-top: 40px;
    }

}
@media screen and (max-width: 547px) {
    .section#hero .section_summary {
        margin: auto;
        max-width: 350px;
    }
    .section#hero .section_thumb {
        right: -180px;
        width: 360px;
    }
}



/*---------------------------------------------------------------------------------*/

.section#about {
    padding-top: 64px;
    text-align: center;
}
.container_head .section#about .section_inner {
    margin: auto;
    max-width: 880px;
    width: 100%;
}
.section_label {
    display: inline-block;
    font-size: 17px;
}
.section_video {
    margin-top: 32px;
    width: 100%;
}

/*---------------------------------------------------------------------------------*/

.section#feature {
    padding-bottom: 80px;
    padding-top: 80px;
    text-align: center;
}
.container_head .section#feature .section_inner {
    margin: auto;
    max-width: 880px;
    width: 100%;
}
.section#feature .section_list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 32px;
}
.section#feature .section_item {
    border-radius: 6px;
    box-shadow: 0 0 24px #0003;
    max-width: 164px;
    overflow: hidden;
    width: 100%;
}
.section#feature .section_item:first-child {
    order: 1;
}
.section#feature .section_item:nth-child(2) {
    order: 2;
}
.section#feature .section_item:nth-child(3) {
    order: 3;
}
.section#feature .section_item:nth-child(4) {
    order: 4;
}
.section#feature .section_item:nth-child(5) {
    order: 5;
}
.section#feature .section_item:nth-child(6) {
    order: 6;
}
.section#feature .section_item:nth-child(7) {
    order: 7;
}
.section#feature .section_item:nth-child(8) {
    order: 8;
}
.section#feature .section_item:nth-child(9) {
    order: 9;
}
.section#feature .section_item:nth-child(10) {
    order: 10;
}
.section#feature .section_item-heading {
    font-size: 15px;
    line-height: 1.28;
    padding: 8px 4px;
}

.section#feature .section_item:nth-child(odd) .section_item-heading {
    background-color: var(--color-red);
}
.section#feature .section_item:nth-child(2n) .section_item-heading {
    background-color: var(--color-yellow);
}
.section_item-feature {
    padding: 12px;
}

@media screen and (max-width: 768px) {
    .section#feature {
        padding-bottom: 64px;
        padding-top: 64px;
    }
    .section#feature .section_list {
        gap: 8px;
        margin-top: 16px;
    }
}
@media screen and (max-width: 547px) {
    .section#feature .section_item:nth-child(3) {
        order:4
    }
    .section#feature .section_item:nth-child(4) {
        order: 3
    }
    .section#feature .section_item:nth-child(7) {
        order: 8
    }
    .section#feature .section_item:nth-child(8) {
        order: 7
    }
}

/*---------------------------------------------------------------------------------*/

.banner#banner1 {
    padding: 0 20px;
    text-align: center;
}
.banner#banner1 .banner_inner {
    border-radius: 8px;
    margin: auto;
    max-width: 1000px;
    overflow: hidden;
    padding: 40px 20px;
    position: relative;
    width: 100%;
}
.banner#banner1 .banner_bg {
    align-items: center;
    display: flex;
    justify-content: center;
    left: 50%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.banner#banner1 .banner_summary {
    position: relative;
    z-index: 2;
}
.banner#banner1 .banner_heading, .banner#banner1 .banner_heading span {
    font-size: 28.5px;
}
.banner#banner1 .banner_heading {
    align-items: center;
    -moz-column-gap: 6px;
    column-gap: 6px;
    display: flex;
    justify-content: center;
}
.banner#banner1 .banner_heading span {
    border-radius: 4px;
    padding: 0 8px;
}
.banner#banner1 .banner_lead {
    font-size: 22.5px;
    margin-top: 4px;
}
.banner#banner1 .banner_button {
    align-items: center;
    border-radius: 28px;
    box-shadow: 0 4px #005233;
    -moz-column-gap: 4px;
    column-gap: 4px;
    cursor: pointer;
    display: flex;
    font-size: 17px;
    height: 56px;
    justify-content: center;
    margin: 16px auto 0;
    transition: all .32s ease;
    width: 301px;
}
.banner#banner1 .banner_button span {
    border-radius: 2px;
    padding: 0 3px;
}
.banner#banner1 .banner_button:hover {
    box-shadow: none;
    transform: translateY(4px);
}

@media screen and (max-width: 768px) {
    .banner#banner1 {
        padding: 0;
    }
    .banner#banner1 .banner_inner {
        border-radius: 0;
    }
    .banner#banner1 .banner_heading {
        flex-direction: column;
        row-gap: 4px;
    }
    .banner#banner1 .banner_heading, .banner#banner1 .banner_heading span {
        font-size: 21.38px;
    }
    .banner#banner1 .banner_heading span {
        padding: 0 5px;
    }
    .banner#banner1 .banner_lead {
        font-size: 15px;
    }
    .banner#banner1 .banner_button {
        margin-top: 24px;
    }
}



/*---------------------------------------------------------------------------------*/

.section#assignment {
    padding-top: 80px;
    text-align: center;
}
.container_head .section#assignment .section_inner {
    margin: auto;
    max-width: 880px;
    width: 100%;
}
.section#assignment .section_head {
    border-radius: 8px 8px 0 0;
    padding: 48px 20px 64px;
    position: relative;
    z-index: 2;
}
.section#assignment .section_head:before {
    border-bottom: 0;
    border-left: 180px solid transparent;
    border-radius: 8px;
    border-right: 180px solid transparent;
    border-top: 114px solid var(--color-black-8);
    bottom: -48px;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: 0;
    z-index: -1;
}
.section#assignment .section_thumb {
    margin: 32px auto 0;
    max-width: 670px;
    width: 100%;
}
.section_foot {
    border-radius: 0 0 8px 8px;
    padding: 80px 20px 64px;
    position: relative;
    z-index: 1;
}
.section_foot-effects {
    display: flex;
    justify-content: space-between;
    margin: 40px auto 0;
    max-width: 424px;
    width: 100%;
}
.section_foot-list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
    margin-top: 64px;
}
.section_foot-item {
    max-width: 316px;
    width: calc(50% - 24px);
}
.section_foot-item-thumb {
    border-radius: 8px;
    margin-top: 12px;
}
.section_foot-item-desc {
    font-size: 13px;
    letter-spacing: .01em;
    margin-top: 12px;
}

@media screen and (max-width: 768px) {
    .section#assignment {
        padding: 0;
    }
    .section#assignment .section_head {
        border-radius: 0;
        padding: 64px 20px 48px;
    }
    .section#assignment .section_thumb{
        margin-top: 24px;
        max-width: 345px;
    }
    .section_foot {
        border-radius: 0;
        padding-top: 72px;
    }
    .section_foot-effects {
        max-width: 335px;
    }
    .section_foot-effect picture img {
        max-height: 80px;
    }
    .section_foot-item {
        text-align: left;
        width: 100%;
    }
    .section_foot-item-desc {
        letter-spacing: .01em;
    }


}

/*---------------------------------------------------------------------------------*/

.section#case {
    padding-bottom: 120px;
    padding-top: 120px;
}
.section#case .section_inner {
    margin: auto;
    max-width: 1128px;
    width: 100%;
}
.section#case .section_heading {
    text-align: center;
}
.section#case .section_list {
    display: flex;
    flex-wrap: wrap;
    gap: 48px 24px;
    justify-content: center;
    margin-top: 48px;
}
.section#case .section_item {
    max-width: 360px;
    width: calc(33.333% - 8px);
}
.section#case .section_item-thumb {
    border-radius: 8px;
    overflow: hidden;
}
.section#case .section_item-heading {
    font-size: 21px;
    padding-left: 8px;
    position: relative;
}
.section#case .section_item-heading span {
    height: 29px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 4px;
}
.section#case .section_item-desc, .section#case .section_item-heading {
    margin-top: 8px;
}
.section#case .section_item-company, .section#case .section_item-desc {
    font-size: 13px;
}
.section#case .section_item-company, .section#case .section_item-desc {
    font-size: 13px;
}
.section#case .section_item-company {
    margin-top: 16px;
}

@media screen and (max-width: 768px) {
    .section#case {
        padding-bottom: 64px;
        padding-top: 64px;
    }
    .section#case .section_item {
        max-width: 316px;
        width: 100%;
    }
    .section#case .section_item-heading {
        font-size: 19px;
    }
}

/*---------------------------------------------------------------------------------*/

.banner#banner2,
.banner#banner3 {
    padding: 0 20px;
    position: relative;
}
.banner#banner2 .banner:before,
.banner#banner3 .banner:before {
    background-color: var(--color-white);
    content: "";
    height: 50%;
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
}
.banner#banner2 .banner_inner,
.banner#banner3 .banner_inner {
    border-radius: 8px;
    margin: auto;
    max-width: 1400px;
    overflow: hidden;
    padding: 48px 20px;
    position: relative;
    width: 100%;
}
.banner#banner2 .banner_bg,
.banner#banner3 .banner_bg {
    align-items: center;
    display: flex;
    justify-content: center;
    left: 50%;
    min-width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.banner#banner2 .banner_summary,
.banner#banner3 .banner_summary {
    -moz-column-gap: 12px;
    column-gap: 12px;
    margin: auto;
    max-width: 800px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 2;
}
.banner#banner2 .banner_lead,
.banner#banner3 .banner_lead {
    font-size: 28.5px;
}
.banner#banner2 .banner_tel,
.banner#banner3 .banner_tel {
    align-items: center;
    -moz-column-gap: 4px;
    column-gap: 4px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    text-align: center;
}
.banner#banner2 .banner_tel-number,
.banner#banner3 .banner_tel-number {
    font-size: 21px;
    letter-spacing: .05em;
    line-height: 1;
}
.banner#banner2 .banner_tel-note,
.banner#banner3 .banner_tel-note {
    font-size: 11px;
    line-height: 1;
    margin-top: 4px;
    opacity: .72;
}
.banner#banner2 .banner_buttons,
.banner#banner3 .banner_buttons {
    -moz-column-gap: 24px;
    column-gap: 24px;
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.banner#banner2 .banner_button,
.banner#banner3 .banner_button {
    align-items: center;
    border-radius: 28px;
    -moz-column-gap: 4px;
    column-gap: 4px;
    cursor: pointer;
    display: flex;
    font-size: 17px;
    height: 56px;
    justify-content: center;
    max-width: 301px;
    transition: all .32s ease;
    width: 100%;
}
.banner#banner2 .banner_button:first-child,
.banner#banner3 .banner_button:first-child {
    box-shadow: 0 4px #005233;
    color: var(--color-cta);
}
.banner#banner2 .banner_button span,
.banner#banner3 .banner_button span {
    border-radius: 2px;
    padding: 0 3px;
}
.banner#banner2 .banner_button:last-child,
.banner#banner3 .banner_button:last-child {
    box-shadow: 0 4px #993c30;
    color: var(--color-red);
}
.banner#banner2 .banner_button:first-child span,
.banner#banner3 .banner_button:first-child span {
    background-image: linear-gradient(90deg, #00b772, #00b7b7);
}
.banner#banner2 .banner_button:last-child span,
.banner#banner3 .banner_button:last-child span {
    background-image: linear-gradient(90deg, #ff6450, #ff8634);
}
.banner#banner3 {
    padding-bottom: 80px;
}
.banner#banner2 .banner_button:hover,
.banner#banner3 .banner_button:hover {
    box-shadow: none;
    transform: translateY(4px)
}

@media screen and (max-width: 768px) {
    .banner#banner2,
    .banner#banner3 {
        padding: 0;
    }
    .banner#banner2 .banner_inner,
    .banner#banner3 .banner_inner {
        border-radius: 0;
        padding: 40px 8px;
    }
    .banner#banner2 .banner_summary,
    .banner#banner3 .banner_summary {
        display: block;
    }
    .banner#banner2 .banner_lead,
    .banner#banner3 .banner_lead {
        font-size: 21.38px;
        text-align: center;
    }
    .banner#banner2 .banner_tel,
    .banner#banner3 .banner_tel {
        justify-content: center;
        margin-top: 24px;
    }
    .banner#banner2 .banner_buttons,
    .banner#banner3 .banner_buttons {
        display: block;
    }
    .banner#banner2 .banner_button:last-child,
    .banner#banner3 .banner_button:last-child {
        margin-top: 24px;
    }
    .banner#banner2 .banner_tel,
    .banner#banner3 .banner_tel {
        justify-content: center;
        margin-top: 24px;
    }
    .banner#banner2 .banner_button,
    .banner#banner3 .banner_button {
        margin: auto;
    }
}

/*---------------------------------------------------------------------------------*/

.section#ceo {
    padding-bottom: 80px;
    padding-top: 80px;
}
.section#ceo .section_inner {
    margin: auto;
    max-width: 960px;
    width: 100%;
}
.section#ceo .section_summary {
    align-items: flex-start;
    -moz-column-gap: 28px;
    column-gap: 28px;
    display: flex;
    justify-content: space-between;
    width: inherit;
}
.section_avatar {
    flex: 1;
    max-width: 261px;
}
.section_avatar picture {
    max-width: 261px;
}
.section_message {
    margin-top: 24px;
}
.section_message p {
    font-size: 15px;
}
.section_message p:not(:first-child), .section_name {
    margin-top: 24px;
}
.section_name {
    font-size: 13px;
}
.section_texts {
    flex: 2;
}
.section#ceo .section_heading {
    font-size: 28px;
}

@media screen and (max-width: 768px) {
    .section#ceo {
        padding-bottom: 64px;
        padding-top: 40px;
    }
    .section#ceo .section_inner {
        max-width: 440px;
    }
    .section#ceo .section_summary {
        flex-direction: column-reverse;
    }
    .section_avatar {
        align-items: flex-end;
        -moz-column-gap: 12px;
        column-gap: 12px;
        display: flex;
        margin-top: 24px;
        max-width: none;
    }
    .section_avatar picture {
        flex: 1;
    }
    .section_name {
        font-size: 11px;
    }
    .section#ceo .section_heading {
        font-size: 24px;
    }
    .section_message p {
        font-size: 13px;
    }
}



/*---------------------------------------------------------------------------------*/

.footer {
    padding: 40px 20px 28px;
    text-align: center;
}
.footer_logo {
    margin: auto;
    max-width: 204px;
}
.footer_links {
    -moz-column-gap: 24px;
    column-gap: 24px;
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.footer_link {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 8px;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer_copyright {
    font-size: 11px;
    font-weight: 500;
    margin-top: 20px;
    opacity: .5;
}

.nav {
    bottom: 0;
    left: 0;
    opacity: 0;
    padding: 10px 8px;
    pointer-events: none;
    position: fixed;
    transition: all .24s ease;
    width: 100%;
    z-index: 9;
}
.nav.active {
    opacity: 1;
    pointer-events: all;
}
.nav_list {
    -moz-column-gap: 4px;
    column-gap: 4px;
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 342px;
    width: 100%;
}
.nav_item {
    width: calc(50% - 2px);
}
.nav_button {
    align-items: center;
    border-radius: 21.38px;
    -moz-column-gap: 2px;
    column-gap: 2px;
    cursor: pointer;
    display: flex;
    font-size: 13px;
    height: 38px;
    justify-content: center;
    transition: all .32s ease;
    width: 100%;
}
.nav_item:first-child .nav_button {
    box-shadow: 0 4px #993c30;
}
.nav_button picture {
    width: 10px;
}
.nav_item:last-child .nav_button {
    box-shadow: 0 4px #005233;
}

@media screen and (max-width: 768px) {
    .footer {
        padding-bottom: 88px;
    }
    .footer_link {
        font-size: 11px;
    }
}




/*---------------------------------------------------------------------------------*/

.slide{
    padding: 24px 0;
    pointer-events: none;
}
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-slider:not(:first-child){
  margin-top: 22px;
}

/* トラック共通 */
.logo-track {
  display: flex;
  width: max-content;
}

/* ← 左に流れる */
.logo-track--left {
  animation: scrollLeft 140s linear infinite;
}

/* → 右に流れる */
.logo-track--right {
  animation: scrollRight 140s linear infinite;
}


/* ロゴ */
.slide_slide {
  flex: 0 0 auto;
  margin-right: 24px; /* ←元LPに合わせてる */
}

.slide_slide img {
  height: 50px; /* 調整OK */
  display: block;
}

/* 左流れ */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 右流れ */
@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}


@media screen and (max-width: 768px) {
    .slide {
        padding: 20px 0;
    }
    .slide_slide img{
      height: 32px;
    }
}

/*---------------------------------------------------------------------------------*/

.hbspt-form{
    background-color: #fff;
    height: calc(100vh - 72px);
    overflow-y: auto;
    padding: 40px;
    position: sticky;
    right: 0;
    top: 72px;
    z-index: 1;
}
@media screen and (max-width: 1279px) {
    .hbspt-form{
        display: none;
    }
}