@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
    font-size: 180%;
    -webkit-text-size-adjust: none;
    font-weight: 400;
}
html:focus-within {
    scroll-behavior: smooth;
}
img {
    vertical-align: middle;
    max-width: 100%;
    flex-shrink: 0;
    height: auto;
}
*, ::before, ::after {
    box-sizing: border-box;
    outline: none;
}
::before, ::after {
    pointer-events: none;
}
select {
    visibility: visible !important;
}
a {
    transition: all ease 0.3s;
    text-decoration: none;
    color: var(--txt);
    text-underline-offset: 3px;
}
a[href^="tel:"] {
    word-break: keep-all;
}
iframe {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}
/*==========================================================================*/
/*                               Container                                  */
/*==========================================================================*/
html {
    background: #fff
}
body {
    color: var(--txt);
    -webkit-text-size-adjust: none;
    min-width: 320px;
    font-family: var(--font-main)
}
select, input, textarea {
    font-family: var(--font-main);
    font-size: 100%;
}
table {
    width: 100%
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}
p, dd, dt, li, th, td, address {
    line-height: 2em;
    letter-spacing: 0;
}
p {
    margin: 0 0 1.875em;
}
p:last-child {
    margin-bottom: 0
}
.bold {
    font-weight: bold;
}
.left {
    text-align: left
}
.right {
    text-align: right;
}
.auto {
    margin-left: auto;
    margin-right: auto;
}
.red {
    color: var(--red);
}
.txt_line {
    text-decoration: underline;
}
.m0a {
    display: block;
    margin: 0 auto;
}
.f_big {
    font-size: 150%;
}
.f_sm {
    font-size: 80%;
}
:root {
    --font-main: "Noto Sans JP", sans-serif;
    --txt: #000;
    --mcolor: #1c6799;
    --scolor: #333333;
    --site_size: 1230px;
    --gray: #e9e9e9;
    --blue: blue;
    --red: red;
    --en: "Open Sans", sans-serif;
}
#wrapper {
    min-width: 1260px;
    overflow: hidden;
    margin: 0 auto
}
.inner {
    width: var(--site_size);
    margin: 0 auto;
    position: relative;
    max-width: 100%;
    padding: 0 15px;
}
.swing {
    animation: swing linear 5s infinite;
    transform-origin: right bottom 0;
}
.swing_r {
    animation: swing linear 5s infinite;
    transform-origin: left bottom 0;
}
@keyframes swing {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
/*==========================================================
       H E A D E R  
==========================================================*/
header {
    position: relative;
    z-index: 10;
}
#logo {
    padding: 20px 0;
    font-size: 16px;
}
#logo a {
    display: flex;
    align-items: center;
}
.slogan {
    margin-left: 21px;
    border-radius: 11px;
    background: #c3def4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c6799;
    font-size: 80%;
    height: 22px;
    width: 196px;
    font-weight: 500;
    flex-shrink: 0;
}
.h_box {
    width: 100%;
    position: fixed;
    background-color: #fff;
}
.active .h_box {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.h_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 20px 0 20px;
    max-width: 1920px;
}
.h_contact {
    display: flex;
    align-items: center;
}
.h_contact > p {
    margin-bottom: 0;
}
.h_contact > p:not(:last-child) {
    margin-right: 20px;
}
.h_contact_mail a {
    color: #FFF;
    font-weight: bold;
    text-align: center;
    background-color: var(--mcolor);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 60px;
    position: relative;
}
.h_contact_mail a span {
    position: relative;
    z-index: 2;
    font-size: 20px;
    display: inline-block;
    padding-left: 30px;
}
.h_contact_mail a span::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    top: calc(50% - 10px);
    background: url('../images/ic_h_mail.png') no-repeat center /cover;
}
.h_contact_tel a {
    font-size: 28px;
    color: #332829;
    font-weight: bold;
    padding-left: 25px;
    position: relative;
    line-height: 1;
    display: block;
}
.h_contact_tel .time {
    font-size: 12px;
    display: block;
    line-height: 1.6;
    text-align: right;
}
/* HAMBUGER BUTTON */
.hamburger {
    font: inherit;
    display: block;
    overflow: visible;
    margin: 0;
    padding: 10px 8px 5px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 24px
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    position: absolute;
    width: 35px;
    height: 2px;
    transition: all ease 0.15s;
    background-color: #fff
}
.hamburger-inner::after, .hamburger-inner::before {
    display: block;
    content: ""
}
.hamburger-inner::before {
    top: -10px
}
.hamburger-inner::after {
    bottom: -10px
}
.hamburger--3dxy .hamburger-box {
    perspective: 80px
}
.hamburger--3dxy .hamburger-inner {
    transition: transform .15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0 cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy .hamburger-inner::after, .hamburger--3dxy .hamburger-inner::before {
    transition: transform cubic-bezier(0.645, 0.045, 0.355, 1) .1s
}
.hamburger--3dxy.is_active .hamburger-inner {
    transform: rotateX(180deg) rotateY(180deg);
    background-color: transparent !important
}
.hamburger--3dxy.is_active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg)
}
.hamburger--3dxy.is_active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg)
}
/*==========================================================
  M A I N    V I S U A L
==========================================================*/
main {
    position: relative;
    padding-top: 100px;
    z-index: 2;
}
.mv {
    position: relative;
    padding: 0;
}
.mv_bg {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: -120px;
    z-index: 2;
}
.mv_bg::before {
    position: absolute;
    content: "";
    background: url("../images/main_pc.jpg") no-repeat center top/cover;
    width: calc(100% - 65px);
    height: 600px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    border-radius: 20px;
}
.mv_txt {
    width: 640px;
    height: 640px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;
    position: relative;
    top: -90px;
    padding: 190px 0 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mv_txt::before {
    position: absolute;
    content: "";
    background: url("../images/pp1.png") no-repeat center top/cover;
    width: 453px;
    height: 251px;
    left: -18px;
    right: 0;
    margin: 0 auto;
    bottom: -100px;
}
.mv_bb1, .mv_bb2, .mv_tt1 {
   
    position: absolute;
    color: #fff;
    line-height: 1.625;
    text-align: center;
    letter-spacing: -0.05em;
}
.mv_bb1 {
    width: 216px;
    height: 123px;
    left: -170px;
    top: 202px;
}
.mv_bb1 span {
    background: url("../images/bb1.png") no-repeat center top/cover;
    padding: 0 0 22px 0px;
}
.mv_bb2 span {
    background: url("../images/bb2.png") no-repeat center top/cover;
    padding: 0 6px 10px 0;
}
.mv_bb1 span, .mv_bb2 span {
    width: 100%;
    height: 100%;
	 display: flex;
    align-items: center;
    justify-content: center;
}
.mv_bb2 {
    width: 258px;
    height: 128px;
    right: -203px;
    top: 113px;
}
.mv_tt1 {
    width: 490px;
    height: 46px;
    border-radius: 23px;
    background: #6aace3;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    position: static;
    margin-bottom: 10px;
}
.mv_tt2 {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.36;
    margin-bottom: 16px;
    color: #333333;
}
.mv_tt2 .lg {}
.mv_tt2 .lg.blue1 {
    color: #6aace3;
}
.mv_tt2 .lg.blue2 {
    color: #32aabe;
}
.mv_tt2 .sm {
    font-size: 80%;
}
.mv_tt3 {
    font-size: 20px;
    color: #333333;
    font-weight: 600;
    border-top: 1px #6aace3 solid;
    border-bottom: 1px #6aace3 solid;
    padding: 2px 0 7px 0;
}
.mv_list {
    display: flex;
    width: 820px;
    margin: 0 auto;
    position: absolute;
    left: calc(50% - 410px);
    top: 490px;
}
.mv_list li {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #d6eef2;
    font-size: 18px;
    font-weight: 500;
    color: #32aabe;
    line-height: 1.33;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.2);
}
.mv_list li:not(:last-child) {
    margin-right: 20px;
}
.mv_list li.item1 {}
.mv_list li.item2, .mv_list li.item4 {
    background: #e1eef9;
    color: #6aace3;
}
.mv_list li.item3 {
    margin-left: auto;
}
.mv_list li.item4 {}
.mv .idx_ttl {
    height: 320px;
    padding-top: 148px;
}
.idx_ttl {
    position: relative;
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 1.57;
    z-index: 1;
}
.idx_ttl::before {
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    z-index: -1;
}
.idx_ttl::before, .idx_ttl::after {
    position: absolute;
    content: "";
    background: #6095b8;
}
.idx_ttl::after {
    width: 120px;
    height: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -39px;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.idx_ttl .line {
    background: linear-gradient(to bottom, rgba(255, 171, 36, 0) 0%, rgba(255, 171, 36, 0) 80%, rgba(255, 171, 36, 0.5) 80%, rgba(255, 171, 36, 1) 80.1%, rgba(255, 171, 36, 1) 94%, rgba(255, 171, 36, 1) 94%, rgba(255, 171, 36, 1) 100%);
}
.idx_ttl .line2 {
    background-position: center bottom 2px;
}
/*==========================================================
M A I N    C O N T E N T
==========================================================*/
/* DEFAULT TITLE */
.ttl {
    text-align: center;
}
.ttl .ja {
    font-size: 46px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.05em;
    color: #333;
}
.ttl .ja .blue2 {
    color: #b4d6f1;
}
.ttl .ja .blue {
    color: #1c6799;
}
.ttl .ja .blue .num {
    margin: 0px 10px;
}
.ttl .ja .point {
    position: relative;
    color: #1c6799;
    padding-bottom: 8px;
}
.ttl .ja .point::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background: #1c6799;
}
.ttl .en {
    font-size: 16px;
    position: relative;
    color: #6aace3;
    width: 110px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 27px;
    font-weight: 900;
    margin: 0 auto -8px;
    left: 0;
}
.ttl .en::before {
    position: absolute;
    content: "";
    background: url("../images/brush_en.svg") no-repeat center top/110px;
    width: 110px;
    height: 41px;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}
.ttl.white .en {
    width: 120px;
}
.ttl.white .en::before {
    background: url("../images/brush_en_w.svg") no-repeat center top/120px;
    width: 120px;
}
.sec04 .ttl .en {
    font-size: 16px;
    position: relative;
    color: #6aace3;
    width: 110px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 27px;
    font-weight: 900;
    margin: 0 auto -8px;
    left: 0;
}
.sec04 .ttl .en, .sec04 .ttl .en::before {
    width: 160px;
}
.sec04 .ttl .en::before {
    background: url("../images/brush_en_lg.svg") no-repeat center top/160px;
}
/* DEFAUTL NAME BUTTON */
.btn a {
    width: 240px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--scolor);
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 0px 0px rgba(28, 103, 153, 0.2);
    position: relative;
}
.btn a::before {
    position: absolute;
    content: "";
    width: 11px;
    height: 11px;
    background: #fff;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    right: 20px;
    top: calc(50% - 5px);
}
.btn.center a {
    margin-left: auto;
    margin-right: auto;
}
section {
    padding: 40px 0;
}
.btn.lg a {
    width: 400px;
}
/*==================== SEC01 ===================*/
.sec01 {
    position: relative;
    padding-top: 120px;
}
.sec01::before {
    position: absolute;
    content: "";
    background: url("../images/idx_bg1.png") no-repeat center top/2595px;
    height: 916px;
    width: 2595px;
    left: calc(50% - 1293px);
    top: -65px;
}
.sec01 .inner {
    width: 1330px;
}
.sec01 .ttl {
    position: relative;
    z-index: 1;
    margin-bottom: 57px;
}
.sec01 .ttl::before {
    position: absolute;
    content: "";
    background: url("../images/brush1.png") no-repeat center top/cover;
    width: 801px;
    height: 291px;
    left: -17px;
    right: 0;
    margin: 0 auto;
    top: -60px;
    z-index: -1;
}
.sec01_item {
    display: flex;
    justify-content: center;
    position: relative;
    right: -3px;
}
.sec01_item .item {
    width: 405px;
    height: 405px;
    flex-shrink: 0;
}
.sec01_item .item .txt {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    padding: 30px 0 0 30px;
    letter-spacing: -0.05em;
}
.sec01_item .item .txt .line {
    background: linear-gradient(to bottom, rgba(255, 200, 100, 0) 0%, rgba(255, 200, 100, 0) 80%, rgba(255, 200, 100, 0.5) 86%, rgba(255, 200, 100, 1) 86.1%, rgba(255, 200, 100, 1) 94%, rgba(255, 200, 100, 1) 94%, rgba(255, 200, 100, 1) 100%);
}
.sec01_item .item:not(:last-child) {
    margin-right: 35px;
}
.sec01_item .item1 {
    background: url("../images/idx_img1.png") no-repeat center top/405px;
}
.sec01_item .item2 {
    background: url("../images/idx_img2.png") no-repeat center top/405px;
    margin-top: 60px;
}
.sec01_item .item3 {
    background: url("../images/idx_img3.png") no-repeat center top/405px;
}
/*==================== SEC02 ===================*/
.sec02 {
    padding-top: 75px;
}
.sec02 .inner {
    width: 100%;
    padding: 0 33px 0 32px;
    max-width: 1920px;
}
.sec02_item {
    display: flex;
    justify-content: space-between;
    padding: 56px 56px 56px 135px;
    border: 4px #addde5 solid;
    border-radius: 20px;
    background: #fff;
    position: relative;
    z-index: 2;
}
.sec02_item .item1 {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding-top: 46px;
}
.sec02_item .item1::before, .sec02_item .item1::after {
    position: absolute;
    content: "";
}
.sec02_item .item1::before {
    width: 500px;
    height: 500px;
    background: #f3fafb;
    border-radius: 50%;
    left: -79px;
    top: 0;
    z-index: -1;
}
.sec02_item .item1::after {
    background: url(../images/idx_map.png) no-repeat center top / cover;
    width: 562px;
    height: 572px;
    right: -50px;
    top: -40px;
}
.sec02_item .item2 {
    position: relative;
}
.sec02_ttl {
    font-size: 52px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 42px;
    position: relative;
    color: #333;
}
.sec02_ttl::before {
    position: absolute;
    content: "";
    background: url(../images/line_brush.png) no-repeat right top / cover;
    width: 70px;
    height: 56px;
    right: 128px;
    top: -25px;
}
.sec02_ttl .stl {
    color: #17757f;
}
.sec02_ttl .line {
    background: linear-gradient(to bottom, rgba(23, 117, 127, 0) 0%, rgba(23, 117, 127, 0) 99%, rgba(23, 117, 127, 0.5) 99%, rgba(23, 117, 127, 1) 99.1%, rgba(23, 117, 127, 1) 99%, rgba(23, 117, 127, 1) 99%, rgba(23, 117, 127, 1) 100%);
    width: 100%;
    display: inline-block;
    padding-bottom: 3px;
}
.sec02_ttl .line.let1 {
    letter-spacing: -0.05em;
}
.sec02_txt p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: -0.04em;
}
.sec02_txt p:not(:last-child) {
    margin-bottom: 36px;
}
.sec02_img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0;
}
.sec02_img img {}
.sec02_pp {
    position: absolute;
    right: -19px;
    bottom: -184px;
}
.sec02_pp img {}
.sec02_box {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 63px 0 89px 0;
    height: auto;
}
.sec02_box::before {
    position: absolute;
    content: "";
    height: calc(100% + 80px);
    width: 4000px;
    left: calc(50% - 2000px);
    bottom: 0;
    background: #6095b8;
    z-index: -1;
    top: auto;
}
.sec02_box p {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.571;
}
.sec02_box p .line {}
/*==================== SEC03 ===================*/
.sec03 {
    position: relative;
    padding-top: 80px;
    padding-bottom: 0;
}
.sec03 .inner {
    z-index: 3;
    width: 1550px;
}
.sec03::before, .sec03::after, .sec03 .inner::after {
    position: absolute;
    content: "";
    pointer-events: none;
}
/*.sec03 .inner::before,*/ .sec03_fade {
    background: url("../images/idx_brush6.png") no-repeat center top/cover;
    width: 254px;
    height: 173px;
    left: 143px;
    top: -215px;
    position: absolute;
}
.sec03::before {
    background: url("../images/idx_bg2.png") no-repeat center top/cover;
    top: -25px;
    left: calc(50% - 943px);
    width: 1929px;
    height: 933px;
    z-index: -1;
}
.sec03::after {
    background: url("../images/idx_brush2.png") no-repeat center top/cover;
    left: calc(50% - 1235px);
    top: 30px;
    width: 2470px;
    height: 1555px;
}
.sec03 .inner::after {
    background: url("../images/idx_brush3.png") no-repeat center top;
    width: 2165px;
    height: 475px;
    left: calc(50% - 1018px);
    bottom: 30px;
}
.sec03 .ttl .ja {
    letter-spacing: 0em;
}
.sec03_item {
    padding-bottom: 170px;
}
.sec03_item .item {
    display: flex;
    align-items: flex-end;
    position: relative;
    pointer-events: none;
}
.sec03_item .item .btn {
    pointer-events: auto;
}
.sec03_item .item2 .btn {
    margin-left: -10px;
}

.sec03_item .item2 {
    flex-direction: row-reverse;
    right: -20px;
}
.sec03_item .item3 {
    padding-left: 40px;
    z-index: 1;
}
.sec03_item .item3::before {
    position: absolute;
    content: "";
    background: url("../images/idx_brush4.png") no-repeat center top/cover;
    width: 252px;
    height: 259px;
    right: -35px;
    bottom: 130px;
}
.sec03_img {
    flex-shrink: 0;
    position: relative;
    margin-right: 20px;
    pointer-events: auto;
    border-radius: 50%;
    box-shadow: 10px 10px 0px 0px rgba(28, 103, 153, 0.2);
}
.item1 .sec03_img{box-shadow: none;}
.item2 .sec03_img {
    margin-right: 0;
    margin-left: 20px;
}
.sec03_img::before {
    position: absolute;
    content: "";
    background: url("../images/line_round2.png") no-repeat center top/cover;
    width: 341px;
    height: 40px;
    left: calc(50% - 155px);
    bottom: -20px;
}
.item2 .sec03_img::before {
    left: calc(50% - 170px);
}
.sec03_img .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--en);
    position: absolute;
    right: 0;
    top: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 62px;
    font-weight: bold;
    z-index: 9;
    background: #6aace3;
}
.item3 .sec03_img .icon {
    right: 20px;
    top: 10px;
}
.item2 .sec03_img .icon {
    right: auto;
    left: 10px;
}
.sec03_item .wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.sec03_item .sub_ttl {
    background: url("../images/bb3.png") no-repeat center top/cover;
    width: 179px;
    height: 56px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding: 14px 21px 0 0px;
    margin-bottom: 4px;
}
.sec03_item .title {
    color: #1c6799;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    letter-spacing: -0.05em;
}
.sec03_item .txt {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.77;
    margin-bottom: 25px;
    letter-spacing: -0.05em;
}
.sec03 .ttl {
    margin-bottom: 60px;
}
.sec03 .idx_ttl {
    padding: 80px 0 92px;
}
.sec03 .idx_ttl::before {
    height: 100%;
}
/*==================== SEC04 ===================*/
.sec04 {
    background: #f0f7fc;
    padding: 120px 0 8px 0;
    position: relative;
}
#idx_ttl01 {
	position: absolute;
	top: -15px;
}
.sec04_fade {
    position: absolute;
    content: "";
    background: url("../images/pp3.png") no-repeat center top/cover;
    width: 231px;
    height: 224px;
    left: calc(50% - 598px);
    top: -75px;
    z-index: 9;
}
.sec04 .inner {
    width: 100%;
    padding: 0;
    max-width: 1920px;
}
.sec04_item {}
.sec04_item .item {
    display: flex;
    align-items: flex-start;
    position: relative;
}
.sec04_item .item:nth-child(odd) .sec04_img {
    border-radius: 0 999px 999px 0;
    right: 15px;
}
.sec04_item .item:nth-child(even) .sec04_img {
    border-radius: 999px 0 0 999px;
}
.sec04_item .item:nth-child(even) {
    flex-direction: row-reverse;
    right: -7px;
    margin-bottom: -165px;
}
.sec04_item .item:nth-child(even) .wrap {
    padding-left: 115px;
}
.sec04_item .item1 {
    left: 5px;
    margin-bottom: -156px;
}
.sec04_item .item2 {}
.item2 .sec04_txt {
    max-width: 550px;
    margin-bottom: 18px;
}
.item3 .sec04_txt {
    max-width: 545px;
    margin-bottom: 3px;
}
.item4 .sec04_txt {
    max-width: 545px;
    margin-bottom: 34px;
}
.sec04_item .item3 {
    left: 5px;
    margin-bottom: -202px;
}
.item3 .sec04_icon {
    left: 50px;
}
.item4 .sec04_icon {
    left: 112px;
}
.sec04_img {
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 10px 10px 0px 0px rgba(28, 103, 153, 0.2);
    z-index: 1;
}
.sec04 .wrap {
    flex-grow: 1;
    padding-top: 30px;
    padding-left: 43px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.sec04 .wrap::before {
    position: absolute;
    content: "";
    background: url("../images/line_round.png") no-repeat center top/cover;
    width: 305px;
    height: 305px;
}
.sec04 .item1 .wrap::before {
    left: -70px;
    top: -135px;
}
.sec04 .item2 .wrap::before {
    right: -272px;
    top: -183px;
}
.sec04 .item3 .wrap::before {
    left: -78px;
    top: 28px;
}
.sec04 .item4 .wrap::before {
    right: -84px;
    top: -173px;
}
.sec04 .ttl {
    margin-bottom: 78px;
    position: relative;
    z-index: 2;
}
.sec04_g {
    display: flex;
    position: relative;
    margin-left: -150px;
    min-width: calc(100% + 8px);
}
.item4 .sec04_g {
    left: 0;
}
.sec04_item .item:nth-child(even) .sec04_g {
    flex-direction: row-reverse;
    margin-left: 0;
    margin-right: -80px;
}
.sec04_item .item2 .sec04_en {
    margin-right: 0;
    right: -40px;
}
.sec04_item .item4 .sec04_en {
    right: -40px;
    margin-right: 0px;
}
.sec04_en {
    margin-bottom: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #c3def4;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #6aace3;
    font-family: var(--en);
    font-weight: 700;
    justify-content: center;
    padding-bottom: 15px;
    margin-right: 30px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.sec04_en .en {}
.sec04_en .num {
    font-size: 312.5%;
}
.sec04_ttl {
    display: flex;
    flex-direction: column;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.58;
    color: #1c6799;
    align-items: flex-start;
    letter-spacing: -0.02em;
    margin-bottom: 32px !important;
    min-width: 540px;
}
.sec04_ttl span {
    border-bottom: 1px #6aace3 solid;
    display: inline-block;
    padding-bottom: 2px;
}
.sec04_ttl span {
    position: relative;
}
.sec04_ttl span.line1 {
    margin-bottom: -3px;
    border-top: 1px #6aace3 solid;
    line-height: 1.49;
}
.sec04_ttl span {
    width: 100%;
}
.sec04_txt {
    max-width: 540px;
    margin-bottom: -20px;
	    position: relative;
}
.sec04_txt p {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.77;
    letter-spacing: -0.03em;
}
.sec04_icon {
    max-width: 540px;
    text-align: center;
    position: relative;
}
.item1 .sec04_icon {
    left: 60px;
}
.item2 .sec04_icon {
    left: 55px;
}
.item3 .sec04_icon {}
.sec04_icon img {}
/*==================== SEC05 ===================*/
#sec05_wave {
    height: 130px;
    position: absolute !important;
    top: -130px;
    width: 100%;
    left: 0;
    z-index: 10;
    overflow: inherit !important;
}
.sec05 {
    background: #4985ad;
    color: #fff;
    text-align: center;
    position: relative;
    padding: 0 0 120px;
    margin-top: 120px;
}
.sec05::before, .sec05::after {
    position: absolute;
    content: "";
}
.sec05::before {
    background: url("../images/idx_brush5.png") no-repeat center top/cover;
    width: 690px;
    height: 130px;
    bottom: 0;
    left: calc(50% - 836px);
}
.sec05 .inner {
    padding: 0;
    width: 100%;
}
.sec05 .ttl .ja, .sec05 .ttl .en {
    color: #fff;
}
.sec05_img {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}
.sec05_img img {
    border-radius: 50%;
    box-shadow: 10px 10px 0px 0px rgba(28, 103, 153, 0.2);
}
.sec05_img2 {
    position: absolute;
    z-index: 1;
    margin-bottom: 60px;
    bottom: -237px;
    right: calc(50% - 625px);
}
.sec05_img::before {
    position: absolute;
    content: "";
    background: #79b4e6;
    height: 260px;
    left: 0;
    right: 0;
    top: 20px;
    margin: 0 auto;
    width: 100%;
    z-index: -1;
}
.sec05_ttl2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.058em;
    width: fit-content;
    margin: 0 auto 68px;
}
.sec05_ttl2 span:first-child {
    border-top: 1px #fff solid;
}
.sec05_ttl2 span {
    border-bottom: 1px #fff solid;
    padding-bottom: 1px;
    width: 100%;
}
.sec05 .ttl {
    margin-bottom: 35px;
}
.sec05_txt {
    margin-bottom: 120px;
}
.sec05_txt p {
    font-size: 18px;
    line-height: 1.88;
    letter-spacing: -0.03em;
}
.sec05 .btn a {
    box-shadow: 0 5px 0 0 #3c769e;
}
/*==========================================================
        F O O T E R
==========================================================*/
footer {
    background-color: #97c5ec;
    position: relative;
    z-index: 1;
}
.ft_top {}
.ft_top .inner {
    display: flex;
    justify-content: space-between;
    padding: 121px 0 41px 0px;
    width: 1280px;
}
/* FOOTER INFORMATION */
.ft_info {}
.ft_ttl {
    text-align: left;
}
.ft_ttl .en {
    margin-left: 0;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2px;
}
.ft_ttl .ja {
    color: #1c6799;
}
.ft_ttl .ja .yl {
    color: #ffe9c1;
}
.ft_txt {
    font-weight: 600;
    letter-spacing: -0.05em;
    margin-bottom: 74px;
}
.cta {}
.cta p {
    width: 680px;
    height: 100px;
    border-radius: 50px;
    border: 1px #fff solid;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}
.cta_tel {
    background: #e1eef9;
    position: relative;
    padding-left: 55px;
	padding-top: 10px;
}
.cta_tel::before {
    position: absolute;
    content: "";
    background: url("../images/idx_ic1_pc.png") no-repeat center top/cover;
    width: 55px;
    height: 67px;
    left: 46px;
    top: calc(50% - 33px);
}
.cta_tel .sm {
    position: absolute;
    width: 300px;
    height: 40px;
    border-radius: 20px;
    background: var(--mcolor);
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    left: 21px;
    top: -31px;
}
.cta_tel .sm::before {
    position: absolute;
    content: "";
    background: var(--mcolor);
    width: 15px;
    height: 11px;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.cta_tel a {
    font-weight: 700;
    font-family: var(--en);
    font-size: 44px;
    color: var(--mcolor);
    letter-spacing: 0em;
    margin-right: 30px;
    position: relative;
	margin-top: 16px;
}
.cta_tel a .small { line-height: 1.5em; display: block; font-size: 30%; text-align: center; margin-top: 5px; }
.cta_tel a::before {
    position: absolute;
    content: "";
    background: url("../images/line2.png") no-repeat right top/2px;
    width: 2px;
    height: 50px;
    right: -29px;
    top: -7px;
}
.cta .boxtime {
    display: flex;
    flex-direction: column;
    padding-left: 23px;
    color: var(--mcolor);
    font-weight: 600;
    position: relative;
    bottom: 5px;
    left: -3px;
}
.cta .boxtime .time {
    letter-spacing: 0.02em;
    margin-bottom: -7px;
    display: flex;
}
.cta .boxtime .time span:nth-child(1) {
    font-weight: 900;
    margin-right: 15px;
    width: 66px;
    flex-shrink: 0;
}
.cta .boxtime .time.tt2 {}
.cta_btn a {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 80px;
    padding-bottom: 20px;
    position: relative;
}
.cta_btn a::before {
    position: absolute;
    content: "";
    background: url()
}
.cta_btn a .sm {
    margin-bottom: 3px;
    letter-spacing: -0.05em;
    position: relative;
    padding: 0 18px;
}
.cta_btn a .sm::before, .cta_btn a .sm::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 15px;
    background: #fff;
    top: 10px;
}
.cta_btn a .sm::before {
    transform: rotate(-35deg);
    left: 5px;
}
.cta_btn a .sm::after {
    transform: rotate(35deg);
    right: 4px;
}
.cta_btn a .lg {
    display: flex;
    font-size: 36px;
    font-weight: 500;
}
.cta_btn a .lg .num {
    margin-right: 5px;
}
.cta_btn a .lg .label {
    height: 30px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    line-height: 30px;
    font-size: 16px;
    text-align: center;
    letter-spacing: -0.05em;
    padding: 0 10px;
    margin-left: 20px;
    position: relative;
    bottom: -5px;
}
.cta_btn.cta_contact a .lg .label {
    padding: 0 15px;
}
.cta_line {
    background: #06c755;
}
.cta_line a .lg .label {
    left: -5px;
}
.cta_line a::before, .cta_contact a::before {
    position: absolute;
    content: "";
}
.cta_line a::before {
    background: url("../images/idx_ic2.png") no-repeat left center/cover;
    width: 54px;
    height: 67px;
    left: 6px;
    top: 12px;
}
.cta_contact {
    background: #ffab24;
    transition: all 0.3s;
}
.cta_contact a {
    padding-left: 92px;
}
.cta_contact a::before {
    position: absolute;
    content: "";
    background: url("../images/idx_ic3.png") no-repeat center top/cover;
    width: 85px;
    height: 61px;
    left: 0;
    top: 12px;
}
.cta_contact a .lg {
    letter-spacing: -0.05em;
}
.cta_tel a .num { position: relative; }
.cta_tel .note { position: absolute; top: -12px; font-size: 30%; width: 100%; left: 0; text-align: center; }
/* CTA*/
.cta_fix.show {
    opacity: 1;
    visibility: visible;
}
.cta_fix {
    background: #fff;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 40px 0 4px 0;
    opacity: 0;
    transition: all 0.3s;
    visibility: hidden;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.cta_fix .cta {
    display: flex;
    justify-content: center;
}
.cta_fix .cta_tel::before {
    width: 33px;
    height: 40px;
    left: 18px;
    top: calc(50% - 20px);
    background: url(../images/idx_ic1_fix_pc.png) no-repeat center top / cover;
}
.cta_fix .cta p {
    width: 400px;
    height: 59px;
    border: none;
}
.cta_fix .cta p:not(:last-child) {
    margin-right: 40px;
}
.cta_fix .cta_tel {
    padding-left: 40px;
    padding-bottom: 4px;
}
.cta_fix .cta_tel .sm {
    font-size: 13px;
    height: 24px;
    line-height: 24px;
    width: 208px;
    left: 16px;
    top: -20px;
    letter-spacing: -0.05em;
}
.cta_fix .cta_tel .sm::before {
    width: 8px;
    height: 6px;
    bottom: -6px;
}
.cta_fix .cta_tel a {
    font-size: 26px;
    margin-right: 0px;
	margin-top: 0;
}
.cta_fix .cta_tel a .small {margin-top: -2px;}
.cta_fix .cta_tel a::before {
    width: 1px;
    height: 30px;
    right: -11px;
    top: 2px;
}
.cta_fix .boxtime {
    bottom: 6px;
}
.cta_fix .cta_btn a .sm {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0px;
    padding: 0 6px;
}
.cta_fix .cta_btn a .sm::before, .cta_fix .cta_btn a .sm::after {
    top: 3px;
    height: 9px;
}
.cta_fix .cta_btn a .sm::before {
    left: 0;
}
.cta_fix .cta_btn a .sm::after {
    right: 0;
}
.cta_fix .cta_btn a .lg {
    font-size: 20px;
}
.cta_fix .cta_btn a .lg .label {
    font-size: 11px;
    height: 18px;
    line-height: 17px;
    font-weight: 400;
    padding: 0 7px 0 7px;
    bottom: -8px;
    margin-left: 7px;
    letter-spacing: 0.05em;
}
.cta_fix .cta_line a .lg .label {
    margin-left: 10px;
    padding: 0 8px;
    letter-spacing: -0.05em;
}
.cta_fix .cta_btn a .lg .num {
    margin-right: 2px;
}
.cta_fix .cta_btn a {
    padding-bottom: 0;
    padding-left: 40px;
    padding-top: 6px;
}
.cta_fix .cta_line a {
    padding-left: 55px;
}
.cta_fix .cta_line a::before {
    width: 32px;
    height: 39px;
    left: 13px;
    top: 4px;
    background: url(../images/idx_ic2_fix.png) no-repeat left center / cover;
}
.cta_fix .cta_contact a {
    padding-left: 35px;
}
.cta_fix .cta_contact a::before {
    width: 50px;
    height: 36px;
    left: -18px;
    top: 4px;
    background: url(../images/idx_ic3_fix.png) no-repeat center top / cover;
}
.cta_fix .cta .boxtime .time {
    font-size: 12px;
    margin-bottom: -16px;
}
.cta_fix .cta .boxtime .time span:nth-child(1) {
    margin-right: 10px;
    width: 50px;
}
.cta_fix .cta .boxtime .time.tt2 span:nth-child(1) {
    margin-right: 5px;
    width: 40px;
}
/* FOOTER BOX RIGHT */
.ft_right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 50px;
}
.ft_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ft_box.box1 {
    margin-bottom: 38px;
}
.ft_box.box2 {}
.ft_box .title {
    height: 33px;
    border-radius: 17px;
    background: #6aace3;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 7px;
    padding: 0 12px;
}
.ft_box .link_txt {
    line-height: 2.125;
    font-weight: 600;
    color: #333;
    padding-left: 10px;
}
.ft_box .link_txt a {
    display: block;
    width: fit-content;
    color: #333;
}
.ft_box_white {
    background: #fff;
    border-radius: 20px;
    width: 440px;
    padding: 29px 15px 35px;
    margin-top: 32px;
}
.ft_logo {
    text-align: center;
    margin-bottom: 22px;
}
.ft_add {
    font-weight: 600;
    line-height: 2.125;
    padding-left: 15px;
    letter-spacing: 0;
}
address {
    text-align: center;
    font-size: 16px;
    padding: 20px 0 157px;
    color: #1c6799;
    font-weight: 500;
    letter-spacing: -0.02em;
}
/* BACK TO TOP */
.to_top {
    position: fixed;
    z-index: 9;
    width: 60px;
    height: 60px;
    bottom: 123px;
    right: 10px;
    cursor: pointer;
    transition: all .2s;
    opacity: 0;
    visibility: hidden
}
.to_top.show {
    transform: scale(1);
    opacity: 1;
    visibility: visible
}