@charset "utf-8"; 
@import url("attachment.css"); 
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"); 
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap'); 
@import url("inview.css"); 

:root {
    --base-color: #fff;
    --base-inverse-color: #373535;
    --primary-color: #ef4d44;
    --primary-inverse-color: #fff;
    --space-large: 8vw;
}

*::selection {
    background-color: rgba(0,0,0,0.6);
    color: #fff;
}

*::-moz-selection {
    background-color: rgba(04,0,0,0.6);
    color: #fff;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

body * {
    box-sizing: border-box;
    font-style: normal;
}

html,body {
    font-size: 13px;
    height: 100%;
}

@media screen and (min-width: 1000px) {
    html, body {
        font-size: 16px;
    }
}

@media screen and (min-width: 1600px) {
    html, body {
        font-size: 1vw;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    -webkit-text-size-adjust: none;
    background: var(--base-color);
    color: var(--base-inverse-color);
    line-height: 2;
}

figure {
    margin: 0;
}

dd {
    margin: 0;
}

nav ul {
    list-style: none;
}

nav,ul,li,ol {
    margin: 0;
    padding: 0;
}

section li {
    margin-left: 1rem;
}

table {
    border-collapse: collapse;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

video {
    max-width: 100%;
}

iframe {
    width: 100%;
}

input {
    font-size: 1rem;
}

section {
    overflow-x: hidden;
    padding: var(--space-large);
}

a {
    color: inherit;
    transition: 0.3s;
}

a:hover {
    text-decoration: none;
    opacity: 0.9;
}

@keyframes progress {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

#loading img {
    width: 200px;
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    #loading img {
        width: 150px;
    }
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f3f3e9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    animation: fadeIn 0.5s ease 0s forwards, fadeOut 0.5s ease 2.5s forwards;
}

.progress-container {
    width: 200px;
    height: 4px;
    border-radius: 2px;
    background: #fff;
    overflow: hidden;
}

.progress-bar {
    width: 100%;
    height: 100%;
    background: #373535;
    animation: progress 2.5s linear 0.5s;
    transform-origin: left;
}

#container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    animation: fadeIn 0.5s ease 2.5s forwards;
}

header {
    position: absolute;
    z-index: 1;
    left: 0px;
    top: 0px;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

@media screen and (min-width: 700px) {
    header {
        height: 90px;
    }
}

#logo img {
    display: block;
    width: 150px;
}

#logo {
    margin: 0;
    padding: 0;
    padding-left: 3vw;
}

@media screen and (min-width: 700px) {
    #logo img {
        width: 200px;
    }
}

header nav ul {
    display: none;
}

@media screen and (min-width: 1220px) {
    header > nav > ul {
        margin-right: 100px;
        display: flex;
    }

    header nav li a {
        display: block;
        text-decoration: none;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    header nav i {
        padding-right: 0.5rem;
    }
}

header nav ul ul, .small-screen #menubar ul ul {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

header nav li:hover > ul, header nav li > ul.show, .small-screen #menubar .ddmenu_parent:hover ul, .small-screen #menubar .ddmenu_parent ul.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

header nav ul ul {
    position: absolute;
    z-index: 100;
    margin-left: 1rem;
}

header nav ul ul a {
    padding: 0.3em 1em;
    margin-top: 4px;
    background: var(--base-color);
    color: var(--base-inverse-color);
    border: 1px solid var(--base-inverse-color);
    border-radius: 3px;
}

#menubar {
    display: none;
}

#menubar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#menubar a {
    display: block;
    text-decoration: none;
}

.large-screen #menubar {
    display: block;
}

.small-screen #menubar.display-block {
    display: block;
}

#menubar_hdr.display-none {
    display: none;
}

.ddmenu_parent ul {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.ddmenu_parent:hover ul, .ddmenu_parent ul.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

a.ddmenu::before {
    font-family: "Font Awesome 6 Free";
    content: "\f078";
    font-weight: bold;
    margin-right: 0.5em;
}

#menubar .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

#menubar .logo img {
    width: 200px;
}

#menubar .logo img:hover {
    cursor: pointer;
    opacity: 0.80;
    filter: alpha(opacity=80);
    -moz-opacity: 0.80;
}

@keyframes slideInRight {
    0% {
        right: -100vw;
        opacity: 0;
    }

    100% {
        right: 0px;
        opacity: 1;
    }
}

@keyframes slideOutRight {
    0% {
        right: 0px;
        opacity: 1;
    }

    100% {
        right: -100vw;
        opacity: 0;
    }
}

.small-screen #menubar.display-block {
    position: fixed;
    overflow: auto;
    z-index: 100;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    padding: 90px 10vw 50px;
    background: #f3f3e9;
    color: var(--primary-inverse-color);
    animation: slideInRight 0.5s ease-out both;
}

.small-screen #menubar.display-block.closing {
    animation: slideOutRight 0.4s ease-in both;
}

.small-screen #menubar li {
    margin: 1rem 0;
}

.small-screen #menubar li:not(.ddmenu_parent) {
    margin: 0.5rem 0;
}

.small-screen #menubar li.ddmenu_parent.collapsed {
    margin: 0.5rem 0;
}

.small-screen #menubar a {
    border-radius: 5px;
    padding: 1rem 2rem;
    font-style: normal;
    background-image: url(../images/bg_pattern1.png);
    background-size: 13px;
    color: var(--base-color);
    background-color: var(--base-inverse-color);
}

.small-screen #menubar a:hover {
    background: #ef4d44;
}

.small-screen #menubar #prBnr a{
    border-radius: 5px;
    padding: 0.5rem 1rem 1rem 1rem;
    font-style: normal;
    background-image: url(../images/bg_pattern1.png);
    background-size: 13px;
    background: #9b0919;
    font-family: serif;
    text-align: center;
}

.small-screen #menubar #prBnr a:hover{
    background: #020202;
}

.small-screen #menubar ul ul a {
    background: var(--base-color);
    color: var(--base-inverse-color);
    border: 1px solid var(--base-inverse-color);
    margin-left: 2rem;
}

#menubar_hdr {
    animation: fadeIn 0s 0.2s both;
    position: fixed;
    z-index: 101;
    cursor: pointer;
    right: 0px;
    top: 0px;
    padding: 20px 15px;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform-origin: right top;
    background: var(--base-inverse-color);
    border-radius: 0px 0px 0px 10px;
}

@media screen and (min-width: 700px) {
    #menubar_hdr {
        transform: scale(1.5);
    }
}

#menubar_hdr span {
    display: block;
    transition: 0.3s;
    border-top: 1.5px solid var(--base-color);
}

#menubar_hdr.ham {
    background: #ef4d44;
}

#menubar_hdr.ham span:nth-of-type(1), #menubar_hdr.ham span:nth-of-type(3) {
    transform-origin: center center;
}

#menubar_hdr.ham span:nth-of-type(1) {
    transform: rotate(45deg) translate(6px, 5.8px);
}

#menubar_hdr.ham span:nth-of-type(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

#menubar_hdr.ham span:nth-of-type(2) {
    display: none;
}

#mainimg {
    background: var(--base-color) url("../images/mainimg_sh.jpg") no-repeat center center / cover;
    width: 100%;
    padding-top: 150%;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 420px) {
    #mainimg {
        background: var(--base-color) url("../images/mainimg.jpg") no-repeat center center / cover;
        padding-top: 56.25%;
    }
}

#mainimg > div {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 420px) {
    #mainimg > div {
        left: var(--space-large);
        align-items: flex-start;
        justify-content: center;
    }
}

#mainimg p {
    margin: 0;
}

#mainimg .text {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.8;
    text-align: center;
    background: rgb(255 255 255 / 60%);
    padding: 20px 35px;
    line-height: 5.0rem;
}

@media screen and (min-width: 420px) {
    #mainimg .text {
        text-align: left;
        font-size: 3.6vw;
    }
}

#mainimg .btn {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 3vw;
    display: flex;
    gap: 1rem;
}

#mainimg .btn a {
    display: block;
    text-decoration: none;
    padding: 0.8rem 2rem;
    margin-bottom: 10px;
}

#mainimg .btn a:hover {
    opacity: 1;
    transform: scale(1.05);
}

@media screen and (min-width: 420px) {
    #mainimg .btn {
        font-size: 1.4vw;
    }

    #mainimg .btn a {
        margin: 0;
        padding: 0.6rem 3rem;
    }
}

#mainimg .btn p:nth-of-type(1) a {
    background: var(--primary-color);
    color: var(--primary-inverse-color);
}

#mainimg .btn p:nth-of-type(2) a {
    background: var(--base-inverse-color);
    color: var(--base-color);
    letter-spacing: 0.1em;
}

#mainimg .btn i {
    transform: scale(1.4);
    padding-right: 0.8rem;
}

main {
    flex: 1 0 auto;
    overflow-x: hidden;
}

main h2 {
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 5vw;
    display: flex;
    flex-direction: column-reverse;
    letter-spacing: 0.1em;
    position: relative;
}

@media screen and (min-width: 700px) {
    main h2 {
        font-size: 2.4rem;
    }
}

main h2.c {
    align-items: center;
}

main h2 span {
    font-size: 0.85rem;
    opacity: 0.5;
    font-weight: normal;
}

h2 img {
    width: 100px;
    transform: rotate(-10deg);
    position: absolute;
    left: -10px;
    top: -40px;
}

@media screen and (min-width: 700px) {
    h2 img {
        width: 170px;
        left: -110px;
    }
}

footer {
    background: #f3f3e9;
    color: #373535;
    padding: 2rem;
    display: flex;
    flex-direction: column-reverse;
}

footer div:nth-of-type(1) {
    text-align: center;
}

footer div:nth-of-type(2) {
    flex: 1;
    display: flex;
    gap: 2rem;
}

@media screen and (min-width: 700px) {
    footer {
        flex-direction: row;
        gap: 4rem;
        padding: 4rem 4rem 3.5rem;
    }

    footer div:nth-of-type(1) {
        text-align: left;
        width: 30%;
    }

    footer div:nth-of-type(2) {
        justify-content: flex-end;
        gap: 4rem;
    }
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 2rem;
}

footer small {
    display: block;
    padding-top: 2rem;
}

.icons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media screen and (min-width: 700px) {
    .icons {
        justify-content: flex-start;
    }
}

.icons i {
    font-size: 30px;
}

.prr {
    text-decoration: none;
    display: block;
    background: rgba(0, 0, 0, 0.9);
    text-align: right;
    padding: 0.5rem 1rem 0.7rem;
    color: #ccc;
    text-align: center;
}

@media screen and (max-width: 699px) {
    .prr {
        padding: 0.5rem 1rem 5.7rem;
    }
}

.prr a {
    color: #ccc;
    text-decoration: none;
}

.prr a:hover {
    color: #fff;
}

.prr a::before {
    font-family: "Font Awesome 6 Free";
    content: "\e2ca";
    font-weight: bold;
    margin-right: 0.5em;
}

@media screen and (min-width: 700px) {
    .c2 {
        display: flex;
        gap: 2rem;
    }

    .c2 .title {
        width: 30%;
    }

    .c2 .text {
        flex: 1;
    }
}

@media screen and (min-width: 700px) {
    .faq {
        font-size: 1.2rem;
    }
}

.faq dt {
    display: flex;
    align-items: flex-start;
    border-radius: 3px;
    margin-bottom: 1rem;
    background: var(--base-color);
    color: var(--base-inverse-color);
    padding: 1rem;
}

.faq dt::before {
    font-family: "Font Awesome 6 Free";
    content: "\51";
    margin-right: 0.5rem;
    background: var(--primary-color);
    color: var(--primary-inverse-color);
    border-radius: 50%;
    width: 30px;
    line-height: 30px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.2em;
}

.faq dd {
    padding: 0 1rem 1rem 3.7rem;
}

.openclose {
    cursor: pointer;
}

.new dd {
    padding-bottom: 1rem;
}

.new dt span {
    display: inline-block;
    text-align: center;
    line-height: 1.8;
    border-radius: 2px;
    padding: 0 1rem;
    width: 8rem;
    transform: scale(0.85);
    border: 1px solid #ef4d44;
    background: #ef4d44;
    color: #fff;
}

.new .icon-bg1 {
    border-color: transparent;
    background: #cd0000;
    color: #fff;
}

.new .icon-bg2 {
    border-color: transparent;
    background: var(--primary-color);
    color: var(--primary-inverse-color);
}

@media screen and (min-width: 700px) {
    .new {
        display: grid;
        grid-template-columns: auto 1fr;
    }
}

.slide-thumbnail1 .img {
    display: flex;
}

.slide-thumbnail1 .img img {
    padding: 5px;
}

.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.slide-thumbnail1 .rtl {
    animation-name: slide-rtl;
}

.slide-thumbnail1 .ltr {
    animation-name: slide-ltr;
}

@keyframes slide-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes slide-ltr {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.text-slide-wrapper {
    overflow: hidden;
    margin-top: calc(-1 * (1.6 * var(--space-large)));
    position: relative;
    top: 9px;
}

@media screen and (max-width: 520px) {
    .text-slide-wrapper {
        top: 0px;
    }
}

#faq {
    margin-bottom: 130px;
}

@media screen and (max-width: 520px) {
    #faq {
        margin-bottom: 35px;
    }
}

.text-slide {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    display: flex;
    white-space: nowrap;
    font-size: 15vw;
    opacity: 0.05;
    line-height: 20vw;
}

.text-slide span {
    padding: 0 20px;
}

.btn1 a {
    text-shadow: none;
    display: block;
    text-decoration: none;
    background: var(--primary-color);
    color: var(--primary-inverse-color);
    font-size: 1.4rem;
    padding: 0.5rem 2rem;
    border-radius: 100px;
    text-align: center;
}

.bg-primary-color .btn1 a {
    background: var(--primary-inverse-color);
    color: var(--primary-color);
}

.btn1 a:hover {
    opacity: 1;
    transform: scale(1.05);
    background: var(--primary-inverse-color);
    color: var(--primary-color);
}

.bg-primary-color .btn1 a:hover {
    background: #fff;
    color: #373535;
}

.btn1 a::after {
    font-family: "Font Awesome 6 Free";
    content: "\f0a9";
    font-weight: bold;
    margin-left: 0.5em;
}

.bg-primary-color {
    background: #cf3e36;
    color: var(--primary-inverse-color);
}

.bg1 {
    background-color: var(--base-inverse-color);
    color: var(--base-color);
}

.bg2 {
    background: #f3f3e9;
}

.bg3 {
    background: #fff;
}

.bg-pattern1 {
    background-image: url("../images/bg_pattern1.png");
    background-repeat: repeat;
    background-position: center top;
    background-size: 10px;
}

.bg-pattern2 {
    background-image: url("../images/bg_pattern2.png");
    background-repeat: repeat;
    background-position: center top;
    background-size: 10px;
}

.bg-pattern3 {
    background-image: url("../images/bg_pattern3.png");
    background-repeat: repeat;
    background-position: center top;
    background-size: 10px;
}

.bg-pattern4 {
    background-image: url(../images/bg_pattern4.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
}

.inherit {
    background-size: inherit !important;
}

.arrow {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,95 L50,100 L0,95 Z' fill='%23000000'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

@media screen and (min-width: 700px) {
    .arrow {
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,90 L50,100 L0,90 Z' fill='%23000000'/%3E%3C/svg%3E");
        padding-bottom: 150px;
    }
}

.arrow + section {
    padding-top: calc(var(--space-large) + 150px);
    margin-top: -150px;
}

.list-grid-simple .list * {
    margin: 0;
    padding: 0;
}

.list-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.list-grid-simple .list {
    display: grid;
    position: relative;
}

.list-grid-simple .list h4 {
    margin-top: 0.5rem;
    font-weight: normal;
}

@media screen and (min-width: 800px) {
    .list-grid-simple {
        grid-template-columns: repeat(3, 1fr);
    }
}

.list-grid1 .list * {
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 800px) {
    .list-grid1, .list-grid2 {
        display: grid;
        gap: 3vw;
    }

    .list-grid1 {
        grid-template-columns: repeat(3, 1fr);
    }

    .list-grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.list-grid1 .list {
    display: grid;
    margin-bottom: 3rem;
    position: relative;
    border-radius: 5px;
    background: #fff;
    color: #373535;
    box-shadow: 2px 5px 5px rgba(0,0,0,0.1);
    padding: 2rem;
}

@media screen and (min-width: 800px) {
    .list-grid1 .list {
        margin-bottom: 0;
    }
}

.list-grid1 .list.bg-black {
    background: #111;
    color: #fff;
}

.list-grid1 .list .num {
    position: absolute;
    left: -20px;
    top: -30px;
    font-size: 60px;
    line-height: 1;
    font-family: "MonteCarlo", cursive;
    opacity: 0.2;
}

.list-grid1 .list h4.kazari::before {
    content: """;
    position: absolute;
    left: -1rem;
    top: -40px;
    opacity: 0.2;
    font-size: 60px;
    line-height: 1;
}

.list-grid1 .list h4 {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    margin-top: 15px;
}

.list-grid1 .list p {
    font-size: 1.0rem;
    line-height: 1.6;
    font-weight: normal;
}

.list-grid1 .list.bg-black p {
    color: #999;
}

.list-grid1 .list figure.icon {
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
    margin-top: -40px;
}

.bg1 .list-grid1 .list figure.icon {
    filter: grayscale(100%) brightness(90%);
    margin-bottom: 1rem;
}

@media screen and (min-width: 800px) {
    .list-grid1 .list figure.icon {
        width: 100%;
        max-width: 300px;
        margin-top: -50px;
    }
}

.list-c2 > a {
    text-decoration: none;
    display: block;
}

@media screen and (min-width: 600px) {
    .list-c2 {
        display: flex;
        gap: 2vw;
    }
}

.list-c2 .list {
    text-align: center;
    position: relative;
    overflow-y: hidden;
    color: #fff;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.6);
    padding: 5rem 2rem;
    margin: 1rem 0;
    border-radius: 30px;
}

@media screen and (min-width: 600px) {
    .list-c2 > * {
        flex: 1;
    }

    .list-c2 .list {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .list-c2 > a .list {
        height: 100%;
    }

    .list-c2 .list:nth-of-type(1) {
        border-radius: 0px 30px 30px 0px;
    }

    .list-c2 .list:nth-of-type(2) {
        border-radius: 30px 0px 0px 30px;
    }
}

.list-c2 .list.image1 {
    background: url("../images/bg_contact.jpg") no-repeat center center / cover;
}

.list-c2 .list.image2 {
    background: url("../images/bg_request.jpg") no-repeat center center / cover;
}

.list-c2 h4 {
    line-height: 1.2;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
}

.list-c2 h4 .main-text {
    display: block;
    font-size: 3rem;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
}

@media screen and (min-width: 600px) {
    .list-c2 h4 .main-text {
        font-size: 4rem;
    }
}

.list-c2 .list .text {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
}

.list-c2 .list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    transition: transform 0.3s 0.1s;
}

.list-c2 .list:hover::before {
    transform: translateY(100%);
}

.bg-slideup {
    margin-left: calc(-1 * var(--space-large));
    margin-right: calc(-1 * var(--space-large));
}

section > .bg-slideup:first-child {
    margin-top: calc(-1 * var(--space-large));
}

.bg-slideup .image {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 10vw 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    color: var(--base-inverse-color);
}

@media screen and (min-width: 420px) {
    .bg-slideup .image {
        padding: 10vw 20px 15vw;
    }
}

.en-text {
    writing-mode: horizontal-tb;
    font-size: 0.8rem;
}

.jp-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
}

#products .bg-slideup .image {
    background-image: url("../images/bg_works.jpg");
}

#company .bg-slideup .image {
    background-image: url("../images/bg_company.jpg");
}

.list-normal1 * {
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 600px) {
    .list-normal1 .text {
        flex: 1;
    }

    .reverse {
        flex-direction: row-reverse;
        background-position: left bottom !important;
    }
}

.list-normal1 .list {
    background: var(--base-color) url("../images/bg-dot.png") no-repeat right bottom / 200px;
    color: var(--base-inverse-color);
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
    position: relative;
}

@media screen and (min-width: 600px) {
    .list-normal1 .list {
        display: flex;
        gap: 2rem;
    }
}

.list-normal1 figure {
		width: 100%;
    margin-bottom: 1rem;
}

@media screen and (min-width: 600px) {
	.list-normal1 figure {
    width: 30%;
        margin-bottom: 0;
    }
}

.list-normal1 h4 {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

@media screen and (min-width: 600px) {
    .list-normal1 h4 {
        font-size: 2rem;
        line-height: 1.8;
    }
}

.list-normal1.flow h4 i {
    margin-right: 1rem;
}

.list-normal1 .name {
    text-align: right;
    margin-top: 1rem;
}

.list-normal1.flow .list::after {
    content: "▼";
    position: absolute;
    left: 50%;
    bottom: -2rem;
    transform: scaleX(1.5);
    opacity: 0.5;
}

.list-normal1.flow .list:last-child::after {
    content: none;
}

.ta1 caption {
    font-weight: bold;
    padding: 0.5rem 1rem;
    background: var(--base-inverse-color);
    color: var(--base-color);
    margin-bottom: 1rem;
    border-radius: 5px;
}

.ta1 {
    table-layout: fixed;
    width: 100%;
    border-top: 1px solid #ccc;
    margin-bottom: 2rem;
}

.ta1 tr {
    border-bottom: 1px solid #ccc;
}

.ta1 td, .ta1 th {
    word-break: break-all;
    background: var(--primary-color);
    color: #fff;
    text-align: left;
    padding: 0.5rem;
}

.ta1 th {
    width: 25%;
    text-align: center;
}

.ta1.plan, .ta1.plan td, .ta1.plan th {
    text-align: center;
    border: 2px solid var(--base-inverse-color);
    padding: 0.5rem;
}

@media screen and (min-width: 801px) {
    .ta1.plan, .ta1.plan td, .ta1.plan th {
        font-size: 1.2rem;
        padding: 2rem 1rem;
    }
}

.ta1.plan th:first-child, .ta1.plan td:first-child {
    width: 17rem;
}

.ta1.plan th {
    width: auto;
    position: relative;
    overflow: hidden;
}

.ta1.plan th .osusume {
    position: absolute;
    left: 0px;
    top: 0px;
    background: #ff0000;
    color: #fff;
    font-size: 0.8rem;
    width: 120px;
    text-align: center;
    padding-top: 43px;
    padding-bottom: 2px;
    transform: rotate(-45deg) translate(-18px, -60px);
}

.ta1.plan th i {
    display: block;
    font-size: 1.4rem;
}

.ta1.plan th:nth-child(2) {
    background: #fffcda;
    color: #333;
}

.ta1.plan td:nth-child(2) {
    background: #fffcda;
    color: #333;
}

.ta1.plan th:nth-child(3) {
    background: #fffcda;
    color: #333;
}

.ta1.plan td:nth-child(3) {
    background: #fffcda;
    color: #333;
}

.ta1.plan th:nth-child(4) {
    background: #fffcda;
    color: #333;
}

.ta1.plan td:nth-child(4) {
    background: #fffcda;
    color: #333;
}

.plan th > span {
    display: block;
    font-size: 1.6rem;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
}

@media screen and (min-width: 801px) {
    .plan th > span {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 800px) {
    .scroll .ta1.plan {
        width: 700px;
    }

    .scroll {
        overflow-x: auto;
    }
}

.padding0 {
    padding: 0 !important;
}

.padding-lr0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#manual #container {
    all: unset;
}

.manual {
    background: #fff;
    color: #373535;
    padding: 5vw;
}

.manual .look {
    background: #eee;
}

.manual h2 {
    margin-top: 2rem;
    font-size: 2rem;
    text-align: center;
}

.manual h3 {
    line-height: 3;
    margin-top: 2rem;
}

.manual h3 span {
    background: linear-gradient(transparent 60%, yellow);
}

.manual h3 + p {
    margin-top: -0.5rem;
}

.manual.margin-left {
    padding-left: 300px;
}

@media screen and (max-width: 999px) {
    .manual.margin-left {
        padding-left: 4vw;
    }
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.color-check, .color-check a {
    color: #ff0000 !important;
}

.l {
    text-align: left !important;
}

.c {
    text-align: center !important;
}

.r {
    text-align: right !important;
}

.ws {
    width: 95%;
    display: block;
}

.wl {
    width: 95%;
    display: block;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb-space-large {
    margin-bottom: var(--space-large) !important;
}

.look {
    line-height: 1.5 !important;
    display: inline-block;
    padding: 5px 10px;
    background: rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 3px;
    margin: 5px 0;
    word-break: break-all;
}

.small {
    font-size: 0.75em;
}

.large {
    font-size: 2em;
    letter-spacing: 0.1em;
}

.pc {
    display: none;
}

.dn {
    display: none !important;
}

.block {
    display: block !important;
}

.inline-block {
    display: inline-block !important;
}

.relative {
    position: relative;
}

.marker {
    background: linear-gradient(transparent 50%, yellow);
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media screen and (min-width: 900px) {
    .ws {
        width: 48%;
        display: inline;
    }

    .sh {
        display: none;
    }

    .pc {
        display: block;
    }
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2147483647;
    background: rgba(20,24,28,0.75);
    color: #fff;
    font: 14px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    box-shadow: 0 -6px 24px rgba(0,0,0,0.25);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

#cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

#cookie-banner.hide {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cookie-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 16px;
    align-items: center;
}

.cookie-banner__text {
    margin: 0;
}

.cookie-banner__link {
    color: #b6e0ff;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cookie-btn {
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s ease, transform .1s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn:active {
    transform: translateY(1px);
}

.cookie-btn--accept {
    background: #ef4d44;
    color: #fff;
}

.cookie-btn--decline {
    background: #666;
    color: #fff;
}

@media (max-width: 640px) {
    .cookie-banner__inner {
        grid-template-columns: 1fr;
    }

    .cookie-banner__actions {
        justify-content: stretch;
    }

    .cookie-btn {
        width: 100%;
    }
}

.resultsList1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.resultsList1 li {
    margin: 0;
}

@media (max-width: 768px) {
    .resultsList1 {
        grid-template-columns: repeat(2, 1fr);
    }

    .resultsList1 li:first-child {
        grid-column: 1 / -1;
    }

    .resultsList1 li img {
        width: 100%;
    }
}

.baloon {
    background: #ffd9d7;
    border: 2px solid #ffd9d7;
    border-radius: 20px;
    padding: 1rem 1.5rem;
    text-align: center;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: bold;
}
@media screen and (min-width: 1000px) {
    .baloon {
        font-size: 1.5vw;
        margin-bottom: 45px;
    }
}

.baloon::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffd9d7;
}

.baloon::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffd9d7;
    margin-bottom: -2px;
}

.resultsList2 {
    background: #f5f6ee;
    padding: 2rem;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 2rem;
    list-style: none;
    margin: 0;
}

@media (max-width: 768px) {
    .resultsList2 {
        grid-template-columns: 1fr;
    }
}

.resultsList2 li {
    margin: 0;
    padding-left: 1.5rem;
    position: relative;
        font-size: 17px;
}
@media (max-width: 768px) {
    .resultsList2 li {
        font-size: 17px;
    }
}
.resultsList2 li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #ef4d44;
}

.pcOk {
    display: none;
}

.spOk {
    display: flex;
}

@media screen and (min-width: 420px) {
    .pcOk {
        display: flex;
    }

    .spOk {
        display: none;
    }
}



@charset "utf-8"; 

.red {
    color: #ef4d44;
}

.black {
    color: #373535;
}

.bgWhite {
    background: #fff !important;
}

.bgWhite {
    background: #fff !important;
}

.play {
    background: #e64638;
    color: #fff;
    border-radius: 500px;
    font-size: 10px;
    padding: 5px 6px 5px 9px;
    position: relative;
    bottom: 3px;
    margin-right: 4px;
}

.ta1.bgWhite td,
.ta1.bgWhite th {
    background: #fff !important;
    color: #333;
    border-top: 1px solid #cccccc;
}
.ta1.bgWhite th {
    width: 15%;
}
.ta1.bgWhite td {
    font-weight: normal;
    padding: 15px 10px;
}

.marker2 {
    background: #f8e0de;
    padding: 0.2em 0.5em;
    color: #ef4d44;
    font-weight: 500;
}

.fList1 li a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0 7px;
}

.fList1 li a:hover {
    padding: 0 7px 0 12px;
}

.fList1 li a::after {
    content: '▶';
    font-size: 0.8em;
    opacity: 1.0;
}

@media screen and (max-width: 520px) {
    .fList1 li {
        overflow: hidden;
    }

    .fList1 li {
        width: 50%;
        float: left;
        border-bottom: none;
    }

    .fList1 li a {
        font-size: 1rem;
        margin: 0 5px;
    }
}

.navList {
    overflow: hidden;
}

.navList li {
    width: 50%;
    float: left;
    padding: 0 10px;
}

.navList li a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.navList li a::after {
    content: '▶';
    font-size: 0.8em;
    opacity: 1.0;
}

@media screen and (max-width: 520px) {
    .navList li {
        width: 100%;
        float: none;
        padding: 0 0px;
    }
}

.navList2 {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 2rem 0 !important;
    padding: 10px 0 !important;
    border-top: 1px dotted #333;
}

.navList2 a {
    background-color: transparent !important;
    color: #373535 !important;
    font-size: 0.9rem;
}

@media screen and (max-width: 520px) {
    .navList2 a {
        padding: 0 !important;
        margin-top: 10px;
    }
}

.navList2 a::before {
    font-family: "Font Awesome 6 Free";
    content: "\e2ca";
    font-weight: bold;
    margin-right: 0.5em;
}

.navList2 a:hover {
    opacity: 0.80;
    filter: alpha(opacity=80);
    -moz-opacity: 0.80;
}
#prBnr {
    text-align: center;
    color: #333;
    margin: 0;
}
#prBnr a {
    max-width: 350px;
    display: block;
    margin: 0 auto 50px;
}
#prBnr a img {
    width: 100%;
}
.list-grid1 .list.bg-black {
    background: #fff;
    color: #111;
}
.list-grid1 .list .num {
    position: absolute;
    left: -7px;
    top: 20px;
    font-size: 84px;
    line-height: 1;
    font-family: "Roboto", cursive;
    opacity: 0.1;
}
.list-grid1 .list.bg-black p {
    color: #373535;
}
.ta1 th,.ta1 td {
    width: 30%;
    line-height: 1.3em;
}
th.campaign {
    font-size: 1.2rem;
}
.ta1.plan td:first-child {
  width: 20rem;
}
.note {
  font-size: 0.8rem;
  font-weight: 400;
}
#products h3 {
    background: url(../images/ic_disc_w.png) no-repeat #f0f3f5;
    padding: 0.5em 1.5em 0.5em 2.5em;
    background-size: 1.2rem;
    background-position: 18px 50%;
}
#products h4 {
    background: url(../images/ic_results.png) no-repeat;
    padding: 0px 0 8px 30px;
    background-size: 1.2rem;
    background-position: 0px 4px;
    margin: 0 0 20px;
    border-bottom: 3px solid #dedede;
}
#products h4.ch:before {
    content: "";
}
.noBd {
    background: none !important;
    padding: 0 !important;
    margin: 0 0 0px !important;
    border-bottom: none !important;
}
#products table.tab1 {
    width: 100%;
}
#products table.tab1 th,
#products table.tab1 td {
    width: 25%;
}
#products img {
    width: 100%;
}
table.ta2 {
    width: 100%;
}
table.ta2 , td, th {
	border-top: 1px solid #808080;
	border-collapse: collapse;
}
table.ta2 th {
	background: #f5f6ee;
}
table.ta2 td, th {
	padding: 3px;
	width: 30px;
	height: 25px;
}
h4.ch {
  position: relative;
  padding-left: 1.2em;
  margin-left: 2em;
  line-height: 1.4;
}
h4.ch:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  font-size: 1em;
  left: 0;
  top: 0;
  color: #ef4d44; 
  font-weight: 900;
}
.text-slide {
  line-height: 25vw;
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2147483648;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
    display: block;
    opacity: 1;
    visibility: visible;
}
.modal-container, .modal-container * {
    all: revert;
    box-sizing: border-box;
}

.modal-container {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.9) !important;
    background: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    width: 90% !important;
    max-width: 800px !important;
    max-height: 90vh !important;
    overflow: hidden !important;
    transition: transform 0.3s ease !important;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif !important;
}

.modal-overlay.show .modal-container {
    transform: translate(-50%, -50%) scale(1) !important;
}

.modal-header {
    background: #373535 !important;
    color: #fff !important;
    padding: 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.modal-header h2 {
    margin: 0 !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: #fff !important;
    border: none !important;
    padding: 0 !important;
    text-align: left !important;
}

.modal-close {
    background: none !important;
    border: none !important;
    color: #fff !important;
    font-size: 2rem !important;
    cursor: pointer !important;
    padding: 0 !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: background-color 0.2s ease !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

.modal-content {
    padding: 30px !important;
    max-height: calc(90vh - 80px) !important;
    overflow-y: auto !important;
    line-height: 1.7 !important;
    color: #333 !important;
    font-size: 14px !important;
    text-align: left !important;
    background-image: url(../images/bg_pattern2.png);
    background-repeat: repeat;
    background-position: center top;
    background-size: 10px;
    background-color: #ededed;
}
.modal-content header {
    margin-bottom: 1.5rem !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.modal-content header .meta {
    color: #6b7280 !important;
    font-size: 0.9rem !important;
    margin: 0 0 0.5rem 0 !important;
}

.modal-content header .small {
    font-size: 0.9rem !important;
    color: #6b7280 !important;
    margin: 0 !important;
}
.modal-content h2 {
    color: #111 !important;
    font-size: 1.3rem !important;
    margin: 2rem 0 1rem 0 !important;
    padding-top: 1rem !important;
    border-top: 1px solid #e5e7eb !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    text-align: left !important;
    background: transparent !important;
}

.modal-content h3 {
    color: #333 !important;
    font-size: 1.1rem !important;
    margin: 1.5rem 0 0.8rem 0 !important;
    padding: 0 !important;
    border: none !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    text-align: left !important;
    background: transparent !important;
}
.modal-content p {
    margin: 0.8rem 0 !important;
    color: #333 !important;
    line-height: 1.8 !important;
    text-align: left !important;
}
.modal-content ul {
    margin: 0.8rem 0 1rem 1.5rem !important;
    padding: 0 !important;
    list-style-type: disc !important;
}

.modal-content li {
    margin: 0.5rem 0 !important;
    color: #333 !important;
    list-style-type: disc !important;
}
.modal-content a {
    color: #ef4d44 !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
}

.modal-content a:hover {
    opacity: 0.8 !important;
}
.modal-content code {
    background: #f3f4f6 !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    font-family: 'Courier New', monospace !important;
    font-size: 0.9em !important;
    color: #ef4d44 !important;
}
.modal-content .notice {
    background: rgba(239, 77, 68, 0.05) !important;
    border-left: 4px solid #ef4d44 !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    padding: 15px 20px !important;
    border-radius: 4px !important;
    margin: 1.5rem 0 !important;
}

.modal-content .notice strong {
    color: #ef4d44 !important;
    font-weight: 600 !important;
}
.modal-content .toc {
    background: lch(97.87 0.63 252.32 / 0.6) !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
    margin: 1.5rem 0 !important;
}

.modal-content .toc a {
    display: block !important;
    padding: 6px 0 !important;
    text-decoration: none !important;
    color: #373535 !important;
    transition: padding-left 0.2s ease !important;
}

.modal-content .toc a:hover {
    padding-left: 8px !important;
    text-decoration: none !important;
    cursor: default;
}
.modal-content section {
    margin-bottom: 2rem !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}
.modal-content footer {
    margin-top: 2rem !important;
    padding: 1rem 0 0 0 !important;
    border-top: 1px solid #e5e7eb !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    font-size: 0.9rem !important;
    color: #6b7280 !important;
    background: transparent !important;
    display: block !important;
    text-align: left !important;
}

.modal-content footer p {
    margin: 0 !important;
    color: #6b7280 !important;
}
@media (max-width: 768px) {
    .modal-container {
        width: 95% !important;
        max-height: 95vh !important;
    }

    .modal-header {
        padding: 15px !important;
    }

    .modal-header h2 {
        font-size: 1.2rem !important;
    }

    .modal-content {
        padding: 20px !important;
        font-size: 13px !important;
    }

    .modal-content h2 {
        font-size: 1.2rem !important;
    }

    .modal-content h3 {
        font-size: 1rem !important;
    }
}
.footer-map {
    width: 100%;
    margin: 2rem 0;
}

.footer-map iframe {
    width: 100%;
    height: 250px;
    border-radius: 8px;
}
@media screen and (min-width: 700px) {
    footer {
        display: flex !important;
        flex-direction: row !important;
        gap: 2rem !important;
        align-items: flex-start !important;
    }

    footer > div {
        flex: 1 !important;
    }

    .footer-map {
        flex: 1.5 !important;
        margin: 0 !important;
    }

    .footer-map iframe {
        height: 31vw;
        max-height: 435px;
    }
}
.color-check, .color-check a {
    color: var(--primary-color)!important;
}

footer.bg-pattern2 ul li {
    border-bottom: 1px dotted #333;
    padding: 5px 0px 5px;
}

@media screen and (max-width: 520px) {
    footer.bg-pattern2 ul li {
        border-bottom: none;
    }
}

.icons li, .fList2 li {
    border-bottom: none;
    font-size: 0.8rem;
}

.icons li {
    border-bottom: none !important;
}

.icons li a:hover {
    opacity: 0.80;
    filter: alpha(opacity=80);
    -moz-opacity: 0.80;
}

.fList2 {
    text-align: center;
}

.fList2 li {
    display: inline;
    margin: 0 10px;
}

.fList3 {
    text-align: center;
}

@media screen and (min-width: 700px) {
    .fList3 {
        text-align: left !important;
    }
}

.fList3 li {
    margin: 0 0px;
    border-bottom: none !important;
}

.fList3 li a {
    margin: 0px 0px 0px 0px;
    border-bottom: none !important;
    display: block;
    color: #fff;
    background: #9b0919;
    text-decoration: none;
    padding: 5px 10px 10px;
    font-family: serif;
    border-radius: 5px;
    width: 23vw;
    font-size: 13px;
    max-width: 250px;
    text-align: center;
}

@media screen and (max-width: 699px) {
    .fList3 li a {
        width: 70%;
        display: block;
        margin: 0 auto;
    }
}

.copy {
    font-size: 0.8rem;
}

@media screen and (max-width: 520px) {
    .slide-thumbnail1 img {
        width: 150px !important;
        max-width: 150px !important;
    }

    .slide-thumbnail1 .img > div {
        flex: 0 0 auto !important;
        width: auto !important;
    }
}
.youtube-modal-container {
    max-width: 1000px !important;
    width: 95% !important;
    padding: 0 !important;
    overflow: visible !important;
}

.youtube-modal-container .modal-header {
    position: absolute !important;
    top: -50px !important;
    right: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    z-index: 10000 !important;
}

.youtube-modal-close {
    background: rgba(0, 0, 0, 0.7) !important;
    color: #fff !important;
    font-size: 2rem !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    border: 2px solid #fff !important;
}

.youtube-modal-close:hover {
    background: rgba(0, 0, 0, 0.9) !important;
}

.youtube-modal-content {
    padding: 0 !important;
    background: #000 !important;
    max-height: none !important;
    overflow: visible !important;
}

#youtube-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

#youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .youtube-modal-container {
        width: 95% !important;
    }

    .youtube-modal-container .modal-header {
        top: -45px !important;
    }

    .youtube-modal-close {
        width: 35px !important;
        height: 35px !important;
        font-size: 1.5rem !important;
    }
}
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(55 53 53 / 90%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 8px 0;
}

.bottom-menu__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    flex: 1;
    padding: 8px 0 3px;
    transition: all 0.3s ease;
}

.bottom-menu__item:hover {
    background: #ef4d44;
    opacity: 1;
    border-radius: 7px;
}

.bottom-menu__item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.bottom-menu__item span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
@media screen and (min-width: 700px) {
    .bottom-menu {
        display: none;
    }
}

@media screen and (max-width: 520px) {
    .prr.brur {
        padding-bottom: 70px !important;
    }

    .small-screen #menubar.display-block {
        padding: 35px 10vw 50px;
    }
}
.contact-form {
    max-width: 100%;
    margin: 0 auto;
}
.contact-form dl {
    margin: 0;
    padding: 0;
}
.contact-form dt {
    font-weight: 600;
    font-size: 1rem;
    color: #373535;
    margin: 1.5rem 0 0.5rem 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
}

.contact-form dt .must {
    order: 2;
}

.contact-form dt:first-child {
    margin-top: 0;
}
.contact-form .must {
    display: inline-block;
    background: #ef4d44;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    line-height: 1;
}
.contact-form dd {
    margin: 0 0 1rem 0;
    padding: 0;
}
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #373535;
    transition: all 0.3s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit;
}
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {
    font-size: 16px;
}
.contact-form input[type="text"]:focus, .contact-form input[type="email"]:focus, .contact-form input[type="tel"]:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #ef4d44;
    box-shadow: 0 0 0 3px rgba(239, 77, 68, 0.1);
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #999;
    opacity: 1;
}
.contact-form .form-select {
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23373535" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpolyline points="6 9 12 15 18 9"%3E%3C/polyline%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 45px;
    cursor: pointer;
}
.contact-form .form-textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}
.contact-form .form-radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
    width: 100%;
}
.contact-form .form-radio-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
}
.contact-form .form-radio-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #fff;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    width: 100%;
}

.contact-form .form-radio-label:hover {
    border-color: #ef4d44;
    background: rgba(239, 77, 68, 0.02);
}

.contact-form .form-radio-label input[type="radio"] {
    margin: 2px 8px 0 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #ef4d44;
}

.contact-form .form-radio-label span {
    font-size: 0.95rem;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
}
.contact-form .form-radio-label:has(input[type="radio"]:checked) {
    border-color: #ef4d44;
    background: rgba(239, 77, 68, 0.05);
    font-weight: 600;
}
.contact-form .form-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-form .form-checkbox-label:hover {
    border-color: #ef4d44;
    background: rgba(239, 77, 68, 0.02);
}

.contact-form .form-checkbox-label input[type="checkbox"] {
    margin: 2px 10px 0 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #ef4d44;
}

.contact-form .form-checkbox-label span {
    font-size: 0.95rem;
    line-height: 1.6;
}
.contact-form .form-checkbox-label:has(input[type="checkbox"]:checked) {
    border-color: #ef4d44;
    background: rgba(239, 77, 68, 0.05);
}
.contact-form .form-zip-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.contact-form .form-zip {
    width: auto;
    flex: 0 0 auto;
    text-align: center;
}

.contact-form .form-zip:first-child {
    width: 70px;
}

.contact-form .form-zip:last-child {
    width: 90px;
}

.contact-form .form-zip-hyphen {
    font-size: 1.2rem;
    font-weight: 600;
    color: #373535;
}
.contact-form .form-address-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-form .form-address {
    width: 100%;
}
.contact-form .form-text-sub {
    width: 100%;
    margin-top: 0.75rem;
}
.contact-form .form-policy-link {
    color: #ef4d44;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.contact-form .form-policy-link:hover {
    opacity: 0.7;
}
.contact-form .mfp_buttons {
    margin-top: 2rem;
    text-align: center;
}

.contact-form .form-submit-btn {
    display: inline-block;
    background: #ef4d44;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 77, 68, 0.3);
    -webkit-tap-highlight-color: transparent;
}

.contact-form .form-submit-btn:hover {
    background: #d63d33;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 77, 68, 0.4);
}

.contact-form .form-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(239, 77, 68, 0.3);
}
.contact-form .mfp_err {
    color: #ef4d44;
    font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
    .contact-form {
        max-width: 1000px;
    }

    .contact-form dl {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 1rem 2rem;
        align-items: start;
    }

    .contact-form dt {
        font-size: 0.8rem;
        margin: 0;
        grid-column: 1;
        gap: 0.4rem;
    }

    .contact-form dd {
        grid-column: 2;
        margin: 0;
    }
    .contact-form .form-address-group {
        gap: 1rem;
    }
    .contact-form .form-radio-group-vertical {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .contact-form .form-text-sub {
        grid-column: 1 / -1;
        margin-top: 0;
    }
}
@media screen and (max-width: 767px) {
    .contact-form dt {
        font-size: 0.95rem;
        flex-direction: row;
        align-items: center;
    }

    .contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form select, .contact-form textarea {
        padding: 10px 12px;
    }

    .contact-form .form-radio-label, .contact-form .form-checkbox-label {
        padding: 10px 12px;
    }

    .contact-form .form-submit-btn {
        width: 100%;
        padding: 14px 40px;
        font-size: 1rem;
    }
    .contact-form .form-radio-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .contact-form .form-radio-label {
        width: 100%;
    }
}
@supports (-webkit-overflow-scrolling: touch) {
    .contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form select, .contact-form textarea {
        -webkit-appearance: none;
        border-radius: 6px;
    }
}
.contact-form input:focus-visible, .contact-form select:focus-visible, .contact-form textarea:focus-visible, .contact-form button:focus-visible {
    outline: 2px solid #ef4d44;
    outline-offset: 2px;
}
.contact-form input[name="郵便番号1"] {
    width: 80px !important;
    max-width: 80px !important;
}

.contact-form input[name="郵便番号2"] {
    width: 100px !important;
    max-width: 100px !important;
}
.contact-form textarea {
    width: 100% !important;
    min-height: 200px !important;
    padding: 12px !important;
    font-size: 16px !important;
    border: 2px solid #ddd !important;
    border-radius: 6px !important;
    resize: vertical !important;
}
.top {
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
}

.top .topL,
.top .topR {
    flex: 1;
    text-align: center;
}

.top p {
    margin: 0.5rem 0;
    color: #373535;
    font-size: 14px;
    line-height: 1.6;
}

.top p:first-child {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0.5rem;
}

.top small {
    display: block;
    color: #666;
    font-size: 13px;
    margin-top: 0.25rem;
}
.top a.tel {
    display: inline-block;
    background: #ef4d44;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 0.4rem 1.5rem;
    border-radius: 4px;
    margin: 0.5rem 0;
    transition: background-color 0.3s;
}

.top a.tel:hover {
    background: #d63d33;
    opacity: 1;
}
.top a.line {
    display: inline-block;
    background: #06c051;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 0.4rem 1.5rem;
    border-radius: 4px;
    margin: 0.5rem 0;
    transition: background-color 0.3s;
}

.top a.line:hover {
    background: #05ac47;
    opacity: 1;
}
.top a.tel[href^="tel:"]:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f095";
    margin-right: 0.5rem;
    color: #fff;
}
.top a.line:before {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    content: "\f3c0";
    margin-right: 0.5rem;
    color: #fff;
}
@media screen and (min-width: 768px) {
    .top {
    }

    .top p:first-child {
        font-size: 13px;
    }

    .top p {
        font-size: 15px;
    }
}
@media screen and (max-width: 767px) {
    .top {
        flex-direction: column;
        gap: 1.5rem;
    }

    .top p:first-child {
        font-size: 14px;
    }

    .top p {
        font-size: 13px;
    }

    .top a.tel {
        font-size: 15px;
        width: 100%;
        max-width: 100%;
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
        box-sizing: border-box;
    }
}
#contact .expl {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

#contact .expl .intro {
    margin-bottom: 1rem;
}

#contact .expl .intro p {
    color: #373535;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

#contact .expl hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 1.5rem 0;
}

#contact .expl h3 {
    color: #373535;
    font-size: 14px;
    font-weight: 700;
    margin: 1rem 0 0 0;
    padding: 5px 0.75rem;
    border: 1px solid #d1d1d1;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
    border-radius: 5px;
}

#contact .expl h3:hover {
    background-color: #f9f9f9;
}

#contact .expl h3:after {
    content: "−";
    position: absolute;
    right: 1rem;
    transition: transform 0.3s;
}

#contact .expl h3:not(.active):after {
    content: "+";
}

#contact .expl h3:first-of-type {
    margin-top: 0;
}

#contact .expl ul {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    counter-reset: list-counter;
}

#contact .expl ul li {
    position: relative;
    padding-left: 2rem;
    margin: 0.5rem 0;
    color: #373535;
    font-size: 14px;
    line-height: 1.6;
    counter-increment: list-counter;
}

#contact .expl ul li:first-child {
    margin-top: 0.75rem;
}

#contact .expl ul li:last-child {
    margin-bottom: 0.75rem;
}

#contact .expl ul li:before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    color: #373535;
    font-weight: 600;
    margin-left: 10px;
}
#contact .expl .highlight {
    font-weight: 600;
}
.email-address {
    font-weight: normal;
    color: #fff;
    background: #ef4d44;
    padding: 1px 8px 4px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 2px;
}
.email-address:hover {
    opacity:0.80;filter:alpha(opacity=80);-moz-opacity:0.80;
}
#contact .expl .privacy-link {
    color: #ef4d44;
    text-decoration: underline;
}

#contact .expl .privacy-link:hover {
    opacity: 0.7;
}
@media screen and (min-width: 768px) {
    #contact .expl {
        padding: 2rem;
    }
}
@media screen and (min-width: 700px) {
    #contact .c2 .title {
        flex-shrink: 0;
    }
}
@media screen and (max-width: 767px) {
    #contact .expl {
        padding: 1.25rem;
    }

    #contact .expl .intro p {
        font-size: 14px;
    }

    #contact .expl h3 {
        font-size: 14px;
    }

    #contact .expl ul li {
        font-size: 13px;
        padding-left: 1rem;
    }
}


.thanksTit {
 background: url(../images/bg_thanks.jpg) no-repeat 50% 45%; 
 background-size: cover; 
 padding: 160px 0 130px; 
 margin-bottom: 0;
}
@media screen and (max-width: 520px) {
    .thanksTit {
    padding: 80px 0 50px; 
    }
}
#thanksP .thanks-title,
#thanksP .notice-title,
#thanksP .contact-title {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-weight: normal;
}

#thanksP h3,
#thanksP h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #373535;
    margin: 0 0 0.8rem 0;
    line-height: 1.5;
}

#thanksP .thanks-title h3 {
    color: #ef4d44;
}

#thanksP p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #373535;
    margin: 0 0 1rem 0;
}

#thanksP ul {
    margin: 0.5rem 0;
    padding-left: 1.2rem;
    list-style: decimal;
}

#thanksP ul li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #373535;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
}

#thanksP strong {
    font-weight: 700;
    color: #ef4d44;
}


#thanksP .contact-title a {
    color: #ef4d44;
    text-decoration: underline;
}

#thanksP .contact-title a:hover {
    opacity: 0.8;
}

div#mfp_thanks {
    background: #f3f3e9;
    text-align: center;
    border-radius: 5px;
    color: #000000;
    padding: 5px;
    margin-bottom: 20px;
    border: 2px solid #f06156;
}

