@charset "utf-8";

/* ==========================================
カスタムプロパティ
========================================== */

:root {
    /* site color */
    --black: #000;
    --white: #fff;
    --primary: #FF9900;
    --primary-light: #FFA500;
    --secondary: #FFF2DB;
    --secondary-light: #fff1d6;
    --tertiary: #FFD487;
    /* --quaternary: #f0f;
	--fifth: #ff0;
	--sixth: #0ff; */

    /* btn color */
    --btn-primary: var(--primary);
    --btn-primary-hover: var(--primary-hover);
    --btn-secondary: var(--secondary);
    --btn-secondary-hover: var(--secondary-hover);
    --btn-tertiary: var(--tertiary);
    --btn-tertiary-hover: var(--tertiary-hover);
    --btn-quaternary: var(--quaternary);
    --btn-quaternary-hover: var(--quaternary-hover);
    --btn-fifth: var(--fifth);
    --btn-fifth-hover: var(--fifth-hover);
    --btn-sixth: var(--sixth);
    --btn-sixth-hover: var(--sixth-hover);

    /* font family */
    --fontA: "Noto Serif JP", serif;
    --fontB: "Noto Serif", serif;
    --fontC: "Noto Sans JP", sans-serif;
    --fontD: "Noto Sans", sans-serif;

}

/* ==========================================
共通
========================================== */

html {
    /* font-size: var(--root-font-size); */
    font-size: 62.5%;
    scrollbar-gutter: stable;
}

body {
    margin: 0 auto;
    max-width: 192rem;
    width: 100%;
    padding-top: 0 !important;
    line-height: 2.22;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--fontA);
    color: var(--black);
    background: var(--secondary);
    overflow-x: hidden;
}

p {
    letter-spacing: 0.05em;
}

input {
    appearance: auto;
    border: 1px solid var(--ui-border-color);
}

input:focus-visible {
    outline: 1px solid var(--ui-focus-color);
    border-color: var(--ui-focus-color);
}

textarea {
    border: 1px solid var(--ui-border-color);
}

textarea:focus-visible {
    outline: 1px solid var(--ui-focus-color);
    border-color: var(--ui-focus-color);
}

img {
    max-width: 100%;
    height: auto;
}

.primary {
    color: var(--primary);
}

/* ==========================================
テキスト
========================================== */
.tit40 {
    font-size: 4rem;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    font-weight: bold;
    font-family: var(--fontB);
    text-align: center;
}

.tit45 {
    font-size: 4.5rem;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    font-weight: bold;
    font-family: var(--fontB);
    text-align: center;
}

.subtit35 {
    font-size: 3.5rem;
    line-height: 1.4em;
    letter-spacing: 0.1em;
    text-align: center;
    color: var(--primary);
}

.txt18 {
    font-size: 1.8rem;
}

.txt30 {
    font-size: 3rem;
    font-family: var(--fontB);
    line-height: 1.45em;
    font-weight: bold;
}


.mtTit {
    margin: 1rem 0 0;
}

/* ==========================================
ボタン
========================================== */

.btn01 {
    position: relative;
    width: 100%;
    max-width: 31.6rem;
    height: 6.4rem;
    font-size: 2rem;
    font-family: var(--fontD);
    border-radius: 100vmax;
    box-shadow: 0 .3rem .6rem rgba(0, 0, 0, 0.16);
    transition: all .3s;
    overflow: hidden;
}

.btn01 a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    letter-spacing: .1em;
    line-height: 1.45em;
    font-weight: 600;
}

.btnPrimary {
    background: var(--primary);
    color: var(--white);
}

.btnPrimary::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 2.45rem;
    width: .8rem;
    height: 1.35rem;
    margin: auto 0;
    background: url(../../../../uploads/arrow_white.svg) no-repeat center /contain;
}

.btnPrimary:hover {
    filter: brightness(1.15);
}

.btnWhite {
    background: var(--white);
    color: var(--primary);
}

.btnWhite::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 2.45rem;
    width: .8rem;
    height: 1.35rem;
    margin: auto 0;
    background: url(../../../../uploads/arrow_orange.svg) no-repeat center /contain;
}

.btnWhite:hover {
    background: var(--secondary-light);
}


/* ==========================================
スマホ固定ヘッダー
========================================== */

.sp-header {
    width: 100%;
    height: 8rem;
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 995;
}

.sp-header-block {
    width: 100%;
    height: 100%;
    flex: 1;
    border-right: solid 1px;
}

.sp-header-block-color {
    background: var(--primary);
    border-color: var(--white);
    color: var(--white);
}


.sp-header-link {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sp-header-link>a:before {
    content: "";
    display: inline-block;
    max-width: 3rem;
    width: 100%;
    height: 3rem;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
}

.sp-header-link-map:before {
    content: "\f3c5";
    font-family: "Font Awesome 5 Free";
    line-height: 1.5em;
}

.sp-header-link-tel:before {
    content: "\f095";
    font-family: "Font Awesome 5 Free";
    line-height: 1.5em;
}

.sp-header-link-contact:before {
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    line-height: 1.5em;
}

.sp-header-link-text {
    font-size: 1.4rem;
    margin: .7rem 0 0;
    line-height: 1.5em;
}

/* ---------- ハンバーガーボタン ---------- */

.sp-nav-btn {
    width: 8rem;
    height: 8rem;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    z-index: 9999;
}

.sp-nav-btn-color {
    background: var(--secondary);
    color: var(--white);
}

.sp-nav-btn-bar-box {
    max-width: 4rem;
    width: 100%;
    height: 3rem;
    display: flex;
    position: relative;
}

.sp-nav-btn-bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    transition: .3s;
}

.sp-nav-btn-bar-top {
    top: 10%;
}

.sp-nav-btn-bar-center {
    top: 50%;
    transform: translateY(-50%);
}

.sp-nav-btn-bar-bottom {
    top: 90%;
    transform: translateY(-100%);
}

.sp-nav-btn-text {
    font-size: 1.4rem;
    margin: .7rem 0 0;
}

.js-open .sp-nav-btn-bar-top {
    top: 50%;
    transform: rotate(35deg) translateY(-50%);
}

.js-open .sp-nav-btn-bar-center {
    opacity: 0;
}

.js-open .sp-nav-btn-bar-bottom {
    top: 50%;
    transform: rotate(-35deg) translateY(-50%);
}

/* ---------- ハンバーガーメニュー ---------- */

/* .js-sp-nav {
	display: none;
	max-width: 1920px;
	width: 100%;
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	transition: ease .5s;
	z-index: 999;
} */

.sp-nav.js-open {
    right: 0;
}

.sp-nav-bg {
    background: var(--primary-light);
}

.sp-nav-area {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 10rem 1.5rem;
}

.sp-nav-list {
    padding: 10rem 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -ms-overflow-style: none;
}

.sp-nav-list::-webkit-scrollbar {
    display: none;
}

.sp-nav-list-item {
    width: 100%;
    display: block;
    font-weight: bold;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    position: relative;
    border-bottom: solid 1px;
}

.sp-nav-list-item a {
    display: block;
    padding: 1.5rem 0;
    font-size: 1.6rem;
    transition: .3s;
}

.sp-nav-list-item a:hover {
    opacity: .6;
}

.sp-nav-list-item-color {
    border-bottom-color: var(--sp-border-color);
}

/* ==========================================
カバー
========================================== */

.cover {
    margin: 16.4rem 0 0;
}

.cvrAr {
    width: 100%;
    max-width: 187rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cvrBx {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30.5rem;
    overflow: hidden;
    border-radius: .5rem;
}

.cvrBx::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(80, 80, 80, 0.5);
    z-index: 1;
}

.cvrTit {
    position: relative;
    z-index: 5;
    font-size: 4rem;
    letter-spacing: 0.05em;
    line-height: 1.45em;
    color: var(--white);
    text-align: center;
    text-shadow: 0 .3rem .6rem rgba(0, 0, 0, 0.25);
}

/* ==========================================
パンくず
========================================== */

.breadcrumbs-wrapper {
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
}

.breadcrumbs-list {
    max-width: 122rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.breadcrumbs-item {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.7;
    display: flex;
    align-items: center;
}

.breadcrumbs-link {
    display: block;
    text-decoration: underline;
}

.breadcrumbs-link:hover {
    text-decoration: none;
}

.breadcrumbs-arrow {
    margin: 0 1rem;
}

/* ==========================================
テーブル
========================================== */

.table01 {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.table01 .tr {
    display: flex;
    align-items: stretch;
    gap: 0.2rem;
}

.table01 .th,
.table01 .td {
    padding: 1.3rem 2.5rem;
}

.table01 .th {
    width: 24%;
    background: var(--primary);
}

.table01 .td {
    flex: 1;
    background: var(--white);
}

.table01 .th p,
.table01 .td p {
    font-size: 1.6rem;
    line-height: 1.67;
}

.table01 .th p {
    text-align: center;
}


/* ==========================================
パーツ
========================================== */

.inWrap {
    margin: 13rem 0 0;
}

.inBtm {
    padding: 0 0 15rem 0;
}

.area {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.inArea01 {
    width: 100%;
    max-width: 125rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.inArea02 {
    width: 100%;
    max-width: 103rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.inArea03 {
    width: 100%;
    max-width: 93rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.br768 {
    display: none;
}

.br1024 {
    display: none;
}

.inReadTit {
    font-size: 3.7rem;
    letter-spacing: .05em;
    line-height: 2;
    text-align: center;
}

.inReadTit span {
    color: var(--primary);
    border-bottom: .4rem dashed var(--primary);
}

.inReadFl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 158.5rem;
    margin: 5.5rem 0 0 auto;
    gap: 3rem;
}

.inReadFlTxtBx {
    max-width: 56.5rem;
}

.inReadFlImg {
    flex: 1;
    max-width: 96rem;
    overflow: hidden;
}

.inReadTxt01 {
    font-weight: bold;
    line-height: 2.778;
    font-size: 1.8rem;
}

.inWryTitBx {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.inWryTitIcon {
    width: 4.5rem;
}

.inWryTit01 {
    font-size: 3.5rem;
}

.inWryBx {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 3rem;
    margin: 3rem 0 0;
    padding: 5.5rem 3rem;
    filter: drop-shadow(0 .3rem 1rem rgba(0, 0, 0, 0.16));
}

.inWryBx::before {
    content: "";
    position: absolute;
    margin: 0 auto;
    top: 99%;
    left: 0;
    right: 0;
    width: 6.6rem;
    aspect-ratio: 66/57;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.inWryClm {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.inWryItemTxt {
    display: flex;
    font-size: 1.6rem;
    line-height: 1.875em;
    font-weight: bold;
}

.inWryTit02 {
    margin: 9.5rem 0 0;
    text-align: center;
    font-size: 3.5rem;
}

.inWryGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9rem 3rem;
    margin: 11rem 0 0;
}

.inWryGridItem {
    width: 100%;
    height: 100%;
    padding: 0 1.5rem 3rem;
    background: var(--white);
}

.inWryIcon {
    width: 6.66rem;
    margin: -4rem auto 0;
}

.inWryTxt {
    margin: 1rem 0 0;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.875em;
}

.strWr {
    padding: 9rem 0 13rem;
    background: var(--white);
}

.strFl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10rem 0 0;
    gap: 2rem;
}

.strFl:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.strFlImg {
    width: 43%;
    max-width: 52rem;
    border-radius: 1rem;
    overflow: hidden;
}

.strFlTxtBx {
    width: 50%;
    max-width: 61rem;
}

.strFlTitBx {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.strFlTitNum {
    font-family: var(--fontB);
    color: var(--primary);
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.45;
}

.strFlTit {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.67;
    text-wrap: nowrap;
}

.strFlTxt01 {
    margin: 6rem 0 0;
    font-size: 1.8rem;
}

.whyAr {
    max-width: 105rem;
}

.whyTitBx {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.whyTitIcon {
    width: 6.3rem;
}

.whyTit {
    flex: 1;
    max-width: max-content;
    font-size: 3.5rem;
    line-height: 1.67;
}

.whyBx {
    margin: 9rem 0 0;
}

.whyFl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
}

.whyFl:nth-of-type(n + 2) {
    margin: 6rem 0 0;
}

.whyImg {
    width: 23rem;
}

.whyFlTxtBx {
    flex: 1;
}

.whyFlTxt01 {
    font-size: 2.5rem;
    line-height: 1.6;
    font-weight: bold;
}

.whyFlTxt02 {
    margin: 3rem 0 0;
    font-size: 1.8rem;
}

.inSolFl {
    display: flex;
    justify-content: space-between;
    margin: 10.4rem 0 0;
    gap: 3.7rem;
}

.inSolItem {
    width: 50%;
    background: var(--tertiary);
    padding: 0 10rem 6rem;
}

.inSolItemIn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 64rem;
    height: 100%;
}

.inSolItem:first-of-type .inSolItemIn {
    margin: 0 0 0 auto;
}

.inSolItem:last-of-type .inSolItemIn {
    margin: 0 auto 0 0;
}

.inSolItemTitBx {
    position: relative;
    width: 100%;
    max-width: 58.3rem;
    height: 8rem;
    margin: -3.8rem auto 0;
    padding: .5rem;
    z-index: 2;
}

.inSolItemTitBx::before,
.inSolItemTitBx::after {
    content: "";
    position: absolute;
    z-index: 1;
    height: 37.5%;
    width: 100%;
    border: 1px solid var(--black);
}

.inSolItemTitBx::before {
    top: 0;
    left: 0;
    border-bottom: none;
}

.inSolItemTitBx::after {
    bottom: 0;
    left: 0;
    border-top: none;
}

.inSolItemTit {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    font-family: var(--fontB);
    color: var(--primary);
    font-size: 3.5rem;
    line-height: 1.2em;
    background: var(--white);
}

.inSolItemImg {
    overflow: hidden;
    border-radius: 1rem;
    width: 100%;
    max-width: 55rem;
    margin: 2.5rem auto 0;
}

.inSolList {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 4rem auto 0;
    max-width: 55rem;
}

.inSolListClm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 49%;
}

.inSolListItem {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    padding: .5rem .7rem;
    background: var(--white);
}

.inSolListIcon {
    display: flex;
    width: 2.4rem;
    aspect-ratio: 1/1;
}

.inSolListTxt {
    flex: 1;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.4;
}


.flowBg {
    background: var(--tertiary);
    padding: 0 9rem 9rem;
}

.flowTitBx {
    text-align: center;
}

.flowTit01 {
    font-family: var(--fontD);
    line-height: .8em;
    font-weight: bold;
    font-size: 15rem;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.45);
}

.flowTit02 {
    line-height: 1.45em;
    font-weight: bold;
    font-size: 3.5rem;
}

.flowBx {
    margin: 7rem 0 0;
}

.flowFl {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.flowFl:nth-of-type(n+2) {
    margin: 4rem 0 0;
}

.flowFlImg {
    width: 23rem;
    border-radius: 1rem;
    overflow: hidden;
}

.flowFlTxtBx {
    flex: 1;
    width: 100%;
}

.flowFlTxt01 {
    font-size: 2.3rem;
    font-weight: bold;
    line-height: 1.45em;
}

.flowFlTxt02 {
    margin: 1rem 0 0;
    font-size: 1.8rem;
    line-height: 1.67;
}

.voAr {
    max-width: 157rem;
}

.voBx {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
    gap: 4rem;
    margin: 12.5rem 0 0;
}

.voItem {
    width: 100%;
    height: 100%;
    max-width: 50rem;
    padding: 0 3rem 3.5rem;
    background: var(--white);
    box-shadow: 0 .3rem 1rem rgba(0, 0, 0, 0.1);
}

.voIcon {
    width: 12.34rem;
    margin: -6rem auto 0;
}

.voTxt01 {
    margin: 1.2rem 0 0;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: bold;
    line-height: 1.45em;
}

.voTxt02 {
    margin: .5rem 0 0;
    padding: 0 0 1.2rem 0;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.45em;
    border-bottom: 2px solid var(--primary);
}

.voTxt03 {
    margin: 2rem 0 0;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.67em;
}

.vo2ColAr {
    max-width: 100rem;
}

.vo2ColAr .voBx2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 10rem 4rem;
}

.intvItem {
    margin: 7rem 0 0;
    padding: 3.5rem 11rem 6rem;
    background: var(--tertiary);
}

.intvItemTitFl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.intvItemIcon {
    width: 9.7rem;
}

.intvItemTxtBx {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.intvItemTxt01 {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.45;
}

.intvItemTxt02 {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.45;
}

.intvRow {
    padding: 4rem 2rem 2rem;
    border-bottom: 1px solid var(--primary);
}

.intvQBx,
.intvABx {
    display: flex;
}

.intvQBx {
    font-weight: bold;
}

.intvABx {
    margin: 1.5rem 0 0;
    font-weight: 500;
}

.intvTxt01 {
    line-height: 1.45;
}

.intvTxt02 {
    flex: 1;
    line-height: 1.45;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=1920px) {

    html {
        /* 10px */
        font-size: 0.52083vw;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=1550px) {

    html {
        /* 10px */
        font-size: 0.64516vw;
    }

    .inSolItemTxt01 {
        font-size: 2.3rem;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=1024px) {

    html {
        /* 10px */
        font-size: 0.97656vw;
    }

    .whyFlTxt01 {
        font-size: 2.2rem;
    }

    .inSolItem {
        padding: 0 4rem 6rem;
    }

    .inSolList {
        flex-direction: column;
    }

    .inSolListClm {
        width: 100%;
    }

    .strFlTit {
        font-size: 2.2rem;
        text-wrap: wrap;
    }

    .br1024 {
        display: block;
    }

    /* ==========================================
	スマホ固定ヘッダー
	========================================== */

    .cover {
        margin: 10rem 0 0;
    }

    .sp-header {
        display: flex;
    }

    /* ---------- ハンバーガーボタン ---------- */

    .sp-nav-btn {
        display: flex;
    }

    /* ---------- ハンバーガーメニュー ---------- */

    .js-sp-nav {
        display: block;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=768px) {

    html {
        /* 10px */
        font-size: 1.30208vw;
    }

    /* ==========================================
	テキスト
	========================================== */
    .tit40 {
        font-size: 2.8rem;
    }

    .tit45 {
        font-size: 2.8rem;
    }

    .subtit35 {
        font-size: 1.6rem;
    }

    .txt18 {
        font-size: 1.4rem;
    }

    .txt30 {
        font-size: 2rem;
    }

    /* ==========================================
	スマホ固定ヘッダー
	========================================== */

    .sp-header {
        display: flex;
    }

    /* ---------- ハンバーガーボタン ---------- */

    .sp-nav-btn {
        display: flex;
    }

    /* ---------- ハンバーガーメニュー ---------- */

    .js-sp-nav {
        display: block;
    }

    /* ==========================================
	カバー
	========================================== */

    .cvrBx {
        height: 25rem;
    }

    .cvrTit {
        font-size: 2.8rem;
    }

    /* ==========================================
	テーブル
	========================================== */

    .table01 .tr {
        flex-direction: column;
        gap: 0.2rem;
    }

    .table01 .th,
    .table01 .td {
        padding: .8rem 2rem;
    }

    .table01 .th {
        width: 100%;
    }

    .table01 .th p,
    .table01 .td p {
        font-size: 1.4rem;
    }

    .table01 .th p {
        text-align: start;
    }

    /* ==========================================
	パーツ
	========================================== */

    .inWrap {
        margin: 7rem 0 0;
    }

    .inBtm {
        padding: 0 0 8rem 0;
    }

    .br768 {
        display: block;
    }

    .inReadFl {
        flex-direction: column;
        margin: 2.5rem 0 0;
        gap: 2rem;
    }

    .inReadTit {
        font-size: 2rem;
    }

    .inReadTxt01 {
        font-size: 1.4rem;
    }

    .inReadFlImg {
        border-radius: 0 !important;
    }

    .inWryTitBx {
        gap: 1.5rem;
    }

    .inWryTitIcon {
        width: 3rem;
    }

    .inWryTit01 {
        font-size: 2rem;
    }

    .inWryBx {
        flex-direction: column;
        margin: 2rem 0 0;
        padding: 3rem 1.5rem;
        gap: 1.5rem;
    }

    .inWryBx::before {
        width: 4rem;
    }

    .inWryClm {
        gap: 1.5rem;
    }

    .inWryItemTxt {
        font-size: 1.4rem;
    }

    .inWryTit02 {
        margin: 4rem 0 0;
        font-size: 2rem;
    }

    .inWryGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem 1.5rem;
    }

    .inWryIcon {
        width: 4rem;
        margin: -2.5rem auto 0;
    }

    .inWryTxt {
        font-size: 1.4rem;
    }

    .inSolFl {
        margin: 8rem 0 0;
        flex-direction: column;
        gap: 8rem;
    }

    .inSolItem {
        width: 100%;
        padding: 0 2rem 5rem;
    }

    .inSolItemIn {
        margin: 0 auto;
    }

    .inSolItem:first-of-type .inSolItemIn {
        margin: 0 auto;
    }

    .inSolItem:last-of-type .inSolItemIn {
        margin: 0 auto;
    }

    .inSolItemTitBx {
        max-width: 33rem;
        height: 7rem;
        margin: -4rem auto 0;
    }

    .inSolItemTit {
        font-size: 2.5rem;
    }

    .inSolItemImg {
        margin: 2rem auto 0;
    }

    .inSolList {
        margin: 2rem auto 0;
    }

    .inSolListIcon {
        width: 2rem;
    }

    .inSolListTxt {
        font-size: 1.5rem;
    }

    .strWr {
        padding: 5rem 0 6rem;
    }

    .strFl {
        margin: 4rem 0 0;
        flex-direction: column;
    }

    .strFl:nth-of-type(2n) {
        flex-direction: column;
    }

    .strFlImg {
        width: 100%;
    }

    .strFlTxtBx {
        width: 100%;
    }

    .strFlTitBx {
        justify-content: center;
        gap: 1.5rem;
    }

    .strFlTitNum {
        font-size: 3rem;
    }

    .strFlTit {
        font-size: 1.8rem;
    }

    .strFlTxt01 {
        margin: 2rem 0 0;
        font-size: 1.4rem;
    }

    .whyTitBx {
        gap: 1.5rem;
    }

    .whyTitIcon {
        width: 3.5rem;
    }

    .whyTit {
        font-size: 2.2rem;
    }

    .whyBx {
        margin: 4rem 0 0;
    }

    .whyFl {
        flex-direction: column;
        gap: 2rem;
    }

    .whyFlTxt01 {
        font-size: 1.8rem;
    }

    .whyFlTxt02 {
        margin: 2rem 0 0;
        font-size: 1.4rem;
    }

    .whyFl:nth-of-type(n + 2) {
        margin: 4rem 0 0;
    }

    .flowBg {
        background: var(--tertiary);
        padding: 0 2rem 5rem;
    }

    .flowFlImg {
        width: 30rem;
    }

    .flowTit01 {
        font-size: 7rem;
    }

    .flowTit02 {
        font-size: 2rem;
    }

    .flowBx {
        margin: 3rem 0 0;
    }

    .flowFl {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        max-width: 50rem;
        margin: 0 auto;
    }

    .flowFl:nth-of-type(n+2) {
        margin: 3rem auto 0;
    }


    .flowFlTxt01 {
        font-size: 1.8rem;
    }

    .flowFlTxt02 {
        font-size: 1.4rem;
    }

    .voBx {
        margin: 7rem 0 0;
        grid-template-columns: repeat(1, 1fr);
        gap: 7rem;
    }

    .vo2ColAr .voBx2col {
        grid-template-columns: repeat(1, 1fr);
        gap: 7rem;
    }

    .voItem {
        padding: 0 1.5rem 3rem;
    }

    .voIcon {
        width: 10rem;
        margin: -4rem auto 0;
    }

    .voTxt01 {
        font-size: 1.5rem;
    }

    .voTxt02 {
        margin: .5rem 0 0;
        padding: 0 0 .5rem 0;
        font-size: 1.8rem;
    }

    .voTxt03 {
        margin: 1rem, 0 0;
        font-size: 1.4rem;
    }

    .intvItem {
        margin: 3rem 0 0;
        padding: 2.5rem 1.5rem 3rem;
    }

    .intvItemTitFl {
        gap: 1rem;
    }

    .intvItemIcon {
        width: 7rem;
    }

    .intvItemTxt01 {
        font-size: 2rem;
        font-weight: bold;
        line-height: 1.45;
    }

    .intvItemTxt02 {
        font-size: 1.4rem;
    }

    .intvRow {
        padding: 2rem 0rem 1.5rem;
    }

    .intvABx {
        margin: .8rem 0 0;
    }
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=576px) {

    html {
        /* 12px */
        font-size: 2.08333vw;
    }

    /* ==========================================
	スマホ固定ヘッダー
	========================================== */
    .sp-header {
        height: 6rem;
    }

    .sp-header-link>a:before {
        font-size: 2rem;
    }

    .sp-header-link-text {
        font-size: 1.2rem;
        margin: 0;
    }

    /* ---------- ハンバーガーボタン ---------- */

    .sp-nav-btn {
        width: 6rem;
        height: 6rem;
    }

    .sp-nav-btn-bar-box {
        max-width: 3rem;
    }

    .sp-nav-btn-text {
        font-size: 1rem;
    }

    .sp-nav-btn-text {
        margin: 0;
    }

    /* ---------- ハンバーガーメニュー ---------- */

    .sp-nav-list-item a {
        padding: 1.2rem 0;
        font-size: 1.45rem;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <=414px) {

    html {
        /* 14px */
        font-size: 2.43055vw;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */