@charset "UTF-8";
/*------------------------------------------------------
  LP共通スタイル
------------------------------------------------------*/
:root {
    --main-color: #178D39;
    --white: #FFFFFF;
    --bg-color: #f5f5f5;
    --bg-green: #E8F3EB;
    --bg-light-green: #E8F3E1;
    --yellow: #FDFF5B;
    --red: #e72334;
    --mail-orange: #FC5820;
    --line-green: #49B52A;
    --font-color: #123C1E;
    --font-family: "Noto Sans JP", sans-serif;
    --letter-spacing-wide: 0.05em;
}

/* 基準：PC 16px / SP 14px */
html { font-size: 16px; }
body {
    font-family: var(--font-family);
    color: var(--font-color);
    line-height: 1.6;
    font-weight: 500;
    font-size: 1rem; /* 16px */
    box-sizing: border-box;
}

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

a {
    transition: opacity .3s ease;
}

a:hover {
    opacity: 0.7;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid {
    display: grid;
}

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

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

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.wrap {
    overflow: hidden;
}

.inner {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.font-eng {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 400;
}

.dot-list li {
    display: table;
    margin-top: 8px;
}
.dot-list li:first-child {
    margin-top: 0;
}
.dot-list li > span {
    display: table-cell
}
.dot-list li > .mk {
    width: 15px;
    font-size: 0.5rem; /* 8px */
    color: var(--main-color);
}
.dot-list li > .text {
    font-weight: 500;
    font-size: 1rem; /* 16px */
}
.kome-list li {
    display: table;
}
.kome-list li > span {
    font-size: 0.875rem; /* 14px */
    display: table-cell;
}
.kome-list li > .kome {
    width: 18px;
}

/*------------------------------------------------------
    LP個別スタイル
------------------------------------------------------*/
/*--------------------
    footer
---------------------*/
.footer {
    background: var(--bg-green);
    padding: 100px 0;
}
.footer .flex .links {
    width: calc(708 * 100vw / 1440);
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}
.footer .flex > .item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}
.footer .flex > .item > .text {
    font-weight: 600;
    color: var(--main-color);
    letter-spacing: var(--letter-spacing-wide);
}
.footer .flex .links .item {
    width: calc(334 * 100vw / 1440);
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-start;
}
.footer .flex .links .item ul li {
    line-height: 2;
}
.footer .flex .links .item ul li a {
    padding-top: 10px;
    text-decoration: none;
    display: block;
    color: var(--font-color);
}
.footer .flex .links .item ul li:first-child a {
    padding-top: 0;
}

/*--------------------
    mv
---------------------*/
.mv {
    position: relative;
}
.mv img {
    max-width: none;
    width: 100%;
}

.mv .contact-only {
    padding: 0px 30px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    max-width: max-content;
    margin: 0 auto;
    box-shadow: 0px 0px 24px 0px #00000040;
}

.mv .contact-only .flex {
    gap: 8px;
}

.mv .contact-only .flex a.flex-1 {
    max-width: 399px;
}

.mv .contact-only .flex :not(a.flex-1) {
    max-width: 399px;
}


/*--------------------
    sec1
---------------------*/
.sec1 {
    padding: 100px 0 0;
    background: var(--bg-green);
}
.sec1 .flex {
    gap: calc(( 68 / 1440 ) * 100%);
}

.sec1 .col-1 .flex .item {
    width: 100%;
    height: auto;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 0px 16px 0px #178D3940;
    background: var(--white);
    border: 4px solid var(--main-color);
    border-radius: 50%;
    aspect-ratio:  1 / 1;
}
.sec1 .col-1 .flex .item .ttl {
    margin-top: 24px;
    padding: 10px 24px;
    line-height: 100%;
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    color: var(--yellow);
    letter-spacing: var(--letter-spacing-wide);
    text-align: center;
    border-radius: 32px;
    background: var(--main-color);
}
.sec1 .col-1 .flex .item .text {
    margin-top: 8px;
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
    color: var(--main-color);
}
.sec1 .col-1 .catch {
    padding: 100px 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.sec1 .col-1 .catch .left ,
.sec1 .col-1 .catch .right {
    width: 6rem;
}
.sec1 .col-1 .catch .left img ,
.sec1 .col-1 .catch .right img {
    max-width: auto;
    width: 100%;
}
.sec1 .col-1 .catch .right{
    transform: rotate(180deg);
}
.sec1 .col-1 .catch .texts {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}
.sec1 .col-1 .catch .texts .text:first-child {
    text-align: center;
    font-weight: 700;
    font-size: 3rem; /* 32px */
    color: var(--main-color);
}
.sec1 .col-1 .catch .texts .text:first-child > span {
    font-size: 2rem; /* 24px */
    color: var(--font-color);
}
.sec1 .col-1 .catch .texts .text-2 {
    text-align: center;
    padding: 0 16px;
    font-weight: 700;
    font-size: 3rem; /* 32px */
    background: var(--main-color);
    color: var(--yellow);
}
.sec1 .col-1 .catch .texts .text-3 {
    letter-spacing: var(--letter-spacing-wide);
    font-weight: 700;
    font-size: 3rem; /* 32px */
    color: var(--white);
    -webkit-text-stroke: 6px var(--main-color);
    text-stroke: 6px var(--main-color);
    paint-order: stroke;
}
.sec1 .col-2 {
    padding-bottom: 2px;
    background: url('../images/sec1_col2_bg.svg') no-repeat 50% 100%;
    background-size: 100% auto;
}
.sec1 .col-2 .text{
    position: relative;
    z-index: 10;
    width: max-content;
    margin: -110px auto 0;
    padding: 16px 24px;
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    border: 5px solid #E8F3EB;
    border-radius: 16px;
    background: var(--white);
}
.sec1 .col-2 .text .big {
    font-size: 2.5rem; /* 40px */
    color: var(--main-color);
}
.sec1 .col-2 .img img {
    margin: 0 auto;
}
.sec1 .col-3 {
    margin-top: -1px;
    padding: 80px 0 100px;
    background: #FFF url('../images/sec1_col2_bottom_bg.svg') no-repeat center top;
    background-size: 100% auto;
}
.sec1 .col-3 .heading2 {
    margin-top: 52px;
}
.sec1 .col-3 .heading2 img {
    margin: 0 auto;
    width: 594px;
}
.sec1 .col-3 .box {
    margin: 0 auto;
    max-width: 794px;
}
.sec1 .col-3 .heading2 + .box {
    margin-top: 32px;
}
.sec1 .col-3 .box .images {
    padding: 17px 8px;
    border-radius: 0 0 16px 16px;
    border: 4px solid var(--main-color);
    background: var(--white);
}
.sec1 .col-3 .box .images img {
    margin: 0 auto;
}
.sec1 .col-3 .box h3 {
    text-align: center;
    padding: 16px 8px;
    line-height: 1;
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    border-radius: 16px 16px 0 0;
    background: var(--main-color);
    color: var(--white);
}
.sec1 .col-3 .grid {
    margin: 40px auto 0;
    max-width: 794px;
    gap: 40px;
}
.sec1 .col-3 .grid .item:first-child .box .images img {
    height: 57px;
}
.sec1 .col-3 .grid .item .box {
    width: 100%;
}
.sec1 .col-3 .grid .item:last-child .box .images {
    padding: 14px 8px;
}

/*--------------------
    sec2
---------------------*/
.sec2 {
    padding: 100px 0;
    background: var(--bg-green);
}
.sec2 .title {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec2 .title h2 img {
    width: 562px;
}
.sec2 .title + .flex {
    margin-top: 64px;
}
.sec2 .flex {
    margin-top: 120px;
    gap: 40px;
    align-items: flex-start;
}
.sec2 .flex .texts {
    position: relative;
    min-width: 0;
    z-index: 10;
    width: calc(494 / 1440 * 100vw);
}
.sec2 .flex .texts::after {
  content:"";
  min-height: 424px;
  position:absolute;
  top: 15%;
  left: -80%;
  right: calc(50% - 50vw);
  background: var(--white);
  z-index: -1;
}
.sec2 .flex .texts .point {
    width: max-content;
    position: relative;
    padding: 0 32px 16px;
    margin-top: 0;
    line-height: 1;
    font-size: 3.5rem; /* 56px */
    font-weight: 700;
    border-radius: 9999px;
    background-color: var(--main-color);
    color: var(--white);
}
.sec2 .flex .texts .point::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: var(--main-color) transparent transparent;
  translate: -50% 100%;
}
.sec2 .flex .texts .heading3 {
    margin-top: 32px;
    font-size: 2rem; /* 32px */
    font-weight: 700;
    color: var(--main-color);
}
.sec2 .flex .texts .heading3 + .text {
    padding-top: 16px;
    margin-top: 32px;
    font-weight: 500;
    font-size: 1rem; /* 16px */
    border-top: 1px dashed rgba(225, 241, 230, 1)
}
.sec2 .flex .images {
    max-width: 700px;
    min-width: 0;
    line-height: 1;
    z-index: 100;
}
.sec2 .flex .images img {
    width: 100%;
    height: auto;
    border-radius: 32px;
}
.sec2 .flex:nth-child(even) .images {
    order: 1;
}
.sec2 .flex:nth-child(even) .texts {
    order: 2;
}
.sec2 .flex + .obj {
    margin-top: 80px;
}
.sec2 .obj + .catch img {
    margin: 60px auto 0;
}
.sec2 .catch + .grid {
    margin-top: calc(64px + 15px);
    gap: 24px;
}
.sec2 .catch + .grid .item {
    padding: 0 16px 24px;
    border-radius: 16px;
    background: var(--white);
}
.sec2 .catch + .grid .item .comment {
    width: 90%;
    text-align: center;
    position: relative;
    padding: 13px 0;
    margin: -15px auto 0;
    line-height: 1;
    font-weight: 500;
    font-size: 1rem; /* 16px */
    border-radius: 9999px;
    background-color: var(--main-color);
    color: var(--yellow);
}
.sec2 .catch + .grid .item .comment::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: var(--main-color) transparent transparent;
  translate: -50% 100%;
}
.sec2 .catch + .grid h3 {
    text-align: center;
    margin-top: 16px;
    font-weight: 700;
    font-size: 2rem; /* 32px */
    color: var(--main-color);
}
.sec2 .catch + .grid img {
    margin: 24px auto 0;
}
.sec2 .catch + .grid .text {
    text-align: center;
    margin-top: 24px;
    font-weight: 500;
}

/*--------------------
    sec3
---------------------*/
.sec3 {
    padding-top: 150px;
    background: var(--bg-green);
}
.sec3 .cover {
    position: relative;
    background: var(--white);
}
.sec3 .cover > .obj {
    position: absolute;
    z-index: 0;
    top: -100px;
    width: 541px;
    height: 541px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    content: '';
    border-radius: 50%;
    background: var(--white);
}
.sec3 .cover > .obj + .obj-2 {
    z-index: 10;
    position: absolute;
    top: -160px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.sec3 .cover  > .obj + .obj-2 img {
    margin: 0 auto;
}
.sec3 .title {
    text-align: center;
    position: relative;
    width: max-content;
    margin: 0 auto;
    z-index: 10;
}
.sec3 .title h2 {
    padding-bottom: 10px;
    font-size: 2.5rem; /* 40px */
    color: var(--main-color);
    background: url('../images/sec3_title_border.svg') no-repeat center bottom;
}
.sec3 .title h2 + .text {
    margin-top: 16px;
    font-weight: 500;
    font-size: 1.25rem; /* 24px */
}
.sec3 .inner {
    padding-top: 64px;
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
}
.sec3 .grid {
    gap: 40px;
}
.sec3 .item {
    padding: 6px;
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    background: var(--main-color);
}
.sec3 .item h3 {
    text-align: center;
    padding: 14px 0;
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    color: var(--white);
}
.sec3 .item .box {
    padding: 24px 16px;
    height: 90.5%;
    border-radius: 10px;
    background: var(--white);
}
.sec3 .item .box .line {
    display: flex;
    gap: 24px;
    align-items: center;
}
.sec3 .item .box img + .line {
    margin-top: 24px;
}
.sec3 .item .box .line{
    margin-top: 16px;
    font-size: 1.25rem; /* 20px */
}
.sec3 .item .box .line p:first-child {
    padding: 4px 10px;
    font-weight: 500;
    font-size: 1.25rem; /* 20px */
    color: var(--main-color);
    background: var(--bg-green);
}
.sec3 .item .box .line p:last-child {
    font-weight: 500;
}
.sec3 .item .box .line + .line p:last-child {
    letter-spacing: .34px;
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    color: var(--main-color);
}
.sec3 .item .box .cover {
    height: 31%;
}
.sec3 .item .box .cover p {
    position: relative;
    z-index: 10;
    max-width: max-content;
    margin: 30px 0 0 10px;
    padding: 2px 16px;
    font-weight: 500;
    color: var(--white);
    border-radius: 15px;
    background: var(--main-color);
}
.sec3 .item .box .cover .dot-list {
    height: 100%;
    margin-top: -10px;
    padding: 26px 8px;
    border-radius: 16px;
    background: var(--bg-green);
}

.sec3 .item-full {
    margin-top: 64px;
}

.sec3 .item-full + .obj {
    margin-top: 40px;
}

.sec3 .item-full + .obj img {
    margin: 0 auto;
}

.sec3 .col-2 {
    padding: 24px;
    margin-top: 40px;
    border-radius: 16px;
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.25);
}
.sec3 .col-2 h3 {
    text-align: center;
    font-size: 1.5rem; /* 24px */
}
.sec3 .col-2 h3 {
    font-size: 1.5rem; /* 24px */
    color: var(--main-color);
}
.sec3 .col-2 .flex {
    margin-top: 40px;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.sec3 .col-2 .flex .image {
    padding: 26px;
    width: 156px;
    height: 156px;
    display: flex;
    justify-self: center;
    align-items: center;
    flex-direction: column;
    border-radius: 50%;
    background: var(--bg-green);
}
.sec3 .col-2 .flex .image + p {
    padding: 0 16px;
    width: max-content;
    margin: -8px auto 0;
    font-weight: 600;
    color: var(--white);
    border-radius: 15px;
    background: var(--main-color);
}
.sec3 .col-2 .kome-list {
    width: max-content;
    margin: 40px auto 0;
}
.sec3 .col-3 {
    padding: 100px 0;
    background-color: var(--bg-green);
    background-image: url('../images/sec3_col3_bg.svg'), url('../images/sec3_col3_bg_bottom.svg');
    background-repeat: no-repeat;
    background-size: cover, 100% auto;
    background-position: center top, center bottom;
}
.sec3 .col-3 .inner {
    padding: 75px 60px 86px;
    background: url('../images/sec3_col3_cnt_bg.webp') no-repeat top center;
    background-size: 100% 100%;
}
.sec3 .col-3 .inner .cover {
    width: 100%;
    padding: 24px 24px 40px;
    border-radius: 16px;
    background: var(--bg-light-green);
}
.sec3 .col-3 .inner .cover .title {
    background: linear-gradient(transparent 80%, var(--yellow) 80%);
}
.sec3 .col-3 .inner .cover .title img {
    width: 470px;
}
.sec3 .col-3 .inner .cover .title + .text{
    text-align: center;
    margin-top: 24px;
    font-weight: 500;
}
.sec3 .col-3 .inner .cover .flex {
    margin-top: 24px;
    justify-content: center;
    align-items: center;
    gap: 0;
}
.sec3 .col-3 .inner .cover .flex .cnt {
    padding: 24px;
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    background: var(--white);
}
.sec3 .col-3 .inner .cover .flex .parts {
    position: relative;
    z-index: 10;
    width: 40px;
    height: 40px;
    margin: 0 -8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    color: var(--white);
    border-radius: 20px;
    background: var(--main-color);
}
.sec3 .col-3 .obj img {
    margin: 0 auto;
}
.sec3 .col-3 .box {
    padding: 60px;
    margin-top: -40px;
    box-shadow: 2px 2px 8px 0px #00000040;
    border-radius: 16px;
}
.sec3 .col-3 .box .flex {
    justify-content: center;
    align-items: center;
    gap: 25px;
}
.sec3 .col-3 .box .flex .cnt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sec3 .col-3 .box .flex .cnt .ttl {
    padding: 4px 16px;
    letter-spacing: var(--letter-spacing-wide);
    font-size: 1.25rem; /* 20px */
    font-weight: 500;
    background: var(--bg-green);
}

.sec3 .col-3 .box .flex .cnt .ttl-green {
    background: var(--main-color);
    color: var(--yellow);
}
.sec3 .col-3 .box .flex .parts {
    position: relative;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    color: var(--white);
    border-radius: 20px;
    background: var(--main-color);
    box-shadow: 0px 1px 4px 0px #00000040;
}
.sec3 .col-3 .box .flex .price {
    width: max-content;
    margin-top: 8px;
    line-height: 1;
    font-weight: 600;
    color: var(--main-color);
}
.sec3 .col-3 .box .flex .price.marker {
    padding: 0 8px;
    background: linear-gradient(transparent 85%, var(--yellow) 85%);
}
.sec3 .col-3 .box .flex .price .big {
    font-size: 3.5rem; /* 56px */
}

/*--------------------
    sec4
---------------------*/
.sec4 {
    padding: 100px 0;
    background: url('../images/sec4_bg.svg') no-repeat center center;
    background-size: cover;
}
.sec4 .title {
    margin: 0 auto;
    max-width: max-content;
}
.sec4 .title > img {
    width: 21.5%;
}
.sec4 .title .text-curve {
    max-width: 260px;
    margin: 1rem auto 0;
}
.sec4 .title img {
    margin: 0 auto;
}
.sec4 .title h2 {
    padding: 6px 24px;
    text-align: center;
    margin-top: 24px;
    font-size: 2rem; /* 32px */
    border-top :1px solid var(--font-color);
    border-bottom :1px solid var(--font-color);
    background: var(--yellow);
}
.sec4 #sec4 {
    position: relative;
    overflow: visible; 
    margin-top: 64px;
    padding: 0 0 128px;
}
.sec4 #sec4 .splide__track {
    padding-bottom: 6px;
}
.sec4 #sec4 .splide__arrows {
    height: 64px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.sec4 #sec4 .splide__arrow {
    width: 64px;
    height: 64px;
    opacity: 1;
}
.sec4 #sec4 .splide__pagination {
    bottom: 25px;
    left: 0;
    right: 0;
    width: max-content;
    margin: 0 auto;
}
.sec4 #sec4 .splide__pagination__page {
    opacity: 1;
    margin: 0 8px;
}
.sec4 #sec4 .splide__pagination__page.is-active {
    background: var(--main-color);
    transform: none;
}
.sec4 #sec4 .splide__arrow--next  {
    right: 35vw;
    background: url('../images/swiper_arrow_next.svg') no-repeat center center;
}
.sec4 #sec4 .splide__arrow--prev  {
    left: 35vw;
    background: url('../images/swiper_arrow_prev.svg') no-repeat center center;
}
.sec4 #sec4 .swiper-button-next::after ,
.sec4 #sec4 .splide__arrow--prev::after {
    content: '';
}
.sec4 #sec4 .splide__arrow--next > svg ,
.sec4 #sec4 .splide__arrow--prev > svg{
    display: none;
}
.sec4 #sec4 .item {
    width: auto;
    max-width: 652px;
    padding: 24px 16px;
    box-shadow: 3px 3px 8px 0px #00000040;
    border-radius: 16px;
    background: var(--bg-green);
}
.sec4 #sec4 .item .head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.sec4 #sec4 .item .head > div {
    border-radius: 8px;
    position: relative;
}
.sec4 #sec4 .item .head .arrow {
    border-radius: 0;
    min-width: 12px;
}
.sec4 #sec4 .item .head .arrow img {
    width: 100%;
    height: auto;
}
.sec4 #sec4 .item .head > div > .before ,
.sec4 #sec4 .item .head > div > .after {
    padding: 0 14px 14px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--main-color);
    font-weight: 500;
    background: url('../images/sec4_head_ba_bg.svg') no-repeat center center;
    background-size: auto 100%;
}
.sec4 #sec4 .item .head .img {
    border-radius: 16px;
    border: 8px solid var(--white);
}
.sec4 #sec4 .item .head .img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 28 / 27;
}
.sec4 #sec4 .item .body .price {
    padding-bottom: 16px;
    margin-top: 35px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    border-bottom: 3px dashed #FFFFFF;
}
.sec4 #sec4 .item .body .price > span {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    color: var(--main-color);
    -webkit-text-stroke: 4px var(--white);
    text-stroke: 4px var(--white);
    paint-order: stroke;
}
.sec4 #sec4 .item .body .price > .price-text {
    line-height: 1;
    font-size: 2.5rem; /* 40px */
    -webkit-text-stroke: 4px var(--white);
    text-stroke: 4px var(--white);
    paint-order: stroke;
}
.sec4 #sec4 .item .body .line {
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}
.sec4 #sec4 .item .body .line .ttl {
    text-align: center;
    padding: 3px 32px;
    width: 133px;
    line-height: 1.4;
    border-radius: 15px;
    background: var(--main-color);
    color: var(--white);
    font-weight: 500;
}
.sec4 #sec4 .item .body .line .ttl + p {
    font-weight: 500;
}


/*--------------------
    articles
---------------------*/
.articles {
    padding: 100px 0;
    background: var(--bg-green);
}
.articles .contact {
    margin-bottom: 100px;
    border-radius: 16px;
    box-shadow: 2px 2px 4px 0px #0000004D;
}
.articles .contact .head {
    position: relative;
    padding: 70px;
    min-height: 231px;
    height: auto;
    border-radius: 16px 16px 0  0;
    background: var(--main-color);
}
.articles .contact .head .texts {
    width: 72%;
}
.articles .contact .head .texts .ttl {
    letter-spacing: var(--letter-spacing-wide);
    font-weight: 700;
    font-size: 2rem; /* 32px */
    color: var(--yellow);
}
.articles .contact .head .texts .text {
    letter-spacing: var(--letter-spacing-wide);
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    color: var(--white);
}
.articles .contact .head .images {
    position: absolute;
    right: 76px;
    top: -59px;
}
.articles .contact .body {
    padding: 50px 70px;
    border-radius: 0 0 16px 16px;
    background: var(--white);
}
.articles .contact .body .text.is-Pc {
    margin-left: 45%;
    display: block;
    max-width: 523px;
}
.articles .contact .body .text.is-Sp {
    display: none;
}
.articles .contact .body .text img {
    width: 100%;
}
.articles .contact .body .flex {
    align-items: flex-end;
    gap: 0;
}

.articles .permit {
    margin-top: 252px;
    position: relative;
}

.articles .permit .cover {
    z-index: 10;
    position: relative;
    padding: 40px;
    border-radius: 16px;
    background: var(--white);
}

.articles .permit .cover .texts .catch {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: var(--main-color);
}

.articles .permit .cover .texts .catch + .text {
    margin-top: 24px;
    line-height: 2;
}

.articles .permit .cover .texts .text {
    margin-top: 10px;
}

.articles .permit .obj {
    position: absolute;
    top: -50px;
    left: -50px;
}

.articles .permit .obj-2 {
    position: absolute;
    bottom: -50px;
    right: -50px;
    transform: rotate(180deg);
}

/*--------------------
    sec5
---------------------*/
.sec5 {
    position: relative;
    padding: 100px 0 200px;
    background: url('../images/sec5_bg.svg') no-repeat top center;
    background-size: cover;
}
.sec5::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: '';
    width: 59px;
    height: 29px;
    background: url('../images/sec5_bg_top.svg') no-repeat center center;
    background-size: 100% auto ;
}
.sec5::after {
    position: absolute;
    line-height: 0.8;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    content: '';
    width: 100%;
    height: 100px;
    background: url('../images/sec5_bg_bottom.svg') repeat-x center bottom;
    background-size: contain;
}
.sec5 .en {
    padding: 3px 24px;
    width: max-content;
    margin: 0 auto;
    letter-spacing: .34px;
    color: var(--white);
    font-weight: 700;
    border-radius: 15px;
    background: var(--main-color);
}
.sec5 h2 {
    margin-top: 16px;
}
.sec5 h2 img {
    margin: 0 auto;
}
.sec5 h2 + .text {
    text-align: center;
    margin-top: 16px;
}
.sec5 h2 + .text + .grid {
    margin: 64px 0 0;
    gap: 24px;
}

/*--------------------
    sec6
---------------------*/
.sec6 {
    position: relative;
    padding: 100px 0 200px;
    background-color: var(--bg-green);
}
.sec6 .col-1 {
    padding-bottom: 100px;
}
.sec6 .col-1 .title ,
.sec6 .col-2 .title {
    max-width: max-content;
    margin: 0 auto;
}
.sec6 .col-1 .title .parts img ,
.sec6 .col-2 .title .parts img {
    margin: 0 auto;
}
.sec6 .col-1 .title .line ,
.sec6 .col-2 .title .line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.sec6 .col-1 .title .line h2 ,
.sec6 .col-2 .title .line h2 {
    font-size: 2rem; /* 32px */
}
.sec6 .col-1 .title + .flow ,
.sec6 .col-2 .title + .flow {
    margin-top: 60px;
    width: 100%;
}
.sec6 .col-1 .flow {
    padding: 12px 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    border-radius: 16px;
    background: var(--white);
}
.sec6 .col-1 .flow .step {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white);
    border-radius: 50%;
    background: var(--main-color);
}
.sec6 .col-1 .flow .step > span:first-child {
    line-height: 1;
    font-weight: 700;
    font-size: 1rem; /* 16px */
}
.sec6 .col-1 .flow .step > span:last-child {
    line-height: 1;
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
}
.sec6 .col-1 .flow .texts h4 {
    font-size: 1.25rem; /* 20px */
    color: var(--main-color);
}
.sec6 .col-1 .flow .texts .text {
    margin-top: 16px;
}
.sec6 .col-1 .flow + .obj {
    padding: 16px 0;
}
.sec6 .col-2 {
    padding: 100px 0;
}
.sec6 .col-2 .flex {
    margin-top: 64px;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
}
.sec6 .col-2 .flex .item {
    width: 30%;
    padding: 24px;
    border-radius: 16px;
    background: var(--white);
}
.sec6 .col-2 .flex .obj {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
}
.sec6 .col-2 .flex .step {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: var(--white);
    border-radius: 50%;
    background: var(--main-color);
}
.sec6 .col-2 .flex .step > span:first-child {
    line-height: 1;
    font-weight: 700;
    font-size: 1rem; /* 16px */
}
.sec6 .col-2 .flex .step > span:last-child {
    line-height: 1;
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
}
.sec6 .col-2 .flex .step + img {
    margin: 24px auto 0;
}
.sec6 .col-2 .flex h3 {
    margin: 24px auto 0;
    font-size: 1.25rem; /* 20px */
    font-weight: 700;
    color: var(--main-color);
}
.sec6 .col-2 .flex h3 + .text {
    margin-top: 16px;
}
.sec6 .box-videos {
    padding: 100px 0;
}
.sec6 .box-videos .ttl {
    position: relative;
    padding: 28px 110px;
    max-width: max-content;
    margin: 0 auto;
    font-size: 1.5rem; /* 24px */
    border-radius: 50px;
    background: var(--main-color);
    color: var(--white);
}
.sec6 .box-videos .ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 10px 8px 0 8px;
    border-color: var(--main-color) transparent transparent;
    translate: -50% 100%;
}
.sec6 .box-videos .ttl  + .flex {
    margin-top: 32px;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.sec6 .box-videos .ttl  + .flex .item {
  flex: 1 1 320px;
  max-width: 600px;
}
.sec6 .box-videos .ttl  + .flex .item iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  border: 8px solid var(--white);
  border-radius: 24px;
}
.sec6 .col-access {
    padding: 100px 0;
}
.sec6 .col-access .flex {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}
.sec6 .col-access .map {
    border: 8px solid var(--white);
}
.sec6 .col-access .texts {
    width: 48%;
}
.sec6 .col-access .texts .title .obj {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.sec6 .col-access .texts .title .obj::before {
    content: '';
    height: 3px;
    width: 44%;
    display: block;
    background: var(--main-color);
}
.sec6 .col-access .texts .title .obj::after {
    content: '';
    height: 3px;
    width: 44%;
    display: block;
    background: var(--main-color);
}
.sec6 .col-access .texts .title h2 {
    text-align: center;
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    color: var(--main-color);
}
.sec6 .col-access .texts .line {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}
.sec6 .col-access .texts .line > p.ttl {
    text-align: center;
    width: 166px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 15px;
    background: var(--white);
}
.sec6 .col-access .texts .title + .line {
    padding-bottom: 16px;
    margin-top: 56px;
    border-bottom: 1px dashed var(--white);
}
.sec6 .col-access .texts .title + .line > .text {
    font-size: 1.5rem; /* 24px */
}
.sec6 .col-access .texts .line > .text a {
    text-decoration: none;
    color: var(--font-color);
    font-size: 1.5rem; /* 24px */
}
.sec6 .col-access .texts .line + .line {
    margin-top: 16px;
}
.sec6 .col-3  {
    padding-top: 100px;
}
.sec6 .col-3 .title img {
    margin: 0 auto; 
}
.sec6 .col-3 .card {
    padding: 16px;
    margin-top: 56px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    box-shadow: 2px 2px 8px 0px #00000033;
    border: 1px solid var(--main-color);
    border-radius: 16px;
    background: var(--white);
}
.sec6 .col-3 .card > img {
    width: 100%;
    flex: 1 1 0;
    height: auto;
    min-width: 280px;
    border-radius: 8px;
    aspect-ratio: 720 / 371;
    object-fit: cover;
}
.sec6 .col-3 .card .texts {
    width: 38%;
    flex: 0 0 38%;
}
.sec6 .col-3 .card .step {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec6 .col-3 .card .step span {
    width: max-content;
    text-align: center;
    padding: 4px 22px 10px;
    line-height: 1;
    font-size: 2rem;
    white-space: nowrap;
    color: var(--white);
    border-radius: 25px;
    background: var(--main-color);
}
.sec6 .col-3 .card .step::before {
    content: '';
    width: 32%;
    height: 2px;
    background: var(--main-color);
    display: block;
}
.sec6 .col-3 .card .step::after {
    content: '';
    width: 32%;
    height: 2px;
    background: var(--main-color);
    display: block;
}
.sec6 .col-3 .card h2 {
    text-align: center;
    margin-top: 16px;
    font-size: 2.375rem; /* 38px */
    color: var(--main-color);
}

/*--------------------
    sec7
---------------------*/
.sec7 {
    position: relative;
    padding: calc(100 * 100vw / 1440) 0 calc(100 * 100vw / 1440);
    background: var(--bg-green);
}
.sec7 .cover {
    position: relative;
    z-index: 100;
    margin-bottom: 100px;
    padding-bottom: 100px;
    background: var(--white);
}
.sec7::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100 * 100vw / 1440);
    background: url('../images/sec7_bg_top.svg') no-repeat center center;
    background-size: contain;
}
.sec7::after {
    position: absolute;
    transform: rotate(180deg);
    content: '';
    bottom: 100px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100 * 100vw / 1440);
    background: url('../images/sec7_bg_top.svg') no-repeat center center;
    background-size: 100% 100%;
}
.sec7 .title {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.sec7 .title h2 {
    padding: 10px 113px;
    font-size: 2rem; /* 32px */
    font-weight: 700;
    color: var(--white);
    border-radius: 35px;
    background: var(--main-color);
}
.sec7 .title h2 + .logo {
    max-width: 128px;
    margin-left: -80px;
}
.sec7 .flex {
    margin-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E8F3EB;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 47px;
}
.sec7 .flex .texts h3 {
    max-width: max-content;
    padding: 8px 16px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 8px;
    background: var(--bg-green);
}
.sec7 .flex .texts h3 + .text {
    margin-top: 24px;
}
.sec7 .flex .texts .line:first-child {
    margin-top: 16px;
}
.sec7 .flex .texts .line {
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    color: var(--main-color);
}
.sec7 .flex .texts .line > span {
    font-weight: 600;
}
.sec7 .flex img {
    flex: 0 1 330px;
    width: 330px;
}

/*--------------------
    sec-faq
---------------------*/
.sec-faq {
    position: relative;
    padding: 100px 0;
    background: var(--bg-green);
}
.sec-faq .inner {
    padding: 40px 40px 100px;
    border-radius: 16px;
    background: var(--white);
}
.sec-faq .title {
    padding: 70px 0 50px;
    position: relative;
    z-index: 10;
}
.sec-faq .title .obj {
    position: absolute;
    left: 15vw;
    top: 0;
    max-width: max-content;
    font-weight: 700;
    font-size: 10.9375rem; /* 175px */
    line-height: .9;
    color: var(--bg-green);
}
.sec-faq .title h2 {
    position: relative;
    z-index: 10;
    text-align: center;
    line-height: 1;
    font-weight: 700;
    font-size: 2rem; /* 32px */
    color: var(--main-color);
}
.sec-faq .faq-cnt {
    position: relative;
    z-index: 100;
    margin-top: 64px;
    border-radius: 8px;
    box-shadow: 2px 2px 8px 0px #00000040;
}
.sec-faq .cover .title +  .faq-cnt {
    margin-top: 10px;
}
.sec-faq .faq-cnt .q-line{
    padding: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    border-radius: 8px;
    background: var(--bg-green);
    cursor: pointer;
}
.sec-faq .faq-cnt .q-line .arrow {
    margin-left: auto;
}
.sec-faq .faq-cnt .q-line .question {
    flex: 0 0 57px;
    width: 57px;
    height: 57px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.4375rem; /* 23px */
    font-weight: 700;
    color: var(--white);
    background: var(--main-color);
    border-radius: 50%;
}
.sec-faq .faq-cnt .a-line{
    padding: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    border-radius: 0 0 8px 8px;
    background: var(--white);
}
.sec-faq .faq-cnt .a-line .answer {
    flex: 0 0 57px;
    width: 57px;
    height: 57px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.4375rem; /* 23px */
    font-weight: 700;
    color: var(--main-color);
    background: var(--bg-green);
    border-radius: 50%;
}
.sec-faq .faq-cnt .a-line .text {
    font-weight: 400;
}
.sec-faq .faq-cnt .q-line .arrow img{
  transition: transform .25s ease;
}
.sec-faq .faq-cnt.is-open .q-line {
    border-radius: 8px 8px 0 0;
}
.sec-faq .faq-cnt .q-line .arrow img{
  transform: rotate(180deg);
}
.sec-faq .faq-cnt.is-open .q-line .arrow img{
  transform: rotate(0);
}

/*--------------------
    sec8
---------------------*/
.sec8 {
    position: relative;
    padding: 100px 0;
}
.sec8 .obj {
    position: absolute;
    right: calc(80 * 100vw / 1440);
    bottom: 0;
}
.sec8 .flex {
    gap: 96px;
    justify-content: flex-start;
    align-items: flex-start;
}
.sec8 .flex .texts {
    flex-grow: 1;
}
.sec8 .flex .texts .en {
    color: var(--main-color);
    font-weight: 700;
}
.sec8 .flex .texts h2 {
    font-size: 2rem; /* 32px */
    color: var(--main-color);
}
.sec8 h2 + .line {
    margin-top: 64px;
}
.sec8 .line {
    margin-top: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    margin-top: 16px;
    padding-bottom: 6px;
    border-bottom: 1px solid #E8F3EB;
}
.sec8 .line:last-child {
    border: none;
}
.sec8 .line .ttl {
    width: 109px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}
.sec8 .line > .text {
    flex: 1 0 auto;
    line-height: 1.9;
}
.sec8 .line .ttl > span {
    color: var(--bg-green);
}
.sec8 .line .ttl > .text {
    color: var(--font-color);
}

/*--------------------
    sec9
---------------------*/
.sec9 {
    padding: 150px 0 100px;
    background: var(--bg-green);
}
.sec9 .title {
    position: relative;
    width: calc(576 * 100vw / 1440);
}
.sec9 .obj {
    position: absolute;
    top: -80px;
    left: calc(96 * 100vw / 1440);
}
.sec9 .title h2 {
    padding: 17px 0 17px calc(200 * 100vw / 1440);
    letter-spacing: var(--letter-spacing-wide);
    font-size: 2rem; /* 32px */
    color: var(--white);
    border-radius: 0 8px 8px 0;
    background: var(--main-color);
}
.sec9 .wrap {
    padding: 100px 0;
    margin-top: -45px;
    background: var(--white) url('../images/sec9_bg.webp') no-repeat 90% 50%;
    background-size: 42% auto;
}
.sec9 .wrap .flex .texts {
    width: max-content;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 64px;
}
.sec9 .wrap .flex .texts .area {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
}
.sec9 .wrap .caution {
    padding: 10px;
    text-align: center;
    margin-top: 49px;
    letter-spacing: var(--letter-spacing-wide);
    font-weight: 600;
    color: var(--main-color);
    width: calc(660 * 100vw / 1440);
    background: var(--bg-green);
}

.contact-only {
    margin-top: 64px;
    padding: 8px 55px;
    border-radius: 100px;
    background: var(--white);
    justify-content: center;
    gap: 40px;
}

.contact-only .flex {
    justify-content: center;
    align-items: flex-end;
    gap: 0;
}

/*---------------------------
    お問い合わフォーム
---------------------------*/
.sec-form {
    padding: 100px 0;
}

.sec-form .inner {
    max-width: 1000px;
}

.sec-form .title {
    text-align: center;
}

.sec-form .title .en {
    padding: 3px 24px;
    width: max-content;
    margin: 0 auto;
    letter-spacing: .34px;
    color: var(--white);
    font-weight: 700;
    border-radius: 15px;
    background: var(--main-color);
}

.sec-form .title h2 {
    margin-top: 12px;
    font-size: 2.5rem;
    color: var(--main-color);
}

.sec-form .title h2 + .text {
    margin-top: 16px;
    font-weight: 500;
    font-size: 1.25rem;
}

.sec-form .formTable {
    width: 100%;
    margin-top: 60px;
    border-collapse: collapse;
}

.sec-form .formTable tr:nth-child(even){
    background: var(--bg-color);
}

.sec-form .formTable th,
.sec-form .formTable td {
    padding: 30px 20px;
    font-size: 1rem;
}

.sec-form .formTable th {
    padding-right: 20px;
    text-align: left;
    width: 30%;
}

.sec-form .formTable th > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.sec-form .formTable th .required {
    padding: 4px 8px;
    line-height: 1.5;
    font-size: .75rem;
    border-radius: 4px;
    color: var(--white);
    background: var(--red);
}

.sec-form .formTable td {
    width: 70%;
}

.sec-form .formTable td .radio_label:first-child {
    margin-top: 0;
}

.sec-form .formTable td .c-announce {
    margin-top: 8px;
    font-size: .825rem;
}

.sec-form .formTable td input[type="text"] ,
.sec-form .formTable td input[type="tel"] ,
.sec-form .formTable td input[type="email"] ,
.sec-form .formTable td textarea ,
.sec-form .formTable td select {
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    border: 1px solid #CCC;
}

.sec-form .formTable td input[type="text"].input-postalcode {
    width: 50%;
}

.sec-form .formTable td.col-2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.sec-form .formTable td.col-2 .col-2__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
}

.sec-form .formTable td.col-2 .col-2__item .ttl {
    width: 50px;
    font-size: .825rem;
}

.sec-form .formTable td .col-1 .ttl {
    font-size: .825rem;
}

.sec-form .formTable td .v-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.sec-form .formTable td .radio_label {
    margin-top: 8px;
}

.sec-form .formTable td .radio_label input[type="radio"] {
    position: relative;
    margin-right: 10px;
    display: inline-block;
}

.sec-form .formTable td .col-1 .ttl + select {
    margin-top: 10px;
}

.sec-form .formTable td .col-1 .ttl + input {
    margin-top: 10px;
}

.sec-form .formTable td .col-1 {
    margin-top: 24px;
}

.sec-form .formTable td .col-1__prefecture {
    margin-top: 0;
    width: 50%;
}

.sec-form .c-buttons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec-form .c-buttons input[type="submit"]{
    transition: background .3s ease, border .3s ease, color .3s ease;
    padding: 15px 20px;
    min-width: 300px;
    font-size: 1rem;
    color: var(--white);
    cursor: pointer;
    border-radius: 30px;
    border: none;
    border: 2px solid var(--main-color);
    background: var(--main-color);
}

.sec-form .radio_label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sec-form .radio_label input[type="radio"]{
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: grid;
  place-content: center;
  margin: 0;
  cursor: pointer;
}

.sec-form .radio_label input[type="radio"]::before{
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    transform: scale(0);
    transition: transform .12s ease-in-out;
}

.sec-form .radio_label input[type="radio"]:checked {
    background: var(--white);
    border-color: var(--main-color);
}

.sec-form .radio_label input[type="radio"]:checked::before {
    position: absolute;
    top: 3px;
    left: 3px;
    transform: scale(1.2);
    display: block;
    background: var(--main-color);
}

.sec-form .radio_label input[type="radio"]:focus-visible {
  outline: 2px solid var(--main-color);
  outline-offset: 2px;
}

/*---------------------------
    Thanks ページ
---------------------------*/

.main-thanks {
    padding: 100px 0 160px;
}

.main-thanks hgroup.title {
    text-align: center;
}
.main-thanks hgroup.title .title_img {
    margin: 0 auto;
}
.main-thanks hgroup.title .title_h2 {
    margin-top: 16px;
    font-size: 2rem;
}
.main-thanks hgroup.title .title_h2 {
    margin-top: 16px;
    font-size: 2rem;
}

.main-thanks .texts {
    text-align: center;
    margin-top: 60px;
}

.main-thanks .texts .text {
    line-height: 1.8;
    font-size: 1.1rem;
}

.main-thanks .c-buttons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-thanks .c-buttons .button {
    text-align: center;
    text-decoration: none;
    transition: background .3s ease, border .3s ease, color .3s ease;
    padding: 15px 20px;
    min-width: 300px;
    font-size: 1rem;
    color: var(--white);
    cursor: pointer;
    border-radius: 30px;
    border: none;
    border: 2px solid var(--main-color);
    background: var(--main-color);
}


/*---------------------------
    PC限定
---------------------------*/
@media (min-width: 768px){

    .sec-form .c-buttons input[type="submit"]:hover {
        color: var(--font-color);
        background: var(--white);
        border: 2px solid var(--main-color);
    }
    .main-thanks .c-buttons .button:hover {
        color: var(--font-color);
        background: var(--white);
        border: 2px solid var(--main-color);
    }

    .fixed-nav__pc {
        position: relative;
        z-index: 9999;
    }

    .fixed-nav__pc .closed-button {
        position: absolute;
        left: -10px;
        top: -10px;
        width: 30px;
        cursor: pointer;
    }

    .fixed-nav__pc {
        position: fixed;
        right: 0;
        bottom: 41px;
        background-color: var(--white);
        border-radius: 10px 0 0 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
        padding: 21px 14px 14px;
        display: grid;
        gap: 14px;
        width: max-content;
    }

    .fixed-nav__pc a {
        text-decoration: none;
        color: var(--font-color);
    }

    .fixed-nav__pc .color-red {
        color: var(--red);
    }

    .fixed-nav__pc .tel:hover .hover-hidden {
        opacity: 0;
    }

    .fixed-nav__pc .tel .cap {
        text-align: center;
        line-height: 1.4;
        font-size: 14px;
        font-weight: 600;
    }
    .fixed-nav__pc .tel .num {
        text-align: center;
        line-height: 1.4;
        color: var(--red);
        font-size: 29px;
        font-weight: 600;
    }
    .fixed-nav__pc .tel .time {
        text-align: center;
        line-height: 1.4;
        font-size: 10px;
        font-weight: 500;
    }

    .fixed-nav__pc .tel .cap em {
        font-style: normal;
    }

    .fixed-nav__pc .line {
        padding: 8px;
        font-weight: 500;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: #fff;
        border-radius: 5px;
        background: var(--line-green);
    }
    .fixed-nav__pc .line .text {
        font-size: 10px;
    }
    .fixed-nav__pc .line .text > span {
        font-size: 12px;
        font-weight: 600;
    }
    .fixed-nav__pc .line .big {
        font-size: 17px;
        font-weight: 600;
    }
    .fixed-nav__pc .mail {
        padding: 8px;
        font-weight: 500;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: #fff;
        border-radius: 5px;
        background: var(--mail-orange);
    }
    .fixed-nav__pc .mail .text {
        font-size: 10px;
    }
    .fixed-nav__pc .mail .text > span {
        font-size: 12px;
        font-weight: 600;
    }
    .fixed-nav__pc .mail .big {
        font-size: 17px;
        font-weight: 600;
    }

    .fixed-nav__sp {
        display: none;
    }
    .is-Sp { display: none; }
    .is-Pc { display: inline; }
}