@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&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;
    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;
}
main {
    margin-top: 210px;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
}
.content {
    width: 1920px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 1280px) {
    .content {
        width: 100%;
    }
    body{
        width: 1280px;
        overflow: auto;
    }
}
@media screen and (max-width: 960px) {
    body{
        width: 100%;
    }
    main {
        margin-top: 180px;
    }
    .container {
        margin: 0 20px;
    }    
}


/* 見出し */
.headline {
    color: #003C6E;
    font-weight: 900;
    font-size: 50px;
    letter-spacing: 5px;
    text-align: center;
    padding: 0 10px;
}
.subhead {
    background-color: #003C6E;
    color: #fff;
    font-weight: 900;
    padding: 30px;
    font-size: 40px;
    letter-spacing: 1px;
}
h4 {
    font-weight: 900;
    font-size: 23px;
    margin: 0 10px;
}
.yellow {
    color: #F7F954;
}
.headline .yellow, .headline .orange {
    font-size: 65px;
}
.pink {
    font-size: 65px;
    color: #E89C9C;
}
.orange {
    color: #FF9D00;
}
.border {
    font-size: 65px;
    color: #EDE166;
    -webkit-text-stroke: 15px #003C6E;
    text-stroke: 15px #003C6E;
    paint-order: stroke;
}
.red_headline  {
    color: #F25252;
    font-size: 80px;
    text-align: center;
    font-weight: 900;
    margin-top: 100px;
    letter-spacing: 5px;
}
.red_headline .small {
    font-size: 45px;
}
@media screen and (max-width: 960px) {
    .headline {
        font-size: 40px;
    }    
    .headline .yellow, .headline .orange, .pink, .border {
        font-size: 55px;
    }    
    .border {
        -webkit-text-stroke: 13px #003C6E;
        text-stroke: 13px #003C6E;
    }    
    .subhead {
        font-size: 30px;
        padding: 20px;
    }    
}
@media screen and (max-width: 767px) {
    .headline {
        font-size: 35px;
    }    
    .headline .yellow, .headline .orange, .pink, .border {
        font-size: 45px;
    }    
    .border {
        -webkit-text-stroke: 10px #003C6E;
        text-stroke: 10px #003C6E;
    }    
    .subhead {
        font-size: 25px;
    }    
    .red_headline  {
        font-size: 60px;
    }
    .red_headline .small {
        font-size: 35px;
    }    
}
@media screen and (max-width: 480px) {
    .headline .yellow, .headline .orange, .pink, .border {
        font-size: 40px;
    }    
    .border {
        -webkit-text-stroke: 8px #003C6E;
        text-stroke: 8px #003C6E;
    }    
    .subhead {
        font-size: 20px;
        padding: 15px;
    }    
    h4 {
        font-size: 20px;
    }
}


/*-----------------------
 ヘッダー 
-----------------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 210px;
    z-index: 10;
}
header .container {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}
#header {
    background-color: #fff;
}
.logo {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #003C6E;
}
.logo .small {
    font-size: 25px;
}
.logo img {
    width: 250px;
    min-width: 250px;
    object-fit: contain;
}
.contact_area img {
    width: 300px;
    min-width: 300px;
}
header .title {
    background-color: #003C6E;
    color: #f7f954;
    font-weight: 900;
    padding: 10px 030px;
    font-size: 50px;
    letter-spacing: 3px;
    text-align: center;
}
@media screen and (max-width: 1280px) {
    header .title {
        font-size: 35px;
    }
}
@media screen and (max-width: 960px) {
    header {
        height: 90px;
    }
    header .container {
        margin: 0;
    }
    .logo {
        font-size: 15px;
    }
    .logo .small {
        font-size: 20px;
    }
    .logo img {
        width: 200px;
        min-width: 200px;
    }
    .contact_area img {
        width: 230px;
        min-width: 230px;
    }    
    header .title {
        font-size: 30px;
    }
}
@media screen and (max-width: 767px) {
    .logo {
        font-size: 13px;
    }
    .logo .small {
        font-size: 18px;
    }
    .logo img {
        width: 150px;
        min-width: 150px;
    }
    .contact_area img {
        position: relative;
        top: 0;
        width: 180px;
        min-width: 180px;
    }    
    header .title {
        font-size: 25px;
    }
}
@media screen and (max-width: 550px) {
    .logo {
        flex-direction: column;
    }
}
@media screen and (max-width: 480px) {
    header .title {
        font-size: 18px;
    }
}
@media screen and (max-width: 375px) {
    .logo {
        font-size: 11px;
    }
    .logo .small {
        font-size: 16px;
    }
    .logo img {
        width: 120px;
        min-width: 120px;
    }
    .contact_area img {
        width: 150px;
        min-width: 150px;
    }    
}




/*-----------------------
 セクション01 
-----------------------*/
#sec01 .content {
    background: url(images/sec01-1.webp) left top / 55% no-repeat;
    padding-bottom: 150px;
}
#sec01 .wrapper {
    width: 26%;
    margin: 100px 0 0 56%;
}
#sec01 .subhead {
    position: relative;
    top: 80px;
    width: 55%;
    margin: 0 0 0 auto;
}
#sec01 .subhead::before {
    position: absolute;
    top: -70px;
    left: -70px;
    display: block;
    content: '';
    background: url(images/sec01-2.png) no-repeat;
    width: 598px;
    height: 110px;
}
#sec01 .title {
    background-color: #003C6E;
    color: #f7f954;
    font-weight: 900;
    padding: 30px;
    font-size: 50px;
    letter-spacing: 3px;
    margin-top: 70px;
    text-align: center;
}
@media screen and  (max-width: 1280px) {
    #sec01 .wrapper {
        width: 44%;
        margin-left: 57%;
    }
}
@media screen and  (max-width: 960px) {
    #sec01 .content {
        background: url(images/sec01-1.webp) left 120px / 90% no-repeat;
        padding-bottom: 15%;
    }    
    #sec01 .subhead {
        top: 60px;
        width: 85%;
    }    
    #sec01 .subhead::before {
        top: -60px;
        background: url(images/sec01-2.png) left top / contain no-repeat;
        width: 500px;
    }
    #sec01 .wrapper {
        width: auto;
        margin: 53% 20px 0;
    }
    #sec01 .title {
        font-size: 40px;
    }
}
@media screen and  (max-width: 767px) {
    #sec01 .content {
        background: url(images/sec01-1.webp) left 90px / 90% no-repeat;
    }    
    #sec01 .subhead {
        top: 40px;
    }    
    #sec01 .subhead::before {
        top: -40px;
        left: -50px;
        background: url(images/sec01-2.png) left top / contain no-repeat;
        width: 350px;
    }
    #sec01 .wrapper {
        margin-top: 52%;
    }
}
@media screen and  (max-width: 480px) {
    #sec01 .content {
        background: url(images/sec01-1.webp) left 70px / 93% no-repeat;
    }    
    #sec01 .subhead {
        top: 30px;
        width: 90%;
    }    
    #sec01 .subhead::before {
        top: -30px;
        left: -20px;
        width: 280px;
    }
    #sec01 .wrapper {
        margin-top: 57%;
    }
    #sec01 .title {
        font-size: 30px;
    }
}
@media screen and  (max-width: 390px) {
    #sec01 .wrapper {
        margin-top: 50%;
    }
}


/*-----------------------
 セクション02 
-----------------------*/
#sec02 {
    position: relative;
    padding: 50px 0 20px;
}
#sec02::after{
    content: '';
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);
    background-color: #fff;
    left: 0;
    bottom: -59px; 
    z-index: 1;
}
#sec02 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
#sec02 .headline {
    margin-top: 50px;
}
@media screen and (max-width: 767px) {
    #sec02 .container {
        gap: 30px;
    }    
}
@media screen and (min-width: 481px) {
    #sec02 .br {
        display: none;
    }
}

/*-----------------------
 セクション03
-----------------------*/
#sec03 {
    position: relative;
    padding-top: 100px;
    background-color: #3E9DD8;
}
#sec03::after {
    content: '';
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);
    background-color: #3E9DD8;
    left: 0;
    bottom: -59px; 
    z-index: 1;
}
#sec03 .content {
    background: url(images/sec03-1.webp) right top / 55% no-repeat;
    padding-bottom: 100px;
}
#sec03 .subhead {
    width: 70%;
    text-align: right;
}
#sec03 .wrapper {
    width: 30%;
    margin: 0 0 0 26%;
}
.sec03_list {
    padding: 20px 0 70px;
}
.sec03_list li {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    background-color: #D9D9D9;
    color: #003C6E;
    font-weight: 900;
    font-size: 30px;
    padding: 15px 10px;
    border-radius: 50px;
    width: 400px;
}
.sec03_list li:not(:last-of-type) {
    margin-bottom: 20px;
}
.sec03_list li::before {
    display: inline-block;
    content: '';
    background: url(images/sec03-icon.png) no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
}
@media screen and  (max-width: 1280px) {
    #sec03 .subhead {
        width: 90%;
    }
    #sec03 .wrapper {
        margin-left: 16%;
    }
    .sec03_list {
        padding: 0 0 10px;
    }    
    .sec03_list li:not(:last-of-type) {
        margin-bottom: 10px;
    }    
}
@media screen and  (max-width: 960px) {
    #sec03 .content {
        background: url(images/sec03-1.webp) right 95px / 90% no-repeat;
    }    
    #sec03 .wrapper {
        width: 100%;
        margin-left: 0;
    }
    .sec03_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding-bottom: 40%;
    }
    .sec03_list li {
        width: 45%;
        font-size: 25px;
        padding: 10px;
    }
    .sec03_list li::before {
        display: inline-block;
        width: 30px;
        height: 30px;
    }    
    .sec03_list li:not(:last-of-type) {
        margin-bottom: 0;
    }    
}
@media screen and  (max-width: 767px) {
    #sec03 .content {
        background: url(images/sec03-1.webp) right 85px / 90% no-repeat;
    }    
    .sec03_list li {
        width: 48%;
        font-size: 20px;
        padding: 7px 16px 7px 10px;
    }
}
@media screen and  (max-width: 565px) {
    #sec03 .content {
        background: url(images/sec03-1.webp) right 100px / 90% no-repeat;
    }    
    .sec03_list {
        padding-bottom: 35%;
    }
}
@media screen and (min-width: 481px) {
    #sec03 .br {
        display: none;
    }
}
@media screen and  (max-width: 480px) {
    #sec03 .content {
        background: url(images/sec03-1.webp) right 100px / 93% no-repeat;
    }    
    .sec03_list li {
        font-size: 17px;
    }    
}
@media screen and  (max-width: 390px) {
    #sec03 .content {
        background: url(images/sec03-1.webp) right 180px / 93% no-repeat;
    }    
    .sec03_list {
        flex-direction: column;
    }
    .sec03_list li {
        width: 90%;
        margin: 0 auto;
    }
}


/*-----------------------
 セクション04
-----------------------*/
#sec04 {
    position: relative;
    padding: 100px 0 30px;
    background-color: #72B6E6;
}
#sec04::after {
    content: '';
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);
    background-color: #72B6E6;
    left: 0;
    bottom: -59px; 
    z-index: 1;
}
#sec04 p {
    color: #fff;
    display: flex;
    justify-content: center;
}
.sec04_list {
    max-width: 960px;
    margin: 90px auto 120px;
}
.sec04_list li {
    position: relative;
    background-color: #FFF050;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}
.sec04_list li:not(:last-of-type) {
    margin-bottom: 80px;
}
.sec04_list li::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: -70px;
    left: -100px;
    width: 250px;
    height: 160px;
}
.sec04_list li:first-of-type:before {
   background: url(images/point1.png) left top / contain no-repeat;
}
.sec04_list li:nth-of-type(2):before {
    background: url(images/point2.png) left top / contain no-repeat;
 }
 .sec04_list li:nth-of-type(3):before {
    background: url(images/point3.png) left top / contain no-repeat;
 }
 .sec04_list li:nth-of-type(4):before {
    background: url(images/point4.png) left top / contain no-repeat;
 }
 .sec04_list li:last-of-type:before {
    background: url(images/point5.png) left top / contain no-repeat;
 }    
.blue {
    color: #3485BF;
}
#sec04 .subhead {
    width: 70%;
    margin: 70px 0 0 auto;
}
@media screen and (max-width: 960px) {
    .sec04_list li::before {
        top: -70px;
        left: -20px;
        width: 200px;
        height: 110px;
    } 
    #sec04 .subhead {
        width: 90%;
    }       
}
@media screen and (max-width: 767px) {
    .sec04_list li {
        font-size: 25px;
    } 
    .sec04_list li::before {
        top: -50px;
        width: 170px;
    } 
    .sec04_list li:not(:last-of-type) {
        margin-bottom: 60px;
    }    
}
@media screen and (min-width: 481px) {
    #sec04 .br {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .sec04_list li {
        font-size: 20px;
    } 
    .sec04_list li::before {
        top: -50px;
        width: 150px;
    } 
}


/*-----------------------
 セクション05
-----------------------*/
#sec05 {
    position: relative;
    padding: 130px 0 30px;
    background-color: #93CAED;
}
#sec05::after {
    content: '';
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);
    background-color: #93CAED;
    left: 0;
    bottom: -59px; 
    z-index: 1;
}
#sec05 .wrapper {
    max-width: 960px;
    margin: 0 auto 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#sec05 .wrapper h4 {
    color: #003C6E;
    margin-bottom: 10px;
}
#sec05 .wrapper p {
    color: #fff;
}
#sec05 .container .headline {
    margin: 80px auto 30px;
}
#sec05 .container {
    margin-bottom: 180px;
}
.sec05_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.sec05_list li {
    width: 45%;
    background-color: #fff;
    border-radius: 30px;
    text-align: center;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
.sec05_list li:nth-of-type(2) {
    position: relative;
    border: 5px solid #FF9D00;
}
.sec05_list li:nth-of-type(2) .list_title {
    border-radius: 25px 25px 0 0;
}
.sec05_list li:nth-of-type(2)::after {
    position: absolute;
    top: -50px;
    right: -50px;
    display: block;
    content: '';
    background: url(images/banner.png) right top / contain no-repeat;
    width: 250px;
    height: 150px;
}
.list_title {
    display: block;
    background-color: #003C6E;
    color: #fff;
    padding: 15px;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 1px;
    border-radius: 30px 30px 0 0;
}
.sec05_list li p{
    padding: 15px 20px;
    text-align: left;
}
.sec05_list li img {
    padding: 15px 20px 0;
}
.fade-in {
    opacity: 0;
    transition: all 1s ease;
    transform: scale(0.7);
}
.show {
    opacity: 1;
}
.fade-in.show {
    transform: scale(1);
}
@media screen and (max-width: 960px) {
    .sec05_list li:nth-of-type(2)::after {
        top: -45px;
        right: -35px;
        width: 200px;
        height: 100px;
    }    
}
@media screen and (max-width: 767px) {
    .sec05_list {
        flex-direction: column;
    }
    .sec05_list li {
        width: 100%;
    }
    .sec05_list li:nth-of-type(2)::after {
        top: -35px;
        right: -25px;
    }   
}
@media screen and (min-width: 481px) {
    #sec05 .br {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .list_title {
        font-size: 20px;
    }    
}


/*-----------------------
 セクション06
-----------------------*/
#sec06 {
    position: relative;
    padding: 100px 0 0;
    background-color: #fff;
}
#sec06::after {
    content: '';
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);
    background-color: #fff;
    left: 0;
    bottom: -59px; 
    z-index: 1;
}
#sec06 .content {
    background: url(images/sec06-1.webp) left top / 55% no-repeat;
    padding-bottom: 300px;
    margin-bottom: 120px;
}
#sec06 h4 {
    color: #003C6E;
    text-align: center;
    margin-bottom: 30px;
}
#sec06 .wrapper {
    width: 26%;
    margin: 0 0 0 56%;
}
#sec06 .wrapper p{
    position: relative;
    top: 10px;
}
#sec06 .subhead {
    position: relative;
    top: 250px;
    width: 70%;
    margin: 0 0 0 auto;
}
.sec06_list {
    max-width: 960px;
    margin: 0 70px 0 auto;
}
.sec06_list div {
    display: flex;
    position: relative;
}
.sec06_list div:not(:last-of-type) {
    margin-bottom: 50px;
}
.sec06_list div dt{
    position: absolute;
    top: -30px;
    left: -120px;
    width: 60%;
    background-color: #d9d9d9;
    font-size: 30px;
    font-weight: 900;
    color: #003C6E;
    padding: 15px 15px 15px 80px;
    border-radius: 50px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}
.sec06_list div dt::before{
    position: absolute;
    top: 10px;
    left: -65px;
    display: inline-block;
    font-size: 35px;
    color: #EDE166;
    -webkit-text-stroke: 8px #003C6E;
    text-stroke: 8px #003C6E;
    paint-order: stroke;
    letter-spacing: 2px;
}
.sec06_list div:first-of-type dt::before{
    content: 'STEP1';
}
.sec06_list div:nth-of-type(2) dt::before{
    content: 'STEP2';
}
.sec06_list div:nth-of-type(3) dt::before{
    content: 'STEP3';
}
.sec06_list div:nth-of-type(4) dt::before{
    content: 'STEP4';
}
.sec06_list div:last-of-type dt::before{
    content: 'STEP5';
}
.sec06_list div dd{
    width: 100%;
    background-color: #003C6E;
    color: #fff;
    padding: 20px 15px;
    border-radius: 10px;
}
.sec06_list div dd p{
    width: 50%;
    margin: 0 0 0 auto;
}
@media screen and  (max-width: 1280px) {
    #sec06 .wrapper {
        width: 44%;
        margin-left: 57%;
    }
    #sec06 .subhead {
        top: 200px;
    }    
}
@media screen and  (max-width: 960px) {
    #sec06 .content {
        display: flex;
        flex-direction: column-reverse;
        padding: 40% 0 0 0;
        margin-bottom: 150px;
        background: url(images/sec06-1.webp) left top / 90% no-repeat;
    }
    #sec06 .wrapper {
        width: auto;
        margin: 0 20px
    }
    #sec06 .wrapper p {
        top: 20px;
    }
    #sec06 .subhead {
        top: 0;
        width: 90%;
    }    
    .sec06_list {
        margin: 0 auto;
    }
    .sec06_list div:not(:last-of-type) {
        margin-bottom: 70px;
    }    
    .sec06_list div dt{
        width: 500px;
        font-size: 25px;
        padding: 10px 10px 10px 70px;
        top: -40px;
        left: 70px;
    }
    .sec06_list div dt::before{
        top: 5px;
        font-size: 30px;
    }    
    .sec06_list div dd{
        padding-top: 30px;
    }
    .sec06_list div dd p{
        width: 100%;
    }    
}

@media screen and  (max-width: 767px) {
    #sec06 h4 {
        text-align: left;
    }
}
@media screen and  (max-width: 630px) {
    .sec06_list div dt{
        width: 85%;
        padding: 10px 10px 10px 60px;
    }
}
@media screen and  (max-width: 578px) {
    .sec06_list div:nth-of-type(4) {
        margin-bottom: 85px;
    }
    .sec06_list div:last-of-type dt{
        top: -55px;
    }
    .sec06_list div:last-of-type dd{
        padding-top: 50px;
    }
}
@media screen and  (max-width: 480px) {
    #sec06 .content {
        background: url(images/sec06-1.webp) left top / 93% no-repeat;
    }
    .sec06_list div dt{
        width: 70%;
        font-size: 20px;
        top: -30px;
        padding: 10px 10px 10px 40px;
    }
    .sec06_list div dt::before{
        font-size: 25px;
    }    
    .sec06_list div:nth-of-type(4) {
        margin-bottom: 80px;
    }
    .sec06_list div:last-of-type dt{
        top: -40px;
    }
    .sec06_list div:last-of-type dd{
        padding-top: 50px;
    }
}
@media screen and  (max-width: 354px) {
    .sec06_list div:last-of-type dd{
        padding-top: 80px;
    }
}

/*-----------------------
 セクション07
-----------------------*/
#sec07 {
    position: relative;
    padding: 100px 0 30px;
    background-color: #EDE166;
}
#sec07::after {
    content: '';
    position: absolute;
    height: 60px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0);
    background-color: #EDE166;
    left: 0;
    bottom: -59px; 
    z-index: 1;
}
#sec07 p {
    text-align: center;
    margin-top: 30px;
    text-decoration: underline;
}
.sec07_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fff;
    padding: 30px 0;
    margin: 0 20px;
    border-radius: 30px;
}
.sec07_list div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 48%;
    padding: 25px;
    border-bottom: 2px dashed #EDE166;
}
.sec07_list div:nth-of-type(odd) {
    border-right: 2px dashed #EDE166;
    padding-left: 0;
}
.sec07_list div:nth-of-type(even) {
    padding-right: 0;
}
.sec07_list div:nth-of-type(5),
.sec07_list div:last-of-type {
    border-bottom: none;
}
.sec07_list div dt, .sec07_list div dd{
    position: relative;
    padding-left: 25px;
}
.sec07_list div dt{
    color: #F25252
}
.sec07_list div dd{
    line-height: 2;
}
.sec07_list div dt::before, .sec07_list div dd::before {
    display: inline-block;
    position: absolute;
    left: 0;
}
.sec07_list div dt::before {
    content: 'Q.';
}
.sec07_list div dd::before {
    content: 'A.';
}
@media screen and (max-width: 960px) {
    .sec07_list {
        margin: 0;
    }    
}
@media screen and (max-width: 767px) {
    .sec07_list {
        flex-direction: column;
        padding: 30px 0;
    }    
    .sec07_list div{
       width: auto;
       padding: 25px 20px;
       margin: 0 20px;
    }
    .sec07_list div:nth-of-type(odd) {
        border-right: none;
        padding-left: 20px;
    }    
    .sec07_list div:nth-of-type(even) {
        padding-right: 20px;
    }    
    .sec07_list div:nth-of-type(5) {
        border-bottom: 2px dashed #EDE166;
    }
}
@media screen and (max-width: 480px) {
    .sec07_list div{
       padding: 20px 10px;
    }
    .sec07_list div:nth-of-type(odd) {
        padding-left: 10px;
    }    
    .sec07_list div:nth-of-type(even) {
        padding-right: 10px;
    }    
}


/*-----------------------
 セクション08
-----------------------*/
#sec08 {
    padding: 120px 0 50px;
    background: #003C6E;
    overflow-x: hidden;
}
#sec08 .wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    width: 1920px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
#sec08 .wrapper > div{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#sec08 .wrapper > div a{
    display: block;
    text-align: center;
}
@media screen and (max-width: 1280px) {
    #sec08 .wrapper {
        width: 1280px;
    }
}
@media screen and (max-width: 960px) {
    #sec08 .wrapper {
        width: 960px;
        gap: 20px;
    }
}
@media screen and (min-width: 767px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
@media screen and (max-width: 767px) {
    #sec08 {
        padding: 100px 0 30px;
    }
    #sec08 .wrapper {
        width: 767px;
    }
    #sec08 .wrapper > div img {
        width: 70%;
    }
}
@media screen and (max-width: 570px) {
    #sec08 .wrapper {
        width: 650px;
    }
}
@media screen and (max-width: 480px) {
    #sec08 .wrapper {
        width: 600px;
    }
        #sec08 .wrapper > div img {
        width: 60%;
    }
}
@media screen and (max-width: 430px) {
    #sec08 .wrapper {
        width: 500px;
    }
}
@media screen and (max-width: 375px) {
    #sec08 .wrapper {
        width: 450px;
    }
}


/*-----------------------
 フッター
-----------------------*/
footer {
    padding: 50px 0;
}
footer .logo {
    display: flex;
    justify-content: center;
}
.info {
    display: flex;
    gap: 30px;
    justify-content: center;
    font-size: 15px;
    margin-top: 30px;
}
.info div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.info div dt {
    font-weight: 700;
}
@media screen and (max-width: 960px) {
    footer {
        padding: 30px 0;
    }    
}
@media screen and (max-width: 480px) {
    .info {
        flex-direction: column;
        align-items: center;
    }
}