@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Kaisei+Opti:wght@400;500;700&family=Kosugi+Maru&display=swap');

/*-----------------------
 全体共通 
-----------------------*/
* {
    margin: 0;
    padding: 0;
    list-style-type: none;
    border: none;
    border-radius: 0;
    font-style: normal;
    box-sizing: border-box;
    -webkit-appearance: none;
}
html {
    font-size: 100%;
}
body {
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: #333;
    word-break: break-word;
    overflow-x: hidden;
}
p {
    line-height: 2;
}
a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    opacity: 0.7;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
section { 
    position: relative;
    padding: 100px 0;
}
.subsec_area:not(:last-of-type) {
    margin-bottom: 100px;
}
.l_cont {
    max-width: 1280px;
    margin: 200px auto 0;
}
.m_cont {
    max-width: 960px;
    margin: 200px auto 0;
}
.yellow_bg {
    background-color: #FEF0A3;
    margin-left: -100px;
    margin-right: -100px;
    padding: 30px 20px;
}
.res_txt {
    text-align: center;
    margin-bottom: 100px;
}
.orange_marker {
    background-color: #FDE092;
}
.large_txt {
    position: relative;
    font-family: 'kaisei Opti', serif;
    font-size: 3em;
    font-weight: 700;
    color: #4A67C7;
    line-height: 1.8;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}
.white_bg {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
}
.comment {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 70px;
}
#sec04 .comment, #sec06 .comment {
    flex-direction: row-reverse;
}
.comment > div {
    position: relative;
    width: 800px;
    padding: 30px 20px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 1.1em;
    font-weight: 500;
}
.comment > div::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 20px solid transparent;
}
.comment > div.orange_sb::after, .comment > div.pink_sb::after  {
    left: -40px;
}
.strong {
    font-size: 1.3em;
    font-weight: 700;
}
.comment img {
    width: 300px;
    transform: rotate(5deg);
}
#sec04 .comment img, #sec06 .comment img {
    transform: scaleX(-1) rotate(5deg);
}
.bold {
    display: block;
    font-weight: 700;
    font-size: 1.2em;
}
.to_contact {
    position: relative;
    display: block;
    width: 100%;
    margin: 70px auto 0;
    background-color: #4A67C7;
    color: #fff;
    border-radius: 30px;
    padding: 20px 50px 20px 10px;
    text-align: center;
    font-size: 1.1em;
}
.to_contact::before, .to_contact::after {
    display: inline-block;
    content: '';
    position: absolute;
}
.to_contact::before {
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
}
.to_contact::after {
    top: 55.5%;
    transform: translateY(-55%);
    right: 7.2%;
    border: 7px solid transparent;
    border-top: 10px solid #4A67C7;
}

@media screen and (max-width: 1280px) {
    body{
        width: 1280px;
        overflow: auto;
    }
    .l_cont {
        margin: 200px 10px 0;
    }    
}
@media screen and (min-width: 481px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
    }
    .to_contact {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    body {
        width: 100%;
    }
    p {
        line-height: 1.8;
    }
    section {
        padding: 80px 0;
    }
    .subsec_area:not(:last-of-type) {
        margin-bottom: 70px;
    }
    .l_cont, .m_cont {
        margin: 150px 10px 0;
    }
    .res_txt {
        text-align: left;
        margin-bottom: 70px;
    }
    .large_txt {
        font-size: 1.5em;
        padding: 0 10px;
    }
    .white_bg {
        padding: 30px 10px;
    }
    .bold {
        font-size: 1.1em;
    }
    .comment, #sec04 .comment, #sec06 .comment {
        flex-direction: column;
        padding: 0 10px;
    }
    .comment > div {
        width: 100%;
        padding: 20px 15px;
        font-size: 1em;
        text-align: left;
    }
    .comment > div br{
        display: none;
    }
    .comment > div::after {
        top: auto;
        left: 50%;
        bottom: -40px;
        transform: translateX(-50%);
    }
    .comment > div.orange_sb::after, .comment > div.pink_sb::after  {
        left: 50%;
    }
    .strong {
        font-size: 1.2em;
    }
    .comment img {
        width: 250px;
        margin: 30px 20px 0 auto;
    }
    #sec04 .comment img, #sec06 .comment img {
        margin: 30px auto 0 20px;
    }
}


/* 見出し */
.headline {
    position: absolute;
    display: inline-block;
    font-family: 'kaisei Opti', serif;
    font-size: 2em;
    font-weight: 700;
    color: #3D3C5B;
    padding: 20px;
    border-radius: 30px;
    width: 960px;
}
section:nth-of-type(odd) .headline {
    left: 0;
    padding-right: 100px;
    text-align: right;
}
section:nth-of-type(even) .headline {
    right: 0;
    padding-left: 100px;
}
#sec03 .headline, #sec06 .headline {
    background-color: #AADFE8;
}
#sec02 .headline, #sec04 .headline, #sec05 .headline, #sec07 .headline, #sec08 .headline  {
    background-color: #fff;
}
.headline::before {
    position: absolute;
    top: -15px;
    display: inline-block;
    content: '';
    width: 120px;
    height: 120px;
    background: url(img/point_yellow.png) no-repeat center / contain;
}
section:nth-of-type(odd) .headline::before {
    right: -50px;
}
section:nth-of-type(even) .headline::before {
    left: -50px;
}
.subhead {
    position: relative;
    font-size: 1.8em;
    font-family: 'Kosugi Maru', serif;
    font-weight: 500;
    color: #3D3C5B;
    -webkit-text-stroke: 3px #fff;
    text-stroke: 3px #fff;
    paint-order: stroke;
    text-align: center;
    margin-bottom: 50px;
}
.subhead::before, .subhead::after {
    display: inline-block;
    content: '';
    background: url(img/kirakira.png) no-repeat center / contain;
    width: 50px;
    height: 50px;
    vertical-align: -10px;
}
.subhead::after {
    transform: scaleX(-1);
}
@media screen and (max-width: 480px) {
    .headline {
        display: flex;
        align-items: center;
        width: 90%;
        font-size: 1.3em;
        padding: 15px 10px;
    }
    section:nth-of-type(odd) .headline {
        padding-right: 70px;
    }
    section:nth-of-type(even) .headline {
        padding-left: 70px;
    }
    .headline::before {
        top: auto;
        width: 80px;
        height: 80px;
    }
    section:nth-of-type(odd) .headline::before {
        right: -30px;
    }
    section:nth-of-type(even) .headline::before {
        left: -30px;
    }
    .subhead {
        font-size: 1.2em;
        margin-bottom: 30px;
    }
    .subhead::before, .subhead::after {
        width: 40px;
        height: 40px;
    }
} 


/*-----------------------
 ヘッダー 
-----------------------*/
header {
    width: 100%;
    overflow: hidden;
    background-color: #AADFE8;
}
header .yellow_bg {
    border-bottom-left-radius: 1000px 50px;
    border-bottom-right-radius: 1000px 50px;
}
.catchphrase {
    font-family: 'Kaisei Opti', serif;
    font-size: 2.5em;
    color: #3D3C5B;
    text-align: center;
}
.catchphrase::before, .catchphrase::after {
    display: inline-block;
    content: '';
    background: url(img/kirakira.png) no-repeat center / contain;
    width: 80px;
    height: 80px;
    vertical-align: -20px;
}
.catchphrase::after {
    transform: scaleX(-1);
}
.mainvisual {
    display: block;
    width: 85%;
    margin: 0 auto;
}
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}
.menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.menu ul {
    display: flex;
}
.menu ul li {
    width: 25%;
    background-color: #fff;
}
.menu ul li img {
    width: 100%;
    object-fit: contain;
}
.about {
    background-color: #fff;
    padding: 20px 10px;
}
.about .m_cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.about ul {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.about ul li {
    width: 100px;
}
.about ul li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.about .tel {
    font-size: 2em;
    margin: 0;
    letter-spacing: 0;
}
.about .tel::before {
    width: 50px;
    height: 30px;
    margin-right: 10px;
}
.about .company {
    font-size: 1.3em;
}

@media screen and (max-width: 1280px) {
    .menu ul {
        flex-wrap: wrap;
    }
}
@media screen and (min-width: 481px) {
    .catchphrase br {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .mainvisual {
        width: 100%;
    }
    .mainvisual img {
        margin-top: 20px;
    }
    header .yellow_bg {
        padding: 20px;
    }
    .catchphrase {
        position: relative;
        font-size: 1.3em;
        z-index: 1;
    }
    .catchphrase::before, .catchphrase::after {
        position: absolute;
        width: 50px;
        height: 50px;
        z-index: -1;
    }
    .catchphrase::before {
        top: -15px;
        left: 15%;
    }
    .catchphrase::after {
        right: 15%;
        bottom: -10px;
    }
    .menu {
        display: none;
    }
    .about .m_cont {
        flex-direction: column;
        gap: 10px;
    }
    .about ul {
        justify-content: center;
    }
    .about ul li {
        width: 30%;
    }
    .about .tel {
        font-size: 1.7em;
    }
    .about .tel::before {
        width: 40px;
        height: 25px;
    }
    .about .company {
        font-size: 1.18em;
    }
}

/*-----------------------
 セクション01 
-----------------------*/
#sec01 {
    padding: 0 0 50px;
}
#gray_area {
    position: relative;
    padding: 100px 0 150px;
    background-color: #f1f1f1;
}
#gray_area::after {
    display: block;
    content: '';
    width: 100%;
    height: 10%;
    background-image: linear-gradient(0deg, #ffffff, #f1f1f1);
    position: absolute;
    bottom: -50px;
}
#gray_area .wrapper:first-of-type {
    position: relative;
    max-width: 767px;
    margin: 0 auto;
    text-align: center;
}
#gray_area .wrapper:first-of-type span {
    display: block;
    position: absolute;
    width: 100%;
   color: #3D3C5B;
   font-size: 1.7em;
   font-weight: 700;
}
#gray_area .wrapper:first-of-type span:first-of-type {
    left: -90px;
}
#gray_area .wrapper:first-of-type span:last-of-type {
    top: 50px;
    left: 50px;
}
#gray_area .wrapper:last-of-type {
    position: relative;
    max-width: 1280px;
    margin: 250px auto 0;
}
#gray_area img {
    display: block;
    width: 400px;
    margin: 0 auto;
}
.color_sb {
    position: relative;
}
.color_sb li {
    position: absolute;
    width: 300px;
    border-radius: 20px;
    padding: 20px;
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff;
    paint-order: stroke;
    text-align: center;
    line-height: 1.8;
}
.color_sb li::after {
    display: block;
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
}
.color_sb:first-of-type li.pink {
    top: -50px;
    left: 200px;
    background-color: #FFB4B4;
}
.color_sb:first-of-type li.pink::after {
    top: 55px;
    right: 70px;
    background: url(img/pink_bubble.png) no-repeat center / contain;
}
.color_sb:first-of-type li.yellow {
    top: 10px;
    right: 100px;
    background-color: #FDE092;
}
.color_sb:first-of-type li.yellow::after {
    background: url(img/yellow_bubble.png) no-repeat center / contain;
}
.color_sb:last-of-type li.blue {
    top: -100px;
    left: 150px;
    background-color: #91D0DA;
}
.color_sb:last-of-type li.blue::after {
    top: 40px;
    right: -40px;
    background: url(img/blue_bubble.png) no-repeat center / contain;
}
.color_sb:last-of-type li.orange {
    top: -40px;
    right: 150px;
    background-color: #FACA9A;
}
.color_sb:last-of-type li.orange::after {
    top: -40px;
    left: 0;
    background: url(img/orange_bubble.png) no-repeat center / contain;
}
#white_area {
    padding: 200px 0 0;
}
#white_area .wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.yellow_sb {
    position: absolute;
    top: -40px;
    left: 230px;
    display: block;
    background-color: #FEF0A3;
    font-family: 'kaisei Opti', serif;
    font-size: 1.3em;
    font-weight: 700;
    color: #3D3C5B;
    padding: 20px 30px;
    border-radius: 50%;
    width: 200px;
    transform: rotate(-12deg);
}
.yellow_sb::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 20px solid transparent;
    border-top: 20px solid #FEF0A3;
}
#sec01 .large_txt::after {
    display: inline-block;
    content: '';
    background: url(img/point.png) no-repeat center / contain;
    width: 120px;
    height: 120px;
    transform: rotate(40deg);
    vertical-align: -20px;
}
#sec01 p {
    font-family: 'Kosugi Maru', serif;
    font-size: 1.7em;
    line-height: 1.8;
    color: #3D3C5B;
    margin-top: 30px;
}
@media screen and (max-width: 480px) {
    .color_sb li {
        position: static;
        width: 80%;
        padding: 15px 10px;
    }
    .color_sb:first-of-type li.pink {
        margin: 0 auto 60px 10px;
    }
    .color_sb:first-of-type li.pink::after {
        top: 45px;
        left: 40px;
    }
    .color_sb:first-of-type li.yellow {
        margin: 0 10px 30px auto;
    }
    .color_sb:first-of-type li.yellow::after {
        right: 40px;
    }
    .color_sb:last-of-type li.blue {
        margin: 30px auto 60px 10px;
    }
    .color_sb:last-of-type li.blue::after {
        top: -40px;
        left: 40px;
    }
    .color_sb:last-of-type li.orange {
        margin: 0 10px 50px auto;
    }
    .color_sb:last-of-type li.orange::after {
        top: 112px;
        left: auto;
        right: 40px;
    }    
    #sec01 p {
        font-size: 1em;
    }
    #gray_area {
        padding: 70px 0 30px;
    }
    #gray_area .wrapper:first-of-type span {
        position: static;
        line-height: 1.7;
        font-size: 1.1em;
    }
    #gray_area .wrapper:last-of-type {
        margin-top: 70px;
    }
    #gray_area img {
        width: 300px;
    }
    #white_area {
        padding: 100px 0 0;
    }
    #sec01 .large_txt::after {
        width: 60px;
        height: 60px;
        vertical-align: -10px;
    }
    .yellow_sb {
        top: -35%;
        left: 20px;
        font-size: 1.1em;
        padding: 15px 20px;
        width: 170px;
    }
    .yellow_sb::after {
        bottom: -30px;
        left: 50%;
        border: 20px solid transparent;
        border-top: 20px solid #FEF0A3;
    }
}



/*-----------------------
 セクション02 
-----------------------*/
#sec02 {
    background-color: #AADFE8;
    padding-top: 250px;
}
#sec02::before{
    content: '';
    position: absolute;
    height: 100px;
    width: 100%;
    clip-path: polygon(50% 100%, 100% 0%, 0% 0%); 
    background-color: #fff;
    left: 0;
    top: -1px; 
}
.red_txt {
    color: #FB5953;
    font-size: 1.2em;
    font-weight: 700;
}
#sec02 .white_bg {
    box-shadow: 10px 10px 0 #4C99A6;
}
#sec02 .white_bg p {
    text-align: right;
    margin: 0 20px 20px 0;
}
#sec02 .wrapper {
    display: flex;
    justify-content: center;
    text-align: center;
}
.exchange {
    color: #346192;
    font-size: 1.5em;
    font-weight: 700;
    background-color: #dbeff3;
    padding: 10px 20px 10px 40px;
}
.green_bg {
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    font-size: 1em;
    background-color: #215a69;
    padding: 10px 20px;
}
.green_bg::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    border: 30px solid transparent;
    border-left: 20px solid #215a69;
}
.small_txt {
    font-size: 0.8em;
    margin-left: 10px;
}
.exchange_ul {
    display: flex;
    gap: 20px;
}
#sec02 > .wrapper {
    margin: 120px 0;
    gap: 50px;
}
#sec02 .wrapper img {
    position: relative;
    top: 50px;
    width: 300px;
    object-fit: contain;
    transform: scaleX(-1) rotate(-5deg);
}
.white_sb {
    position: relative;
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
    font-family: 'Kosugi Maru', serif;
    font-size: 1.5em;
    color: #3D3C5B;
    padding: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    line-height: 2;
}
.white_sb::before, .white_sb::after {
    position: absolute;
    display: block;
    content: '';
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}
.white_sb::before {
    width: 50px;
    height: 50px;
    top: 260px;
    right: -30px;
}
.white_sb::after {
    width: 30px;
    height: 30px;
    top: 240px;
    right: -80px;
}
@media screen and (max-width: 480px) {
    #sec02 {
        padding-top: 120px;
    }
    #sec02::before {
        height: 50px;
    }
    #sec02 .wrapper {
        flex-direction: column;
    }
    .exchange {
        font-size: 1.1em;
        padding: 20px 10px 10px;
    }
    .green_bg {
        justify-content: center;
    }
    .green_bg::after {
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        border-left: 25px solid transparent;
        border-top: 20px solid #215a69;
    }
    .exchange_ul {
        flex-direction: column;
    }
    #sec02 .white_bg {
        box-shadow: 5px 5px 0 #4C99A6;
    }
    #sec02 .white_bg p {
        font-size: 0.9em;
        margin: 10px 0 20px 0;
    }
    #sec02 > .wrapper {
        flex-direction: column;
        margin: 100px 10px;
        gap: 20px;
    }
    #sec02 .wrapper img {
        margin: -40px 0 0 auto;
        width: 250px;
    }
    .white_sb {
        font-size: 1em;
        padding: 50px 30px;
        width: 100%;
        margin: auto;
        line-height: 1.8;
    }
    .white_sb::before {
        width: 40px;
        height: 40px;
        top: 240px;
        right: 270px;
    }
    .white_sb::after {
        width: 25px;
        height: 25px;
        top: 290px;
        right: 230px;
    }
    #sec02 .large_txt br {
        display: none;
    }
}
@media screen and (max-width: 370px) {
    .white_sb::before {
        top: 100%;
        right: auto;
        left: 10%;
    }
    .white_sb::after {
        top: 120%;
        right: auto;
        left: 25%;
    }
}


/*-----------------------
 セクション03
-----------------------*/
#sec03 {
    padding-top: 250px;
}
#sec03::before{
    content: '';
    position: absolute;
    height: 100px;
    width: 100%;
    clip-path: polygon(50% 100%, 100% 0%, 0% 0%); 
    background-color: #AADFE8;
    left: 0;
    top: -1px; 
}
#sec03 img {
    display: block;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 480px) {
    #sec03 {
        padding-top: 120px;
    }
    #sec03::before {
        height: 50px;
    }
}

/*-----------------------
 セクション04
-----------------------*/
#sec04 {
    background-color: #FFF5CF;
}
#sec04 dl {
    border-width: 3px;
    border-style: solid;
    border-radius: 30px;
    overflow: hidden;
    line-height: 2;
}
#sec04 dl:first-of-type {
    margin-bottom: 30px;
}
#sec04 dl dt {
    padding: 10px 20px;
    color: #fff;
    text-align: center;
    font-size: 1.1em;
}
#sec04 dl dd {
    padding: 30px 20px;
    background-color: #fff;
}
#sec04 dl.pink {
    border-color: #FFC4C4;
}
#sec04 dl.pink dt{
    background-color: #FFC4C4;
}
#sec04 dl.green {
    border-color: #91D0DA;
}
#sec04 dl.green dt {
    background-color: #91D0DA;
}
#sec04 dl img {
    display: block;
    margin: 30px auto 0;
}
.comment > div.orange_sb {
    background-color: #FACA9A;
    margin-left: 50px;
}
.comment > div.orange_sb::after {
    border-right: 30px solid #FACA9A;
}
.orange_txt {
    color: #FF6A00;
}
@media screen and (max-width: 480px) {
    #sec04 dl dt {
        padding: 5px 15px;
        font-size: 1em;
    }
    #sec04 dl dd {
        padding: 20px 15px;
    }
    .comment > div.orange_sb {
        margin-left: 0;
    }
    .comment > div.orange_sb::after {
        border-right: 20px solid transparent;
        border-top: 30px solid #FACA9A;
    }
}


/*-----------------------
 セクション05
-----------------------*/
#sec05 {
    background-color: #E8F3FA;
}
#sec05 .res_txt {
    margin-bottom: 150px;
}
#sec05 ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 100px 30px;
}
#sec05 ul li {
    width: 48%;
    display: flex;
    flex-direction: column;
}
#sec05 ul li span {
    position: relative;
    padding: 40px 20px 20px;
    background-color: #91D0DA;
    color: #fff;
    border-radius: 20px 20px 0 0;
    text-align: center;
    z-index: 1;
}
#sec05 ul li span::before {
    display: block;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #91D0DA;
    color: #FEF0A3;
    font-size: 2.3em;
    text-align: center;
    line-height: 80px;
    -webkit-text-stroke: 2px #3D3C5B;
    text-stroke: 2px #3D3C5B;
    paint-order: stroke;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
    z-index: -1;
}
#sec05 ul li:first-of-type span::before {
    content: '01';
}
#sec05 ul li:nth-of-type(2) span::before {
    content: '02';
}
#sec05 ul li:nth-of-type(3) span::before {
    content: '03';
}
#sec05 ul li:last-of-type span::before {
    content: '04';
}
#sec05 ul li div {
    flex: 1;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
}
#sec05 ul li img {
    display: block;
    width: 70%;
    margin: 0 auto 30px;
}
.comment > div.blue_sb {
    background-color: #91D0DA;
}
.comment > div.blue_sb::after {
    border-left: 30px solid #91D0DA;
    right: -40px;
}
.blue_txt {
    color: #5A76D3;
}
@media screen and (max-width: 480px) {
    #sec05 ul {
        flex-direction: column;
        gap: 70px;
    }
    #sec05 ul li {
        width: 100%;
    }
    #sec05 ul li span {
        padding: 30px 10px 10px;
    }
    #sec05 ul li span::before {
        top: -30px;
        left: 50%;
        width: 80px;
        height: 80px;
        font-size: 1.8em;
        line-height: 60px;
    }
    #sec05 ul li div {
        padding: 20px 15px;
    }
    #sec05 ul li img {
        margin: 0 auto 20px;
    }
    .comment > div.blue_sb::after {
        border-left: 20px solid transparent;
        border-top: 30px solid #91D0DA;
        right: auto;
    }
    #sec05 .res_txt {
        margin-bottom: 100px;
    }
}


/*-----------------------
 セクション06
-----------------------*/
#sec06 ul {
    display: flex;
    justify-content: center;
    gap: 50px;
}
#sec06 ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}
#sec06 ul li div {
    width: 100%;
    padding: 30px 20px;
    border-radius: 50px;
    color: #fff;
    text-align: center;
    flex: 1;
}
#sec06 ul li img {
    width: 300px;
    margin-bottom: 20px;
    object-fit: contain;
}
.blue_bg {
    background-color: #91D0DA;
    box-shadow: 0 4px 0 #4C99A6;
}
.pink_bg {
    background-color: #FFC4C4;
    box-shadow: 0 4px 0 #D48787;
}
.orange_bg {
    background-color: #FACA9A;
    box-shadow: 0 4px 0 #C89562;
}
#sec06 .subsec_area:nth-of-type(2) ul li .bold {
    font-size: 1.5em;
    margin-top: 10px;
}
.comment > div.pink_sb {
    background-color: #FFC4C4;
}
.comment > div.pink_sb::after {
    border-right: 30px solid #FFC4C4;
}
.pink_txt {
    color: #FB5383;
}
#sec06 dl div {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}
#sec06 dl div:not(:last-of-type) {
    margin-bottom: 20px;
}
#sec06 dl dt {
    width: 200px;
    padding: 10px;
    border-radius: 50px;
    color: #fff;
    text-align: center;
}
.small_head {
    position: relative;
    font-size: 1.3em;
    letter-spacing: 0.2em;
    color: #3D3C5B;
    padding-left: 30px;
    margin-bottom: 20px;
}
.small_head::before {
    position: absolute;
    top: 17px;
    left: 0;
    display: inline-block;
    content: '';
    width: 20px;
    height: 3px;
    border-radius: 10px;
    background-color: #91D0DA;
}
#sec06 table {
    width: 100%;
    border-spacing: 0;
    border: 1px solid #3D3C5B;
    border-radius: 5px;
    overflow: hidden;
    table-layout: fixed;
}
#sec06 table th {
    font-weight: 500;
}
#sec06 table thead th {
    background-color: #f1f1f1;
    border-bottom: 1px solid #3D3C5B;
}
#sec06 table tbody th {
    color: #fff;
    border-right: 1px solid #3D3C5B;
}
#sec06 table tbody tr:not(:last-of-type) th,
#sec06 table tr:not(:last-of-type) td {
    border-bottom: 1px solid #3D3C5B;
}
#sec06 table thead th:not(:last-of-type),
#sec06 table tbody td:not(:last-of-type) {
    border-right: 1px solid #3D3C5B;
}
#sec06 table td {
    text-align: center;
    background-color: #fff;
}
#sec06 table th, #sec06 table td {
    padding: 10px;
}
@media screen and (max-width: 480px) {
    #sec06 ul {
        flex-direction: column;
    }
    #sec06 ul li {
        width: 100%;
    }
    #sec06 ul li img {
        width: 60%;
    }
    #sec06 ul li div {
        padding: 20px 15px;
    }
    #sec06 .subsec_area:nth-of-type(2) ul li .bold {
        font-size: 1.3em;
    }
    #sec06 dl div {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }
    #sec06 dl div:not(:last-of-type) {
        margin-bottom: 40px;
    }
    #sec06 dl dt {
        width: 100%;
        padding: 10px;
    }
    #sec06 dl dd {
        padding: 0 10px;
    }
    #sec06 table {
        width: 100%;
    }
    #sec06 table thead {
        display: none;
    }
    #sec06 table tbody tr {
        display: table-row;
        margin-bottom: 20px;
        border: 1px solid #3D3C5B;
        border-radius: 5px;
        overflow: hidden;
    }
    #sec06 table tbody th {
        display: block;
        text-align: center;
        padding: 10px;
        border-right: none;
    }
    #sec06 table tbody th:last-of-type,
    #sec06 table tr:last-of-type td:not(:last-of-type) {
        border-bottom: 1px solid #3D3C5B;
    }
    #sec06 table tbody td {
        display: flex;
        gap: 20%;
        padding: 10px;
        border: none;
        position: relative;
    }
    #sec06 table tbody td:before {
        content: attr(data-label);
        width: 60%;
    }
    #sec06 table tbody td:after {
        display: inline-block;
        content: '';
        position: absolute;
        top: 0;
        left: 60%;
        transform: translateX(-60%);
        width: 1px;
        height: 100%;
        background-color: #3D3C5B;
    }
    #sec06 table tbody tr:last-of-type {
        margin-bottom: 0;
    }
     #sec06 table tbody td:not(:last-of-type) {
        border-right: none;
    }
   .small_head {
        font-size: 1.1em;
    }
    .small_head::before {
        top: 14px;
    }
    .comment > div.pink_sb::after {
        border-right: 20px solid transparent;
        border-top: 30px solid #FFC4C4;
    }
}


/*-----------------------
 セクション07
-----------------------*/
#sec07 {
    background-color: #AADFE8;
}
#sec07 ul {
    display: flex;
    gap: 50px;
}
#sec07 ul li {
    position: relative;
    width: 40%;
    text-align: center;
}
#sec07 ul li:not(:last-of-type)::after {
    display: block;
    content: '';
    position: absolute;
    top: 30%;
    right: -40px;
    transform: translateY(-30%);
    border: 10px solid transparent;
    border-left: 15px solid #AADFE8;
}
#sec07 ul li img {
    display: block;
    margin: 30px auto;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
#sec07 ul li p {
    line-height: 1.8;
    text-align: left;
}
#sec07 ul li .bold {
    margin-bottom: 20px;
    color: #3D3C5B;
}
.step {
    display: inline-block;
    position: relative;
    background-color: #AADFE8;
    color: #fff;
    font-weight: 500;
    padding: 5px 10px;
    text-align: center;
    border-radius: 10px;
}
.step::after {
    display: block;
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top: 20px solid #AADFE8;
}
@media screen and (min-width: 481px) {
    .sp {
        display: block;
    }
    .sp div {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .pc {
        display: none;
    }
    .sp {
        display: flex;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }
    .sp div {
        width: 80%;
        text-align: left;
    }
    .sp div .step {
        font-size: 0.8em;
        margin: 25px 0 20px;
    }
    .sp div .step::after {
        bottom: -15px;
        border: 5px solid transparent;
        border-top: 10px solid #AADFE8;
    }
    #sec07 .white_bg {
        padding: 30px 15px;
    }
    #sec07 ul {
        flex-direction: column;
    }
    #sec07 ul li {
        width: 100%;
    }
    #sec07 ul li:not(:last-of-type)::after {
        top: auto;
        right: auto;
        bottom: -45px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 10px solid transparent;
        border-top: 15px solid #AADFE8;
    }
    #sec07 ul li img {
        width: 100px;
        height: 100px;
        margin: 0;
    }
}


/*-----------------------
 セクション08
-----------------------*/
#sec08 {
    background-color: #FFD5D5;
}
.faq_list div {
    background-color: #fff;
    border-radius: 10px;
    padding: 50px 30px;
}
.faq_list div:not(:last-of-type) {
    margin-bottom: 50px;    
}
.faq_list dd {
    line-height: 1.8;
}
.faq_list dt, .faq_list dd {
    position: relative;
    padding-left: 40px;
}
.faq_list dt::before, .faq_list dd::before {
    position: absolute;
    display: inline-block;
    font-size: 1.1em;
    font-weight: 700;
}
.faq_list dt::before {
    content: 'Q.';
    top: 3px;
    left: 0;
    color: #4C99A6;
}
.faq_list dd::before {
    content: 'A.';
    top: 38px;
    left: 2px;
    color: #FB5953;
}
@media screen and (max-width: 480px) {
    .faq_list div {
        padding: 30px 15px;
    }
    .faq_list div:not(:last-of-type) {
        margin-bottom: 20px;    
    }
    .faq_list dt, .faq_list dd {
        padding-left: 35px;
    }
    .faq_list dt {
        cursor: pointer;
    }
    .faq_list dt p {
        width: 90%;
    }
    .faq_list div dd {
        overflow: hidden;
        transition: all 0.4s ease;
    }
    .faq_list dd.open {
        opacity: 1;
        visibility: visible;
        padding-top: 20px;
    }
    .faq_arrow, .faq_arrow::after {
        position: absolute;
        width: 15px;
        height: 2px;
        border-radius: 5px;
        background-color: #9fa9aa;
    }
    .faq_arrow {
        top: 17px;
        right: 5px;
        transition: opacity 0.4s ease-in-out;
    }
    .faq_list dt::before {
        top: 0;
    }
    .faq_arrow::after {
        display: block;
        content: '';
        top: 0;
        right: 0;
        transform: rotate(90deg); 
        transition: transform 0.4s ease-in-out;
    }
    .faq_arrow.open::before {
        opacity: 0;
    }
    .faq_arrow.open::after {
        transform: rotate(180deg);
    }
}


/*-----------------------
 セクション09
-----------------------*/
#sec09 {
    background-color: #f1f1f1;
}
#sec09 p {
    color: #3D3C5B;
    font-size: 1.7em;
    font-weight: 700;
    text-align: center;
}
#sec09 .m_cont {
    margin-top: 0;
}
.maker_logo {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 70px;
}
@media screen and (min-width: 481px) {
    #sec09 br {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    #sec09 p {
        font-size: 1.1em;
    }
    .maker_logo {
        flex-wrap: wrap;
    }
    .maker_logo li {
        width: 28%;
    }
}


/*-----------------------
 フッター
-----------------------*/
footer {
    background-color: #AADFE8;
    overflow: hidden;
}
footer .yellow_bg {
    border-top-left-radius: 1000px 50px;
    border-top-right-radius: 1000px 50px;
    text-align: center;
    padding-top: 50px;
}
footer .yellow_bg p {
    line-height: 1.8;
}
footer .yellow_bg p:first-of-type {
    margin-bottom: 10px;
}
#contact {
    position: relative;
    max-width: 1280px;
    padding: 100px 10px;
    margin: 0 auto;
    z-index: 1;
}
#contact::before, #contact::after {
    display: block;
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: -1;
}
#contact::before {
    top: 50px;
    left: 100px;
    transform: rotate(-10deg);
    background: url(img/bath.png) no-repeat center / contain;
}
#contact::after {
    bottom: 150px;
    right: 100px;
    transform: rotate(10deg);
    background: url(img/heat.png) no-repeat center / contain;
}
#contact a {
    display: block;
    text-align: center;
}
.tel {
    position: relative;
    color: #4A67C7;
    font-size: 3.7em;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin: 50px 0 30px;
}
.tel::before {
    display: inline-block;
    content: '';
    width: 80px;
    height: 50px;
    margin-right: 20px;
    background: url(img/free1.gif) no-repeat center / contain;
}
.contact_btn {
    display: block;
    position: relative;
    width: 500px;
    background-color: #4A67C7;
    color: #fff;
    text-align: center;
    font-size: 1.7em;
    padding: 25px 65px 25px 10px;
    margin: 0 auto;
    border-radius: 30px;
    border: 2px solid #4A67C7;
}
.contact_btn::before, .contact_btn::after {
    display: block;
    content: '';
    position: absolute;
    transition: 0.4s;
}
.contact_btn::before {
    top: auto;
    right: 45px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
}
.contact_btn::after {
    top: 40px;
    right: 50px;
    border: 10px solid transparent;
    border-left: 15px solid #4A67C7;
}
.contact_btn:hover {
    opacity: 1;
    background-color: #fff;
    color: #4A67C7;
}
.contact_btn:hover::before {
    background-color: #4A67C7;
}
.contact_btn:hover::after {
    border-left: 15px solid #fff;
}
#contact h2 {
    font-family: 'kaisei Opti', serif;
    font-size: 2em;
    font-weight: 700;
    color: #3D3C5B;
    text-align: center;
    line-height: 1.8;
}
.company {
    font-weight: 700;
}
.big {
    font-size: 1.3em;
}
.privacy {
    font-size: 0.7em;
    margin-top: 50px;
}
.page_top {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #91D0DA;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 20;
}
.page_top:hover {
    opacity: 1;
}
.arrow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    display: block;
    width: 15px;
    height: 15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #FDE092;
}
@media screen and (min-width: 481px) {
    footer .br {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    footer .yellow_bg div {
        width: 60%;
        margin: 0 auto;
    }
    #contact:before, #contact::after {
        width: 100px;
    }
    #contact::before {
        top: -20px;
        left: 0;
    }
    #contact::after {
        top: 15%;
        bottom: auto;
        right: 0;
    }
    #contact h2 {
        font-size: 1.2em;
    }
    .tel {
        font-size: 2.3em;
    }
    .tel::before {
        width: 50px;
        height: 30px;
        margin-right: 10px;
    }
    #contact div {
        margin: 0 10px;
    }
    .contact_btn {
        width: 100%;
        font-size: 1.1em;
        padding: 20px 50px 20px 10px;
    }
    .contact_btn::before {
        right: 50px;
        width: 30px;
        height: 30px;
    }
    .contact_btn::after {
        top: 28px;
        right: 52px;
        border: 7px solid transparent;
        border-left: 10px solid #4A67C7;
    }
    .contact_btn:hover::after {
        border-left: 10px solid #fff;
    }
    .page_top {
        width: 60px;
        height: 60px;
    }
    .arrow {
        top: 25%;
        left: 52%;
        transform: translate(-52%, -25%);
    }
}
@media screen and (max-width: 410px) {
    .tel {
        font-size: 2em;
    }
}
@media screen and (max-width: 400px) {
    #contact br {
        display: none;
    }
    .contact_btn::before {
        right: 5%;
    }
    .contact_btn::after {
        right: 5.5%;
    }
}
