body {
    background-color: #ffffff;
    text-align: center;
    font-family: "HG丸ｺﾞｼｯｸM-PRO","Hiragino Kaku Gothic Pro","HGMaruGothicMPRO","ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3";
}

header {
    position: relative;
    width: 100%;
}

footer {
    text-align: left;
}

hr {
    border-color: #ffbf1c;
}

ul {
    padding-left: 22px;
    margin-top: 0;
}

li {
    text-align: left;
    margin: 16px 20px 28px auto;
}

video {
    width: 98%;
    border: #000 2px solid;
}

/* スクリーントーンのカバー */
.cover::after {
	content: "";
    box-sizing: border-box;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,.3) radial-gradient(rgba(0,0,0,.3) 25%, transparent 0) center / 5px 5px;
}

header h1 {
	position: absolute;
	z-index: 1;
	top: 50%;
	width: 100%;
	margin: 0;
	color: #1d2225;
	font-size: 5rem;
	line-height: 1.4;
	font-family: "Dosis", sans-serif;
	letter-spacing: .1em;
	transform: translateY(-50%);
    animation: fadeIn 4s forwards;
}

.header-contact {
    margin: .3vh 1.2vw 0 auto;
    font-size: 90%;
}

.common-header-pc {
    margin-top: 1vh;
    text-align: left;
}

.menu-pc {
    margin-top: 1vh;
}

.tel-icon:before {
    background: url(../image/22531406.png) no-repeat 0 4px;
    background-size: 30px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 30px;
    width: 30px;
    padding-top: 4px;
}

.mail-icon:before {
    background: url(../image/25841586.png) no-repeat 0 4px;
    background-size: 30px;
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 30px;
    width: 30px;
    padding-top: 8px;
}

a[href^="tel:"], a[href^="mailto:"] {
    text-decoration: none;
    color: #000;
}

.border-line {
    margin-left: 4vw;
    margin-right: 4vw;
}

@keyframes fadeIn {
    0% {
      opacity: 0;
    }
    20% {
        opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

/* Nav items */
.menu-header {
    text-align: left;
}

.menu-button-pc {
    background-color: #ffbf1c;
    text-align: center;
    box-sizing: border-box;
    border-left: #c8aa43 1px solid;
    padding: 1.3vh 0;
    text-decoration: none;
    color: #000;
}

.menu-button-pc:hover, .menu-button-pc:focus {
    background-color: #ffa807;
    text-decoration: underline;
}

.menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 52px;
    padding: 0 0 10px 0;
    clear: both;
    background: var(--background-navbar);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    background-color: rgba(0,0,0,.5);
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menu text */
.menu a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: capitalize;
    color: #ddd;
    opacity: 0;
    transition: 0.5s;
}

.menu li {
    border-top: 1px solid rgb(75, 75, 75);
    padding: 15px 0;
    margin: 0 54px;
    opacity: 0;
    transition: 0.5s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
    display: none;
}

.menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
    background: #ddd;
    display: block;
    height: 3px;
    width: 26px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #ddd;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
    top: 9px;
}

.navicon:after {
    bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu-header:has(.menu-btn:checked) {
    background-color: rgba(0,0,0,.5);
}

/* Hamburger Menu Animation End */

.body-area {
    margin-top: 2vh;
    margin-bottom: 10vh;;
}

.body-area p {
    text-align: left;
    margin: 0 auto;
    margin-bottom: 1vh;
    line-height: 1.4;
}

/* 角丸センタリングボックスエリア */
.box {
    margin-left: 3vw;
    margin-right: 3vw;
    margin-top: 4.5vw;
    background-color: #FFF;
    border-radius: 2px;
    border: #1d2225 1px solid;
}

.box-header {
    background-color: #ffbf1c;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    padding: 25px 0;
}

.box-body {
    padding: 2.5vh 2vw 2.5vh 2vw;
    text-align: left;
}

.box iframe {
    margin-top: 2vh;
    width: 95%;
}

/* box-A：センタリングボックスエリアの子要素style */
.box-A {
    border-top: 35px solid #78bdff;
}

.box-A p {
    color: #000;
}

/* box-B：左寄せボックスエリアの子要素style */
.box-B h1, .box-B h2, .box-B h3, .box-B p {
    color: #000;
    text-align: center;
    margin: 0;
    font-size: 1.45em;
}

.box-B p {
    text-align: left;
    font-size: 18px;
}

/* box-C：右寄せボックスエリアの子要素style */
.box-C h1, .box-C h2, .box-C h3, .box-C p {
    padding-right: 3vw;
    color: #000;
    text-align: right;
}

.lines {
    font-size: 22px;
}

.explain-lines {
    font-size: 19px;
}

table {
    width: 96%;
    margin: 20px auto 0 auto;
    font-size: 18px;
}

thead th {
    padding: 8px;
    text-align: center;
    background: linear-gradient(to right, #fff 0%, #ffe298 10%, #ffe298 90%, #fff 100%);
}

tbody td {
    padding: 25px 3.3vw;
    text-align: left;
    border-bottom: #000 1px dotted;
}

.no-item-td {
    width: 2vw;
    padding: 0 !important;
    border: none !important;
}

.input-area {
    margin-top: 8vh;
    margin-bottom: 10vh;;
}

.input-area p {
    margin: 0 auto;
    margin-top: 1.1vh;
    margin-bottom: 1vh;
    font-weight: bold;
}

.inner-box {
    border: 2px #9b9b9b solid;
    border-radius: 10px;
    margin: 1vh 1vw 1vh 1vw;
    cursor: pointer;
}

.inner-box:hover {
    border: 2px #71d3fa solid;
}

.inner-box > p {
    font-weight: 300;
}

.input-field, .display-field {
    margin-top: 2vh;
}

.display-field > p {
    text-align: left;
    width: 95%;
    font-weight: 300;
}

.date-header {
    margin-top: 3vh;
}

.date-header > h2 {
    margin: auto auto 1vh auto;
}

.balloon1 {
    position: relative;
    display: inline-block;
    margin: 4vw -2.5vw 30px 0;
    padding: 17px;
    min-width: 120px;
    max-width: 100%;
    background: #ffe298;
    border-radius: 50px;
}

.balloon1:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -25px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid #ffe298;
    z-index: 0;
}

.balloon1 p {
    margin: 0;
    padding: 10px 20px;
    font-size: 1.45em;
    font-weight: 600;
}

.sm-only, .md-only, .not-lg {
    display: none;
}

.lg-only {
    display: inline;
}

@media screen and (max-width: 567px) {
    /* ここに横幅が567px以下の時に発動するスタイルを記述 */
    body {
        font-size: 12px;
    }

    .title {
        font-size: 13px;
    }

    .menu-button-pc, footer p {
        font-size: 11px;
    }

    .box-B p, .lines, .explain-lines {
        font-size: 12px;
    }

    .balloon1 p {
        padding: 10px 10px;
        font-size: 1.35em;
    }

    table {
        font-size: 13px;
    }

    header h1 {
        font-size: 3rem;
    }
    
    .inner-box > p {
        font-size: 83%;
    }
    
    .input-field, .display-field {
        margin-top: 1vh;
    }

    .display-field > p {
        text-align: center;
        width: 100%;
    }

    .modal-content label {
        font-size: 82%;
    }

    .sm-only {
        display: inline;
    }

    .tel-icon:before {
        background-size: 22px;
        height: 22px;
        width: 22px;
    }
    
    .mail-icon:before {
        background-size: 22px;
        height: 22px;
        width: 22px;
    }

    .header-contact {
        margin-top: 13px;
    }

    .header-contact a {
        font-size: 10px;
    }

    #address-sm {
        width: 105% !important;
    }

    #orderGuideBtn:before {
        /* width: 17vw !important;  */
        width: 16vw !important;
        background-size: 11vw !important;
        padding-top: 0px !important;
    }

    #estimateGuideBtn:before {
        width: 6.8vw !important;
        padding-top: 4px !important;
    }

    #orderGuideBtn {
        margin-top: -2px !important;
    }

    #orderGuideBtn > label {
        font-size: 2.2vw !important;
        margin-left: -21px !important;
    }

    #downloadGuideBtn > label {
        font-size: 2.2vw !important;
    }
    
    #estimateGuideBtn > label {
        font-size: 2.2vw !important;
        margin-left: .1vw !important;
    }

    #overview-address-md {
        width: auto !important;
        height: 35px !important;
        margin-top: 10px;
    }
}

@media screen and (max-width: 766px) {
    /* ここに横幅が766px以下の時に発動するスタイルを記述 */
    #address-pc {
        display: none !important;
    }

    #address-sm {
        display: block !important;
    }
}

@media screen and (max-width: 1023px) {
    /* ここに横幅が1023px以下の時に発動するスタイルを記述 */
    .lg-only {
        display: none;
    }

    .not-lg {
        display: inline;
    }
}

@media screen and (max-width: 1040px) {
    /* ここに横幅が1040px以下の時に発動するスタイルを記述 */
    #cat1, #bird1 {
        width: 100px !important;
    }

    .sub-image {
        width: 80% !important;
    }

    .md-only {
        display: inline;
    }
}

@media screen and (max-width: 1762px) {
    /* ここに横幅が1762px以下の時に発動するスタイルを記述 */
    #overview-address-pc {
        display: none !important;
    }

    #overview-address-md {
        width: auto;
        height: 45px;
        margin-left: -3px;
        display: block !important;
    }
}

@media screen and (min-width: 1560px) {
    /* ここに横幅が1560px以上の時に発動するスタイルを記述 */
    .balloon1 {
        margin-right: -6.5vw;
    }
}

.item-name {
    display: table; 
    height: 50px;
    border-bottom: 2px #ffbf1c solid;
}

.item-name p {
    display: table-cell;
    vertical-align: middle;
    font-weight: 600;
    font-size: 115%;
    text-align: center;
}

.item-value {
    display: table;
    height: 50px;
    margin-left: 7px;
    padding-left: 14px;
    border-bottom: 1px #ffbf1c solid;
}

.item-value p {
    display: table-cell;
    vertical-align: middle;
}

.required-label {
    color: red;
    padding-left: 3px;
}

button > label {
    cursor: pointer;
    display: block;
}

.submit-button {
    width: 335px;
    background-color: #f88956;
    height: 80px;
    border: 1px #f88956 solid;
    border-radius: 20px;
    font-weight: bold;
    font-size: 115%;
    cursor: pointer;
}

.submit-button[aria-disabled="true"] {
    background-color: #d4a0a0;
    cursor: not-allowed;
}

.return-button {
    width: 335px;
    background-color: #71d3fa;
    height: 80px;
    border: 1px #71d3fa solid;
    border-radius: 20px;
    font-weight: bold;
    font-size: 115%;
    cursor: pointer;
}

/* テキストボックスstyle */
input[type=text] {
    width: 94%;
    border: 1px #9b9b9b solid;
    border-radius: 10px;
    padding: 10px 5px 10px 10px;
    height: 25px;
    border: 1px #9b9b9b solid;
}

 /* セレクトボックスstyle */
select {
    width: 95%;
    border: 1px #9b9b9b solid;
    border-radius: 10px;
    padding: 12px 5px 10px 5px;
    height: 45px;
}

select:invalid {
    color: #9b9b9b;
}

#cat1 {
    width: 10vw;
    /* margin-bottom: -7.5vh; */
    margin-bottom: -18.5vh;
    margin-right: 80vw;
    position: relative;
    z-index: 100;
}

#bird1 {
    width: 10vw;
    margin-top: 5vh;
    margin-bottom: -8.5vh;
    margin-left: 80vw;
    position: relative;
    z-index: 100;
}

.sub-image {
    width: 80%;
    border-radius: 10px;
}

/* モーダルstyle */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 60%);
    opacity: 0;
    transition: opacity 0.5s, scale 0s 0.5s;
    scale: 0;
}

.modal:target {
    opacity: 1;
    transition: opacity 0.5s;
    scale: 1;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: black;
    text-decoration: none;
    cursor: pointer;
    transform: translate(50%, -50%);
}

.modal-wrapper {
    position: relative;
    width: 80%;
    max-width: 500px;
    max-height: 70%;
    padding: 20px;
    margin: auto;
    overflow: scroll;
    background-color: #FEFEFE;
    border-radius: 5px;
    transition: scale 0.5s;
    scale: 0;
}

.modal:target .modal-wrapper {
    transition: scale 0.5s;
    scale: 1;
}

.modal-content h1 {
    margin: 0;
    font-size: 4rem;
    line-height: 1.2em;
    letter-spacing: -0.02em;
}

/* ヘッダー画像用アニメーション START */
.img-wrap {
    overflow: hidden;
    position: relative;
}

.img-wrap::before,
.img-wrap::after {
    animation: 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: #fff;
    content: '';
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.img-wrap::before {
    animation-name: img-wrap-before;
    inset: 0 50% 0 0;
}

.img-wrap::after {
    animation-name: img-wrap-after;
    inset: 0 0 0 50%;
}

@keyframes img-wrap-before {
100% {
    transform: translateY(100%);
}
}

@keyframes img-wrap-after {
100% {
    transform: translateY(-100%);
}
}
/* ヘッダー画像用アニメーション END */

/* 下矢印スクロールアニメーション START */
.arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 20px;
  }
  
  .arrows path {
    stroke: #2994D1;
    fill: transparent;
    stroke-width: 1px;  
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite; 
  }
  
  @keyframes arrow
  {
  0% {opacity:0}
  40% {opacity:1}
  80% {opacity:0}
  100% {opacity:0}
  }
  
  @-webkit-keyframes arrow /*Safari and Chrome*/
  {
  0% {opacity:0}
  40% {opacity:1}
  80% {opacity:0}
  100% {opacity:0}
  }
  
  .arrows path.a1 {
    animation-delay:-2s;
    -webkit-animation-delay:-2s; /* Safari 和 Chrome */
  }
  
  .arrows path.a2 {
    animation-delay:-0.5s;
    -webkit-animation-delay:-0.5s; /* Safari 和 Chrome */
  }
  
  .arrows path.a3 { 
    animation-delay:0s;
    -webkit-animation-delay:0s; /* Safari 和 Chrome */
  }
/* 下矢印スクロールアニメーション END */

/* フェードインアニメーション START */
.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
}

.fadein-left {
    transform: translate(-30px,0);
}

.fadein-right {
    transform: translate(30px,0);
}

.fadein-up {
    transform: translate(0,-30px);
}

.fadein-bottom {
    transform: translate(0,30px);
}

.scrollin {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}
/* フェードインアニメーション END */

/* 回転表示アニメーション START */
.rotation {
    transition: all 1.0s;
    opacity: 0;
}

.rotation-x {
    transform: rotateX(180deg);
}

.rotation-y {
    transform: rotateY(180deg);
}

.rotation-clockwise {
    transform: rotate(-170deg);
}

.rotation-counterclockwise {
    transform: rotate(170deg);
}

.scrollin {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
}
/* 回転表示アニメーション END */

/* ズームイン */
.zoomin {
    opacity: 0;
    transform: scale(0.8);
}

.is-animated {
    animation: zoomIn 1s ease-in-out forwards;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 個別設定 */
#orderGuideBtn:before {
    background: url(../image/23275677.jpg) no-repeat 0 4px;
    background-size: 13vw;
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 10vw;
    width: 14vw;
    padding-top: 4px;
}

#downloadGuideBtn:before {
    background: url(../image/25835664.jpg) no-repeat 0 4px;
    background-size: 6vw;
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 4.5vw;
    width: 7vw;
    padding-top: 6px;
}

#estimateGuideBtn:before {
    background: url(../image/41159.jpg) no-repeat 0 4px;
    background-size: 3.2vw;
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 4.8vw;
    width: 8vw;
    padding-top: 2px;
}

#orderGuideBtn, #downloadGuideBtn {
    cursor: pointer;
    margin: 2vw auto 1.1vw auto;
    padding: 6px .9vw 6px 0;
    width: 93%;
    color: #000;
    text-align: left;
    vertical-align: middle;
    border-radius: 9px;
    border: #ffbf1c 2px solid;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: .3vw .3vw #dec78b;
}

#estimateGuideBtn {
    cursor: pointer;
    margin: 2vw auto 1.1vw auto;
    padding: 7px .9vw 7px 0;
    width: 89%;
    text-align: left;
    vertical-align: middle;
    border-radius: 9px;
    border: #ffbf1c 2px solid;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: .3vw .3vw #dec78b;
}

#orderGuideBtn > label {
    font-size: 1.8vw;
    margin-left: -10px;
}

#downloadGuideBtn > label {
    font-size: 1.8vw;
    margin-left: .1vw;
}

#estimateGuideBtn > label {
    font-size: 1.8vw;
    margin-left: .1vw;
    cursor: pointer;
    display: block;
}

#address-pc {
    width: 620px;
    margin-left: 0;
    display: block;
}

#address-sm {
    width: 95%;
    margin-left: 0;
    display: none;
}

#overview-address-pc {
    width: 620px;
    margin-left: 0;
    display: block;
    margin-left: -3px;
}

#overview-address-md {
    display: none;
}

#howToUseAnchor {
    display: block;
    margin-top: 6vh;
}