@charset "utf-8";
/* *************************************
// スタイル
************************************* */

/* *************************************
// アニメーション
************************************* */
.animation {
	opacity: 0;
}
.animation.animated {
	opacity: 1;
}

/*   
 動きが小さいfadeInアニメーション
*/
@-webkit-keyframes fadeInUpS {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpS {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpS {
  -webkit-animation-name: fadeInUpS;
  animation-name: fadeInUpS;
}



@-webkit-keyframes fadeInLeftS {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftS {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftS {
  -webkit-animation-name: fadeInLeftS;
  animation-name: fadeInLeftS;
}



@-webkit-keyframes fadeInRightS {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightS {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
    transform: translate3d(50px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightS {
  -webkit-animation-name: fadeInRightS;
  animation-name: fadeInRightS;
}


@-webkit-keyframes Up01 {
  from {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes Up01 {
  from {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.Up01 {
  -webkit-animation-name: Up01;
  animation-name: Up01;
}


@-webkit-keyframes RightSlide {
  from {
    left: 0;
    right: 100%;
  }
  to {
    left: 0;
    right: 0;
  }

}

@keyframes RightSlide {
  from {
    left: 0;
    right: 100%;
  }
  to {
    left: 0;
    right: 0;
  }
}

/* ローディング画面 */
.sk-circle {
  margin: 100px auto;
  width: 80px;
  height: 80px;
  position: relative;
}
.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: var(--blue01);
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
          animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg); }
.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg); }
.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }
.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg); }
.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg); }
.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }
.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg); }
.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg); }
.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg); }
.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); }
.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); }
.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; }
.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; }
.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; }
.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; }
.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; }
.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; }
.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; }
.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s; }
.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s; }
.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s; }
.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s; }

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


/*****************************************************/

:root {

    --blue01: #6bb4ff;
    --blue02: #c1e0fb;
    --blue03: #f1f8fe;
    --blue04: #004e98;

    --orange: #ffb46b;

    --beige: #fbf9f6;

    --black: #000;

    --bg01: linear-gradient(to right, #7ad4fe, #6bb4ff);
    --bg02: linear-gradient(to top, #7ad4fe, #6bb4ff);
    --bg03: rgba(5, 61, 115, 0.05);
    --bg-grid: linear-gradient(transparent 95%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, .05)), linear-gradient(90deg, transparent 95%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, .05));
    
    --filter_white: invert(100%) sepia(0%) saturate(25%) hue-rotate(83deg) brightness(107%) contrast(106%);
    --filter_blue01: invert(67%) sepia(16%) saturate(4235%) hue-rotate(185deg) brightness(102%) contrast(102%);
    --filter_blue04: invert(14%) sepia(60%) saturate(5515%) hue-rotate(196deg) brightness(96%) contrast(109%);

	--line-color: #4cc764;

    --main-color: var(--blue01);
    --sub-color: var(--blue01);
    --text-color: #444;

}


u {
    text-decoration: underline;
    text-decoration-color: var(--blue02);
    text-decoration-thickness: 0.6em;
    text-decoration-skip-ink: none;
    text-underline-offset: -2px;
}

ol {
    list-style: decimal;
    margin-left: 1em;
}



body {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
}

section {
    padding: 80px 0;
}

@media (max-width: 767px) {

    section {
        padding: 40px 0;
    }

}

#container {
    overflow: hidden;
    padding-top: 100px;
}

@media (max-width: 1299px) {

    #container {
        padding-top: 80px;
    }

}

@media (max-width: 767px) {

    #container {
        padding-top: 60px;
    }

}

.title001.center {
    text-align: center;
}

.title001 .en {
    color: var(--blue01);
    font-size: 50px;
    font-weight: 900;
    line-height: 1.2;
}
.title001 .jp {
    font-size: 24px;
    color: var(--black);
    letter-spacing: 1px;
}

@media (max-width: 767px) {

    .title001 .en {
        font-size: 40px;
    }
    .title001 .jp {
        font-size: 20px;
    }
}


.title002 {
    font-size: 24px;
    margin: 3em 0 2em;
}



.title003 .en {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5em;
    color: var(--blue01);
    font-size: 16px;
    line-height: 1.2;
}
.title003 .en:after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    background: var(--black);
}
.title003 .jp {
    font-size: 24px;
    color: var(--black);
}


ul.dot > li {
    position: relative;
    line-height: 1.5;
    padding-left: 1em;
}
ul.dot > li:not(:last-child) {
    margin-bottom: 5px;
}

ul.dot > li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue04);
    position: absolute;
    top: 0.6em;
    left: 0;
}

.text_center {
    text-align: center;
}

@media (max-width: 767px) {

    .text_center {
        text-align: left;
    }
}

.googlemap > iframe {
    width: 100%;
    display: block;
}


/* header */
.h001.header {
    box-shadow: none;
    height: 80px;
    position: fixed;
}

.h001.header #inner-header {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 20px;
}

.h001.header .logo {
    height: auto;
    padding: 0;
}

.h001.header .logo a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    color: var(--black);
}
.h001.header .logo a > * {
    display: block;
}
.h001.header .logo a > .sub {
    font-size: 14px;
}
.h001.header .logo a > .name {
    font-size: 25px;
    display: flex;
    align-items: baseline;
    gap: 0.5em;
    letter-spacing: 2px;
}
.h001.header .logo a > .name > .small {
    font-size: 20px;
    letter-spacing: 0px;
}


.h001.header .menu {
    display: flex;
    width: 80px;
    height: 80px;
    display: none;
}

.h001.header label.buMenu .icon-bar {
    background: #fff;
}

.h001.header .menu label.buMenu .icon-bar:nth-child(1) {
    top: 0;
}
.h001.header .menu label.buMenu .icon-bar:nth-child(2) {
    top: calc(100% / 2 - 1px);
    transition: all 0.3s;
}
.h001.header .menu label.buMenu .icon-bar:nth-child(3) {
    bottom: 0;
}
.h001.header .menu.open label.buMenu .icon-bar:nth-child(1) {
    transform: translateY(9px) rotate(-45deg);
    top: 0;
}
.h001.header .menu.open label.buMenu .icon-bar:nth-child(2) {
    left: 50%;
    opacity: 0;
    transform: none;
}
.h001.header .menu.open label.buMenu .icon-bar:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
    bottom: 0;
}


.h001.header .menu .menu_text {
    color: #fff;
}

.h001.header .menu_box {
    position: static;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    height: 100%;
}

.h001.header .menu_box > .inner {
    position: static;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    height: 100%;
}

.h001.header a.line {
    display: none;
}
.h001.header a.tel_box {
    margin-left: 0;
}

.h001.header a.tel_box .number img {
    filter: var(--filter_blue01);
}



.h001.header a.contact_box {
    background: var(--bg01);
    border-radius: 100vmax;
    padding: 10px 30px;
    margin: 0 20px;
    align-self: center;
    position: relative;
    margin-top: 20px;
}

.h001.header a.contact_box span.fukidashi {
    background: var(--blue04);
    color: #fff;

    position: absolute;
    left: 0;
    bottom: calc(100% - 5px);
    /* transform: translateX(-50%); */
    line-height: 1.2;
    padding: 4px 8px;
    border-radius: 100vmax;
}
.h001.header a.contact_box span.fukidashi:after {
    content: "";
    display: block;
    width: 8px;
    height: 5px;
    background: var(--blue04);
    position: absolute;
    top: 100%;
    left: 25%;
    transform: translateX(-50%);
    clip-path: polygon(75% 0, 0 0, 100% 100%);
}

.h001.header .menu_box nav > ul > li > a:hover {
    color: var(--blue04);
}

.h001.header nav ul.sub-menu {
	background: #fff;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
	overflow: hidden;
    margin-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    width: 300px;
    flex-wrap: wrap;
}
.h001.header nav > ul > li:hover > ul.sub-menu {
    top: auto;
    visibility: visible;
}
.h001.header nav ul.sub-menu > li {
    width: 100%;
    position: relative;
}
.h001.header nav ul.sub-menu > li > a {
    text-align: left;
    transition: background 0.3s;
}
.h001.header nav ul.sub-menu > li > a:hover {
    background: var(--blue02);
}

@media (max-width: 1299px) {

    
    .h001.header #inner-header {
        padding: 0 80px 0 20px;
    }
    .h001.header .menu {
        display: flex;
        background: var(--blue01);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        top: 10px;
        right: 10px;
    }

    .h001.header .menu_box {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.5s, visibility 0.5s;
        padding: 80px 5%;
        background: #fff;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 60px;
        pointer-events: none;
    }
    .h001.header .menu.open + .menu_box {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .h001.header .menu_box > .inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 20px;
        max-width: 650px;
    }

    .h001.header .menu_box nav {
        width: 100%;
    }
    .h001.header .menu_box nav > ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 60px;
    }
    .h001.header .menu_box nav > ul > li.menu_business {
        grid-column: 2 / 3;
        grid-row: 1 / 7;
    }


    .h001.header .menu_box nav ul {
        border: none;
    }

    .h001.header .menu_box nav ul li {
        border: none;
        grid-column: 1 / 2;
    }
    .h001.header .menu_box nav ul li a {
        display: inline-block;
        font-size: 16px;
    }

    .h001.header .menu_box nav ul li.sp_only {
        display: block;
    }

    .h001.header .menu_box nav ul.sub-menu {
        width: 100%;
        position: static;
        visibility: visible;
        box-shadow: none;
        background: transparent;
    }

    .h001.header nav ul.sub-menu > li > a:before {
        content: "-";
        display: inline;
        margin-right: 0.5em;
    }

    .h001.header nav ul.sub-menu > li > a:hover {
        background: transparent;
    }

    .h001.header a.line {
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--line-color);
        color: #fff;
        font-size: 18px;
        padding: 0 15px;
        height: 50px;
        border-radius: 15px;
    }
    .h001.header a.line > img {
        display: block;
        height: 2em;
        width: auto;
        margin-right: 0.5rem;
    }

    .h001.header a.tel_box {
        margin-top: 0;
    }
}

@media (max-width: 767px) {

    .h001.header {
        height: 60px;
    }
    .h001.header #inner-header {
        height: 60px;
        padding: 0 60px 0 10px;
    }
    .h001.header .logo a > .sub {
        font-size: 12px;
    }
    .h001.header .logo a > .name {
        font-size: 20px;
    }

    .h001.header .menu {
        width: 50px;
        height: 50px;
        top: 5px;
        right: 5px;
    }

    .h001.header label.buMenu {
        height: 20px;
    }

    .h001.header .menu .menu_text {
        margin-top: 3px;
    }

    .h001.header .menu_box {
        height: calc(100vh - 60px);
        top: 60px;
        padding-bottom: 15px;
        padding-top: 15px;
        overflow-y: auto;
    }

    .h001.header .menu_box > .inner {
        height: auto;
        width: 100%;
        gap: 20px;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .h001.header .menu_box nav ul {
        display: block;
    }

    .h001.header .menu_box nav ul li a {
        padding: 0.5em 0.75em;
    }

    .h001.header a.line {
        width: 80%;
        max-width: 300px;
        margin-bottom: 10px;
        height: 65px;
        padding: 0;
    }
    .h001.header a.line > img {
        height: 60px;
        width: auto;
    }

    .h001.header a.tel_box {
        margin: 0;
        width: 80%;
        max-width: 300px;
        background: var(--blue03);
        padding: 5px;
        border-radius: 15px;
    }
    
    .h001.header a.contact_box {
        margin-top: 30px;
        width: 80%;
        max-width: 300px;
        padding: 15px 5px;
        border-radius: 15px;
    }


}


/* bottom contact */
.bottom_contact {
    position: relative;
    z-index: 0;
    padding: 80px 0;
    overflow: hidden;
}
.bottom_contact:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue04);
    opacity: 0.5;
}
.bottom_contact img.bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter:blur(2px);
}

.bottom_contact .title001 {
    text-align: center;
    margin-bottom: 40px;
}
.bottom_contact .title001 > * {
    color: #fff;
}

.bottom_contact .text_center {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
}

.bottom_contact .contact_list.three_in_one {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.bottom_contact .contact_list > div {
    background: #fff;
    width: 100%;
    padding: 30px 15px;
    border-radius: 10px;
    display: block;
}

.bottom_contact .contact_list .box .title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
}

.tel_number {
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    line-height: 1.2;
    letter-spacing: 2px;
}
.tel_number .icon {
    height: 40px;    
}
.tel_number .icon > img {
    height: 40px;
    display: block;
    filter: var(--filter_blue01);
}

.bottom_contact .contact_list .box .time {
    font-size: 13px;
    text-align: center;
}

.bottom_contact .contact_list .box .btn > a {
    display: flex;
    justify-content: center;;
    align-items: center;
    gap: 15px;
    font-size: min(1.2vw, 18px);
    padding: 10px;
    width: 80%;
    max-width: 300px;
    height: 60px;
    background: var(--blue01);
    color: #fff;
    margin: auto;
    border-radius: 10px;
}
.bottom_contact .contact_list .box .btn > a.line {
    padding: 5px;
    background: var(--line-color);
}

.bottom_contact .contact_list .box .btn > a img {
    height: 1.2em;
    width: auto;
}
.bottom_contact .contact_list .box .btn > a.line img {
    height: 2.5em;
    margin-left: -10px;
}

@media (max-width: 1199px) {
    .bottom_contact .contact_list.three_in_one {
        gap: 20px;
    }
}
@media (max-width: 1029px) {
    .bottom_contact .contact_list.three_in_one {
        grid-template-columns: 100%;
        max-width: 600px;
    }
    .bottom_contact .contact_list .box .tel_number {
        font-size: 30px;
    }
    .bottom_contact .contact_list .box .btn > a {
        font-size: 20px;
    }
}

@media (max-width: 767px) {

    .bottom_contact .contact_list > div {
        padding: 15px;
    }

    .bottom_contact .contact_list .box .btn > a {
        font-size: 16px;
    }

}



/*footer*/
.f001 {
    background: #fff;
    color: var(--text-color);
}

.f001 #inner-footer {
    justify-content: space-between;
}

.f001 #inner-footer > * {
    margin: 0;
}

.f001 .logo {
    display: table;
}
.f001 .logo a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    color: var(--text-color);
}
.f001 .logo a > * {
    display: block;
}
.f001 .logo a > .sub {
    font-size: 14px;
}
.f001 .logo a > .name {
    font-size: 25px;
    display: flex;
    align-items: baseline;
    gap: 0.5em;
    letter-spacing: 2px;
}
.f001 .logo a > .name > .small {
    font-size: 20px;
    letter-spacing: 0px;
}

.f001 nav {
    display: flex;
    gap: 40px;
}
.f001 ul.nav {
    width: auto;
}

.f001 .nav li a {
    padding: 0;
    display: inline-block;
}


.f001 .copyright {
    background: #fff;
    border-top: 1px solid var(--blue04);
    color: var(--blue04);
}

@media (max-width: 1029px) {
    .f001 #inner-footer {
        justify-content: center;
        text-align: center;
    }
    .f001 .logo {
        margin-left: auto;
        margin-right: auto;
    }
    .f001 nav {
        display: none;
    }

}



.fixed_contact {
	position: fixed;
	top: 150px;
	right: 0;
	z-index: 99;
}

.fixed_contact a {
	color: #fff;
	writing-mode: vertical-lr;
	display: flex;
	align-items: center;
	width: 65px;
	padding: 10px 0 20px;
	border-radius: 20px 0 0 20px;
	transition: opacity 0.3s;
}

.fixed_contact a:hover {
	opacity: 0.7;
}

.fixed_contact a.line {
	background: var(--line-color);

}
.fixed_contact a.contact {
    display: none;
	background: var(--line-color);
}
.fixed_contact a.tel {
	background: var(--blue04);
    display: none;
}
.fixed_contact a.fee {
    display: none;
    background: var(--blue01);
}
.fixed_contact a.home {
    display: none;
    background: #a0cefe;
}

.fixed_contact a img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}
.fixed_contact a > span {
	flex-direction: column;
	font-weight: bold;
	font-size: 20px;
    margin-top: -5px;
}

.fixed_contact a > span > span.small {
    font-size: 12px;
    letter-spacing: -1px;
    writing-mode: horizontal-tb;
}

@media (max-width: 767px) {
    .fixed_contact.sp_only {
        display: flex;
    }
    .fixed_contact.pc_only {
        display: none;
    }
	.fixed_contact {
		top: auto;
		bottom: 0;
		left: 0;
		display: flex;
	}
	.fixed_contact a {
        flex-direction: column;
		width: 25%;
		border-radius: 20px 20px 0 0;
		writing-mode: horizontal-tb;
		padding: 5px 10px;
		margin: 0 auto;
		justify-content: center;
        align-items: center;
	}

    .fixed_contact a.contact {
        display: flex;
    }
    .fixed_contact a.tel {
        display: flex;
    }
    .fixed_contact a.fee {
        display: flex;
    }
    .fixed_contact a.home {
        display: flex;
    }
    .fixed_contact a.fee > img,
    .fixed_contact a.tel > img,
    .fixed_contact a.home > img {
        filter: var(--filter_white);
    }
	.fixed_contact a img {
    	height: 25px;
		width: 25px;
	}
	.fixed_contact a > span {
		font-size: 10px;
        margin: 0;
	}







}



/*top*/
.mv001 {
    height: auto;
    background: #fff;
    min-height: 600px;
    height: calc(100vh - 150px);
    padding-left: 150px;
}
.mv001 .mv001_slider {
    width: 100%;
}
.mv001 .mv001_slider::after {
    display: none;
}
.mv001 .mv001_slider > .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50px 0 0 50px;
}

.mv001 .mv001_contents {
    display: block;
    width: calc(100% - 150px);
    height: 100%;
    position: absolute;
    top: 0;
    left: 150px;
}
.mv001 .mv001_contents .mv001_text {
    position: absolute;
    top: 60%;
    left: auto;
    left: 10%;
    text-align: left;
    display: grid;
    gap: 15px 0;
}
.mv001 .mv001_contents .mv001_text > span {
    background: #fff;
    color: var(--blue01);
    display: inline-block;
    padding: 0 10px;
    line-height: 1.5;
}


.scroll_down {
  position:absolute;
  bottom: 0px;
  left: 5%;
  z-index: 5;
}

.scroll_down > .text {
    position: absolute;
    left: 10px;
    bottom: 35px;
    color: var(--black);
    font-size: 12px;
    writing-mode: vertical-lr;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background:var(--black);
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:100px;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:1px;
  height: 100px;
  background:var(--black);
}

@media (max-width: 1029px) {
    .mv001 {
        padding-top: 50px;
        padding-left: 80px;
        max-height: 700px
    }
    .mv001 .mv001_slider {
        width: calc(100vw - 80px);
    }

    .mv001 .mv001_contents .mv001_text {
        font-size: 25px;
    }

    .scroll_down {
        left: 20px;
    }
}

@media (max-width: 767px) {
    .mv001 {
        padding: 0;

    }
    .mv001 .mv001_slider {
        width: 100%;
    }
    .mv001 .mv001_slider > .image {
        height: calc(100vh - 80px);
        border-radius: 0;
        object-position: 70% center;
    }

    .mv001 .mv001_contents {
        width: 100%;
        left: 0;
        right: 0;
        top: 0;
    }
    .mv001 .mv001_contents .mv001_text {
        font-size: min(5vw, 30px);
        text-align: center;
        left: 5%;
        right: 5%;
    }
    .mv001 .mv001_contents .mv001_text > span {
        display: inline-block;
        padding: 5px 10px;
        line-height: 1.5;
    }

    .scroll_down {
        bottom: 100px;
        display: none;
    }
    .scroll_down:before {
        background: #fff;
    }
    .scroll_down:after {
        background: #fff;
    }
    .scroll_down > .text {
        color: #fff;
    }

}



#top_about {
    padding-top: 150px;
    position: relative;
    z-index: 1;
}

#top_about .two_in_one {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image text";
}
#top_about .two_in_one > .image {
    grid-column: image;
    grid-row: 1;
    display: flex;
    align-items: start;
    justify-content: flex-end;
}
#top_about .two_in_one > .text {
    grid-column: text;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, 1.4vw, 18px);
    writing-mode: vertical-rl;
    padding-left: 70px;
    padding-right: 70px;
}

#top_about .two_in_one > .text > .inner {

}

#top_about .text h2 {
    margin-left: 2em;
}
#top_about .text h2 .en {
    letter-spacing: 2px;
}

#top_about .text h2 .en:after {
    width: 1px;
    height: 100px;
}

#top_about .two_in_one > .image > .inner {
    width: 80%;
}
#top_about .two_in_one > .image > .inner > img {
    width: 100%;
    display: block;
    border-radius: 30px;
}

#top_about .text p {
    margin-left: 1.5em;
}

#top_about .text p > span {
    color: var(--blue01);
}

#top_about .btn {
    text-align: right;
}
#top_about .btn > a {
    background: var(--blue01);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 2em;
    padding: 20px 0 10px;
    height: 180px;
    border-radius: 100vmax;
    margin-top: auto;
    transition: background 0.3s;
}

#top_about .btn > a > span {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#top_about .btn > a img {
    width: 10px;
    height: 10px;
    margin-left: 2px;
    filter: var(--filter_white);
}

#top_about .btn > a:hover {
    background: var(--blue04);
}

@media (max-width: 1199px) {
    #top_about .two_in_one {
        grid-template-columns: 100%;
        grid-template-rows: auto;
        grid-template-areas: none;
        gap: 50px;
    }
    #top_about .two_in_one > .text,
    #top_about .two_in_one > .image {
        grid-row:auto;
        grid-area: auto;
    }

    #top_about .two_in_one > .text {
        font-size: 18px;
    }
    #top_about .two_in_one > .image {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    #top_about {
        padding-top: 80px;
    }
    #top_about .two_in_one > .text {
        writing-mode: vertical-rl;
        font-size: 16px;
        writing-mode: horizontal-tb;
        padding-left: 20px;
        padding-right: 20px;
    }
    #top_about .text h2 {
        margin-left: 0;
        margin-bottom: 2em;
    }
    #top_about .text h2 .en:after {
        width: 100px;
        height: 1px;
    }

    #top_about .text p {
        margin-left: 0;
    }
    #top_about .btn {
        margin: 40px 0 0;
    }
    #top_about .btn > a {
        width: 200px;
        height: auto;
        padding: 5px 10px 5px 20px;
        margin: auto;
        justify-content: center;
        gap: 0 20px;
    }
}


#top_business {
    position: relative;
    z-index: 0;
}

#top_business:after {
    content: "";
    display: block;
    width: 50vw;
    aspect-ratio: 1;
    border-radius: 50%;
    position: absolute;
    top: 10%;
    left: 20%;
    transform: translate(-50%, -50%);
    background: #fbf9f6;
    z-index: -1;
}


#top_business > .inner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


#top_business .top_business_text {
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}
#top_business .top_business_text > div {
    width: auto;
    max-width: 50%;
}



.business_list2 {
    display: grid;
    grid-template-columns: 100%;
    margin-bottom: 50px;
}


.business_list2 > .item {
    width: 100%;
    display: grid;
    grid-template-columns: 40% 1fr;
    grid-template-rows: auto;
    grid-template-areas: "image text";
    padding: 40px 0;
    gap: 0 60px;
    align-items: center;
    border-bottom: 1px solid #ccc;
    color: var(--text-color);
    position: relative;
}

.business_list2 > .item:after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: -1px;
    left: 0;
    transform: scaleX(0);
    background: var(--blue01);
    transition: all 1s;
    transform-origin: left;
}
.business_list2 > .item:hover:after {
    transform: scaleX(100%);
}

.business_list2 .image {
    grid-column: image;
    grid-row: 1;
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    width: 100%;
    z-index: -1;
}

.business_list2 .image > img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: all 0.3s;
}

.business_list2 .item:hover .image > img {
    transform: scale(1.05);
}

.business_list2 .item > .inner {
    grid-column: text;
    grid-row: 1;
}

.business_list2 h4,
.business_list2 h3 {
    text-align: left;
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.business_list2 h4 > span,
.business_list2 h3 > span {
    font-size: 20px;
    display: block;
}

.business_list2 .detail {
    margin: 40px 0;
}

.business_list2 .price {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: baseline;
    white-space: nowrap;
    color: var(--sub-color);
    margin: 0;
    margin-right: auto;
}


.business_list2 .price .fixed_amount {
    font-size: 20px;
    letter-spacing: 2px;
    background: var(--sub-color);
    color: #fff;
    margin-right: 15px;
    padding: 5px 10px;
    border-radius: 100vmax;
    font-weight: 500;
    line-height: 1.5;
    align-self: flex-end;
    margin-bottom: 15px;
}

.business_list2 .price .num {
    font-size: 70px;
    line-height: 1;
    font-weight: 900;
    font-family: "M PLUS Rounded 1c", sans-serif;

}
.business_list2 .price .yen {
    font-size: 35px;
    font-weight: 900;
    margin-left: 5px;
}
.business_list2 .price .tax {
    font-size: 20px;
    font-weight: 500;
}




.business_list2 .item a.btn {
    color: var(--blue01);
    border: 1px solid var(--blue01);
    background: #fff;
    padding: 5px 20px;
    text-align: center;
    width: 220px;
    max-width: 100%;
    margin: 0 0 0 auto;
    border-radius: 100vmax;
    position: relative;
    transition: background 0.3s;
    display: table;
}

.business_list2 .item a.btn:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: rotate(45deg) translateY(-50%);
    border-top: 2px solid var(--blue01);
    border-right: 2px solid var(--blue01);
    transform-origin: top;
}

.business_list2 .item .btn:hover {
    background: var(--blue01);
    color: #fff;
}
.business_list2 .item .btn:hover:after {
    border-color: #fff;
}



.business_list {
    display: grid;
    gap: 60px;
    margin-bottom: 100px;
}
.business_list a {
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 0;
}

.business_list .image {
    grid-column: image;
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    width: 100%;
    z-index: -1;
}

.business_list .image > img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    transition: all 0.3s;
}

.business_list a:hover .image > img {
    transform: scale(1.05);
}

.business_list a > .inner {
    position: relative;
    z-index: 1;
    grid-column: text;
    grid-row: 1;
}

.business_list h4,
.business_list h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
}

.business_list h4 > span,
.business_list h3 > span {
    font-size: 16px;
    letter-spacing: 0;
    white-space: nowrap;
}

.business_list .price {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    padding: 5px;
    font-size: 50px;
    letter-spacing: 2px;
    line-height: 1;
    white-space: nowrap;
    color: var(--sub-color);
    max-width: 100%;
    width: 300px;
    margin: 0 auto 20px;
    font-weight: 900;
    position: relative;
    z-index: 0;
}
.business_list .price:after {
    content: "";
    display: block;
    width: 100%;
    height: 15px;
    background: var(--blue03);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;

}

.business_list .price .fixed_amount {
    font-size: 16px;
    background: var(--sub-color);
    color: #fff;
    margin-right: 15px;
    padding: 5px 10px;
    border-radius: 100vmax;
    font-weight: 500;
}

.business_list .price span.cost {
    font-size: 16px;
    margin-right: 10px;
    font-weight: normal;
}
.business_list .price .yen {
    font-size: 20px;
    font-weight: 500;
    margin-left: 5px;
}
.business_list .price .tax {
    font-size: 14px;
    font-weight: 500;
}

.business_list .detail {
    text-align: left;
}

.business_list.three_in_one a .btn {
    color: var(--blue01);
    border: 1px solid var(--blue01);
    background: #fff;
    padding: 5px 20px;
    text-align: center;
    max-width: 220px;
    width: 100%;
    margin: 0 auto;
    border-radius: 100vmax;
    position: relative;
    text-shadow: none;
    margin-top: auto;
    transition: background 0.3s;
}

.business_list.three_in_one a .btn:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: rotate(45deg) translateY(-50%);
    border-top: 2px solid var(--blue01);
    border-right: 2px solid var(--blue01);
    transform-origin: top;
}

.business_list.three_in_one a:hover .btn {
    background: var(--blue01);
    color: #fff;
}
.business_list.three_in_one a:hover .btn:after {
    border-color: #fff;
}

.business_list.two_in_one a {
    width: 100%;
}


.business_list.two_in_one .image {
    margin-bottom: 0;
    position: relative;
    z-index: 0;
}
.business_list.two_in_one a .image > img {
    position: relative;
    z-index: -1;
}
.business_list.two_in_one a .image:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3478b8;
    opacity: 0.7;
    border-radius: 0 40px 0 40px;
}

.business_list.two_in_one .image > img {
    aspect-ratio: 2 / 1;
}


.business_list.two_in_one a > .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 40px;
    display: grid;
    place-content: center;
    text-shadow: 0px 0px 10px var(--blue04);
}


.business_list.two_in_one h4,
.business_list.two_in_one h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 1em;
}
.business_list.two_in_one .detail {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.business_list.two_in_one a .btn {
    color: #fff;
    border: 1px solid #fff;
    background: rgba(0, 78, 152, 0.3);
    text-shadow: none;
    padding: 5px 20px;
    text-align: center;
    max-width: 220px;
    width: 100%;
    margin: 0 auto;
    border-radius: 100vmax;
    position: relative;
    margin-top: auto;
    transition: background 0.3s;
    align-self: end;
}

.business_list.two_in_one a .btn:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: rotate(45deg) translateY(-50%);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform-origin: top;
}

.business_list.two_in_one a:hover .btn {
    background: #fff;
    color: var(--blue01);
}
.business_list.two_in_one a:hover .btn:after {
    border-color: var(--blue01);
}




@media (max-width: 1299px) {

    .business_list2 > .item {
        gap: 0 40px;
    }
    .business_list2 h4,
    .business_list2 h3 {
        line-height: 1.5;
    }
    .business_list2 .detail {
        margin: 20px 0;
    }
    .business_list2 .price {
        margin-bottom: 15px;
    }
    .business_list2 .image > img {
        aspect-ratio: 3 / 2;
    }



    #top_business .top_business_text {
        gap: 40px 0;
    }
    #top_business .top_business_text > div {
        width: 100%;
        max-width: 100%;
    }

    .business_list {
        width: 80%;
        margin: auto;
        margin-bottom: 60px;
        grid-template-columns: 100%;
    }
    .business_list.two_in_one.grid {
        grid-template-columns: 100%;
    }
    .business_list a {
        gap: 10px;
    }

    .business_list.two_in_one .image > img {
        aspect-ratio: 5 / 2;
        min-height: 300px;
    }

    .business_list a > .inner {
        display: grid;
        align-items: baseline;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 20px 0;
        padding-right: 60px;
        position: relative;
    }

    .business_list h4 {
        margin-bottom: 0;
    }
    .business_list .price {
        margin-bottom: 0;
    }
    .business_list .detail {
        grid-column: 1 / 3;
        padding: 0;
    }

    .business_list.two_in_one a > .inner {
        grid-template-columns: 100%;
    }
}

@media (max-width: 767px) {

    #top_business:after {
        width: 100vw;
    }

    #top_business .top_business_text {
        margin-bottom: 40px;
    }

    .business_list2 > .item {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px 0;
    }
    .business_list2 .image > img {
        aspect-ratio: 16 / 9;
    }

    .business_list2 h4,
    .business_list2 h3 {
        font-size: 25px;
    }

    .business_list2 .price {
        justify-content: center;
    }

    .business_list2 .price .fixed_amount {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .business_list2 .price .num {
        font-size: 50px;
    }

    .business_list2 .price .yen {
        font-size: 25px;
    }
    .business_list2 .price .tax {
        font-size: 16px;
    }

    .business_list2 .item a.btn {
        margin-top: 15px;
        margin: 15px auto 0;
    }



    .business_list {
        width: 100%;
    }
    .business_list a > .inner {
        display: block;
        padding: 0;
    }

    .business_list h4,
    .business_list h3 {
        font-size: 20px;
        text-align: center;
    }
    .business_list .price {
        justify-content: center;
    }
    .business_list .detail {
        margin-top: 10px;
    }

    .business_list.two_in_one a > .inner {
        padding: 30px 20px;
        gap: 0;
        position: static;
    }

    .business_list.two_in_one .image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        
    }

    .business_list.two_in_one .image > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#top_price {
    padding: 80px 0;
    margin-top: 80px;
    position: relative;
    z-index: 0;
}
#top_price:after {
    content: "";
    display: block;
    height: 100%;
    width: 98%;
    max-width: calc((100vw - 1400px) / 2 + 1440px);
    position: absolute;
    top: 0;
    right: 0;
    background: var(--beige);
    z-index: -1;
    border-radius: 50px 0 0 50px;
}

#top_price > .inner {
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
}

#top_price .two_in_one.grid {
    gap: 60px;
}


#top_price .two_in_one .text {
    padding-left: 40px;
}
#top_price .two_in_one .image {
    position: relative;
}
#top_price .two_in_one .image > img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 670px;
    height: 140%;
    max-block-size: none;
}


#top_price .title001 {
    margin-bottom: 40px;
}

#top_price .btn001 {
    margin-bottom: 0;
}

#top_price .btn001 > a {
    margin-left: 0;
}

@media (max-width: 1029px) {

    #top_price .two_in_one .image > img {
        position: static;
        height: auto;
    }
}

@media (max-width: 767px) {
    #top_price {
        padding: 50px 0;
        margin-top: 50px;
    }
    #top_price:after {
        height: 100%;
        width: 100%;
        max-width: 100%;
        top: 0;
        right: 0;
        border-radius: 0;
    }

    #top_price > .inner {
        width: 90%;
    }

    #top_price .two_in_one.grid {
        grid-template-columns: 100%;
    }
    #top_price .two_in_one .text {
        padding: 0;
    }

}



#top_other_link .two_in_one {
    gap: 40px 5%;
}
#top_other_link a {
    position: relative;
    z-index: 0;
    overflow: hidden;
    aspect-ratio: 5 / 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px;
}

#top_other_link a:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue01);
    opacity: 0.5;
}
#top_other_link a:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: url(../images/common/icon_arrow2_w.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
#top_other_link a:hover:after {
    background-image: url(../images/common/icon_arrow2_bw.svg);
}

#top_other_link a:nth-child(odd) {
    border-radius: 0 50px 50px 0;    
}
#top_other_link a:nth-child(even) {
    border-radius: 50px 0 0 50px;    
}


#top_other_link a img.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: all 0.3s;
}
#top_other_link a:hover img.bg {
    transform: scale(1.05);
}

#top_other_link a .title003 {
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0px 0px 10px var(--blue04);
}
#top_other_link a .title003 .en {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
    padding-left: 5px;
}
#top_other_link a .title003 .en:after {
    background: #fff;
}
#top_other_link a .title003 .jp {
    color: #fff;
}

@media (max-width: 1199px) {

    #top_other_link a {
        aspect-ratio: 5 / 3;
    }
    #top_other_link a:after {
        width: 30px;
        height: 30px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    #top_other_link a {
        width: 100%;
    }
    #top_other_link a:nth-child(odd),
    #top_other_link a:nth-child(even) {
        border-radius: 0;
    }

}


#top_access {
    padding: 0 0 80px;
}

#top_access .text {
    background: var(--blue03);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

#top_access .text > .inner {
    width: auto;
    max-width: 90%;
}

#top_access .text .btn001 {
    margin-bottom: 0;
}

#top_access .title001 {
    margin-bottom: 40px;
}

#top_access .address_text {
    margin-bottom: 20px;
}
#top_access .address_text .name {
    font-size: 20px;
}
#top_access .address_text .address {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
}
#top_access .address_text .address > span {
    white-space: nowrap;
}

@media (max-width: 1029px) {
    #top_access .two_in_one {
        grid-template-columns: 100%;
    }

    #top_access .text > .inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 600px;
        max-width: 90%;
    }
    #top_access .title001 {
        width: 100%;
    }
    #top_access .address_text,
    #top_access ul.dot {
        width: auto;
    }
    #top_access .text .btn001 {
        width: 100%;
    }

    #top_access .googlemap > iframe {
        height: 300px;
    }
}

/* *************************************
// 下層ページ
************************************* */

.hl002 {
    position: relative;
    background: var(--bg02);
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 80px 15px 120px;
    font-size: 30px;
    color: #fff;
    z-index: 0;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    border-radius: 40px 40px 0 0;
    max-width: 1400px;
}

.hl002:before {
    content: "";
    z-index: 0;
    position: absolute;
    bottom: -1px;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/common/h1_line.svg);
    background-size: 1200px;
    background-position: bottom;
    background-repeat: repeat no-repeat;
}

.hl002 span {
    font-size: 60%;
}

@media (max-width: 767px) {

    .hl002 {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        border-radius: 0;
        padding: 30px 15px 80px;
        font-size: 20px;
    }
    .hl002:before {
        background-size: 150%;
    }

}

.image.radius {
    border-radius: 40px;
    overflow: hidden;
}
.image.radius > img {
    width: 100%;
    display: block;
}



/* *************************************
// ごあいさつ
************************************* */

.page_about .title001 {
    margin-bottom: 50px;
}

#about_message .two_in_one {
    grid-template-columns: 100%;
    gap: 40px;
}

#about_message .two_in_one > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#about_message .two_in_one > div > .inner {
    width: auto;
    max-width: 90%;
    margin: auto;
}

#about_message .two_in_one > div .image {
    max-width: 600px;
    margin: 0 auto 40px;
}

#about_message .two_in_one > div .image > img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

#about_message .title001 {
    margin-bottom: 50px;
}
#about_message .name {
    font-size: 25px;
}
#about_message .name .kana  {
    font-size: 16px;
}
#about_message .name .kana:before {
    content: "／";
    display: inline-block;
    margin: 0 0.5em;

}

#about_message .box {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 20px 40px;
    margin: 50px 0;
}
#about_message .box > .item {
    background: var(--bg03);
    padding: 20px 30px;
    border-radius: 20px;
}

#about_message .box > .item h3 {
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 0 15px;
    font-size: 20px;
}
#about_message .box > .item h3:before,
#about_message .box > .item h3:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 1px;
    background: #000;
}

#about_message .box .profile3 {
    grid-column: 1 / 3;
}

#about_message .box table tr th,
#about_message .box table tr td {
    padding: 5px 10px;
}

#about_message .box table tr td {
    padding-left: 2em;
}

#about_message .three_in_one {
    gap: 20px;
}

ul.dot01 > li {
    position: relative;
    line-height: 1.8;
    padding-left: calc(20px + 0.25em);
    margin-bottom: 0.5em;
}
ul.dot01 > li:before {
    content: "";
    position: absolute;
    top: calc(1.8em / 2);
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--blue01);
    border-radius: 50%;
}


table.company_info {
    min-width: 80%;
    margin: 0 auto;
}

table.company_info tr th,
table.company_info tr td {
    padding: 15px;
    border-bottom: 1px solid #ccc;
}

table.company_info th {
    color: var(--blue04);
}


.image_list {
    gap: 40px;
}

.image_list .item .image {
    margin-bottom: 15px;
}

.image_list .item h3 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: var(--blue04);
}

@media (max-width: 1029px) {

    #about_message .box {
        grid-template-columns: 100%;
        grid-template-rows: none;
    }

    #about_message .box .profile3 {
        grid-column: auto;
    }
}  

@media (max-width: 767px) {

    #about_message .box {
        margin-top: 20px;
    }

    #about_message .box table tr th,
    #about_message .box table tr td {
        padding: 5px 0;
    }
    #about_message .box table tr td {
        padding-left: 1em;
    }

    table.company_info {
        width: 100%;
    }
    table.company_info tr th,
    table.company_info tr td {
        border: none;
    }
    table.company_info tr th {
        background: var(--bg03);
    }
}


/* *************************************
// よくある質問
************************************* */
#faq_contents h2 {
    text-align: center;
    color: var(--blue04);
}

.faq_list > .item {
    margin-bottom: 60px;
}
.faq_list > .item .question {
    border: none;
    margin-bottom: 20px;
    padding-left: 3em;
}
.faq_list > .item .question::before {
    border-radius: 50%;
    font-size: 25px;
    left: 0;
    top: -10px;
    transform: none;
}

.faq_list > .item .answer {
    margin-left: 50px;
    padding-top: 4px;
}

.faq_list > .item .answer::after {
    border-radius: 50%;
    background: var(--blue03);
    color: var(--blue01);
    border: none;
    font-size: 25px;
    left: 0;
    top: -5px;
}

@media (max-width: 767px) {

    .faq_list > .item .answer {
        margin-left: 0;
    }

}

/* *************************************
// アクセス
************************************* */

.page_access .title001 {
    margin-bottom: 50px;
}

#access_map .text_center {
    margin-bottom: 80px;
}

#access_map .googlemap {
    width: 100%;
    margin-bottom: 20px;
}

#access_map .address {
    text-align: center;
}

#access_map .address h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--blue04);
}

#access_office {
    background: var(--beige);
}


/* *************************************
// ご利用の流れ
************************************* */

#flow_contents .text_center {
    margin-bottom: 50px;    
}


.flow_link {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.flow_link > a {
    display: block;
    padding: 10px;
    background: var(--blue01);
    color: #fff;
    font-size: 14px;
}
.flow_link > a:after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 10px;
    background: #fff;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    margin-left: 10px;
}

.flow_link > a .num {
    margin-right: 10px;
    font-size: 16px;
    font-weight: bold;
}
@media (max-width: 767px) {

    .flow_link {
        grid-template-columns: repeat(2, 1fr);
    }
    .flow_link > a,
    .flow_link > a .num {
        font-size: 13px;
    }
}


.flow_list {
    display: grid;
    grid-template-columns: 100%;
    gap: 60px 0;
}

.flow_list > .item {
    display: grid;
    grid-template-columns: 100px 1fr 200px;
    gap: 0 40px;
    align-items: center;
    position: relative;
    z-index: 0;
}
.flow_list > .item:not(:last-child):before {
    content: "";
    display: block;
    border-left: 4px dashed var(--blue02);
    width: 1px;
    height: calc(100% + 60px);
    position: absolute;
    top: 50%;
    left: 50px;
    z-index: -1;
}

.flow_list > .item .num {
    font-size: 50px;
    line-height: 1;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--blue04);
    color: #fff;
    aspect-ratio: 1;
    border-radius: 50%;
}

.flow_list > .item .num .step {
    font-size: 14px;
}


.flow_list > .item .text .title {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--blue04);
    line-height: 1.4;
}

.flow_list > .item .text .title > span {
    font-size: 18px;
    background:var(--orange);
    color: #fff;
    padding: 0 15px;
    border-radius: 100vmax;
    margin-left: 1em;
}

.flow_list > .item .text .detail {
}

.flow_list > .item .image {
    width: 100%;
    background: var(--beige);
    padding: 40px;
    border-radius: 50%;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}
.flow_list > .item .image:after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: var(--beige);
    position: absolute;
    top: 50%;
    right: calc(100% - 5px);
    transform: translateY(-50%);
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.flow_list > .item .image > img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: var(--filter_blue01);
    display: block;
}

@media (max-width: 1029px) {
    .flow_list > .item .num {
        align-self: start;
    }

    .flow_list > .item .text .title {
        font-size: 20px;
    }

}
@media (max-width: 767px) {
    .flow_list {
        gap: 40px 0;
    }
    .flow_list > .item {
        grid-template-columns: 60px 1fr;
        gap: 5px 20px;
    }
    .flow_list > .item .num {
        font-size: 30px;
    }
    .flow_list > .item .num .step {
        font-size: 12px;
    }
    .flow_list > .item .image {
        grid-column: 2 / 3;
        grid-row: 2;
        max-width: 150px;
        justify-self: center;
        padding: 30px;
    }
    .flow_list > .item .image:after {
        display: none;
    }
    .flow_list > .item:not(:last-child):before {
        left: 30px;
        top: 10px;
        height: calc(100% + 40px);
    }
}



/* *************************************
// 事業内容
************************************* */

.fukidashi01 {
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
    position: relative;
    padding: 0 1em;
    line-height: 1;
}
.fukidashi01:before {
    content: "";
    display: block;
    width: 2px;
	height: 110%;
    background: #000;
    position: absolute;
    left: 0;
    top:0;
    transform: rotate(-20deg);
}
.fukidashi01:after {
    content: "";
    display: block;
    width: 2px;
	height: 110%;
    background: #000;
    position: absolute;
    right: 0;
    top:0;
    transform: rotate(20deg);
}

@media (max-width: 767px) {
    .fukidashi01 {
        font-size: 20px;
    }

}

ul.worries_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px 40px;
    margin: 40px 0;
}

ul.worries_list > li {
    background: var(--bg03);
    padding: 40px 20px;
    text-align: center;
    font-weight: bold;
    color: var(--blue04);
    border-radius: 20px;
}

ul.worries_list > li img {
    display: block;
    width: auto;
    height: 80px;
    max-width: 130px;
    object-fit: contain;
    margin: 0 auto 15px;
    filter: var(--filter_blue04);
}

@media (max-width: 1029px) {
    ul.worries_list {
        gap: 20px;
    }
    ul.worries_list > li {
        font-size: 13px;
        padding: 30px 0;
    }
}

@media (max-width: 767px) {

    ul.worries_list {
        grid-template-columns: 100%;
    }
    ul.worries_list > li {
        max-width: 300px;
        width: 100%;
        justify-self: center;
        padding: 20px 0;
    }


}


.worries_after {
    display: grid;
    grid-template-columns: 75px 1fr 75px;
    gap: 20px 40px;
    margin-top: 80px;
    align-items: center;
}

.worries_after > .text {
    grid-column: 2 / 3;
    grid-row: 1;
}
.worries_after > .image.left {
    grid-column: 1 / 2;
    grid-row: 1;
}
.worries_after > .image.right {
    grid-column: 3 / 4;
    grid-row: 1;
}

.worries_after > .text strong {
    color: var(--blue01);
}

.worries_after > .text .small {
    font-size: 80%;
}

.worries_after > .image {
    display: grid;
    align-items: end;
}

.worries_after > .image > img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

@media (max-width: 767px) {

    .worries_after {
        grid-template-columns: 1fr 1fr;
    }
    .worries_after {
        grid-template-columns: 1fr 1fr;
    }

    .worries_after > .text {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .worries_after > .image.left {
        grid-column: 1 / 2;
        grid-row: 2;
    }
    .worries_after > .image.right {
        grid-column: 2 / 3;
        grid-row: 2;
    }
}


section.service_price {
    background: var(--blue03);
}

.price_box {
    border: 2px solid var(--blue04);
    border-radius: 20px;
    padding: 20px 40px 40px;
    position: relative;
    z-index: 0;
}

.price_box + * {
    margin-top: 80px;
}

.price_box > h2 {
    display: table;
    background: var(--blue03);
    text-align: justify;
    text-align-last: justify;
    width: 5em;
    padding: 0 1em;
    font-size: 30px;
    font-weight: bold;
    margin: -50px auto 40px;
    color: var(--blue04);
}

.price_box .price {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: baseline;
    white-space: nowrap;
    color: var(--sub-color);
    margin: 0;
    margin-right: auto;
}


.price_box .price .fixed_amount {
    font-size: 20px;
    letter-spacing: 2px;
    background: var(--sub-color);
    color: #fff;
    margin-right: 15px;
    padding: 5px 10px;
    border-radius: 100vmax;
    font-weight: 500;
    line-height: 1.5;
    align-self: flex-end;
    margin-bottom: 15px;
}

.price_box .price .sub {
    font-size: 20px;
    font-weight: 500;
    margin-right: 15px;
}

.price_box .price .num {
    font-size: 70px;
    line-height: 1;
    font-weight: 900;
    font-family: "M PLUS Rounded 1c", sans-serif;

}
.price_box .price .yen {
    font-size: 35px;
    font-weight: 900;
    margin-left: 5px;
}
.price_box .price .tax {
    font-size: 20px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .price_box {
        padding: 20px 10px 30px;
    }
    .price_box + * {
        margin-top: 30px;
    }

    .price_box .price {
        flex-wrap: wrap;
    }
    .price_box .price .fixed_amount {
        margin: 0 10px 5px 0;
    }
    .price_box .price .sub {
        font-size: 16px;
        margin-right: 15px;
    }

    .price_box .price .num {
        font-size: 55px;
    }
    .price_box .price .yen {
        font-size: 30px;
        margin-left: 5px;
    }
    .price_box .price .tax {
        width: 100%;
        font-size: 16px;
        text-align: center;
    }
}


.service_contents h2 {
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    margin-top: 80px;  
    margin-bottom: 50px;  

}
.service_contents h2 .color {
    color: var(--blue01);
}
.service_contents h3 {
    text-align: center;
    color: var(--blue04);
    font-size: 25px;
    position: relative;
    margin: 40px auto;
    padding: 10px 0;
}
.service_contents h3:after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background: var(--blue04);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.service_contents_list {
    display: grid;
    gap: 20px;
}
.service_contents_list > li {
    position: relative;
    padding-left: 30px; 
    width: 100%;
}  
.service_contents_list > li:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;    
    position: absolute;
    top: 13px;
    left: 0;
    background: var(--blue01);
    border-radius: 50%;
}
.service_contents_list > li .title {
    font-size: 25px;
    font-weight: bold;
}
.service_contents_list > li p {
    margin-top: 0.5em;
}

@media (max-width: 767px) {

    .service_contents h2 {
        font-size: 20px;
        margin-top: 50px;
        margin-bottom: 20px;
    }
    .service_contents_list > li:before {
        top: 6px;
    }

    .service_contents_list > li .title {
        font-size: 18px;
    }
}




ul.check {
    display: grid;
    gap: 20px;
}

ul.check.two_in_one {
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
}


ul.check > li {
    position: relative;
    padding-left: 40px; 
    width: 100%;
    font-size: 20px;
}  
ul.check > li:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;    
    position: absolute;
    top: 8px;
    left: 0;
    background-image: url(../images/common/icon_check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    filter: var(--filter_blue04);
}

@media (max-width: 767px) {

    ul.check > li {
        font-size: 18px;
        line-height: 1.5;
    }
    ul.check > li:before {
        width: 25px;
        height: 25px;
    }
    ul.check.two_in_one {
        grid-template-columns: 100%;
    }
}

ul.note {
    display: grid;
    gap: 0;
}
ul.note > li {
    position: relative;
    width: 100%;
    display: flex;
    gap: 10px;
}  
ul.note > li:before {
    content: "※";
    display: inline-block;
}



.about_inheritance {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 20px 60px;
}

.about_inheritance > div {
    width: 100%;
}

.about_inheritance a {
    text-decoration: underline;
    color: var(--blue04);
}

@media (max-width: 767px) {

    .about_inheritance {
        grid-template-columns: 100%;
    }

}



table.table01 {
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    min-width: 80%;
}


table.table01 thead th > .fukidashi {
    background: var(--blue04);
    color: #fff;
    line-height: 1.2;
    padding: 15px;
    border-radius: 100vmax;
    position: relative;
    width: 80%;
    margin: 0 auto 10px;
    display: block;
    text-align: center;
}
table.table01 thead th > .fukidashi:after {
    content: "";
    display: block;
    width: 12px;
    height: 10px;
    background: var(--blue04);
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
}

table.table01 tbody th {
    padding: 10px 20px;
    border-bottom: 1px solid var(--blue04);
    width: 50%;
}
table.table01 tbody td {
    padding: 10px 20px;
    text-align: right;
    border-bottom: 1px solid var(--blue04);
    width: 50%;
}

@media (max-width: 1029px) {

    table.table01 tbody th {
        width: 40%;
        padding: 10px 0;
    }
    table.table01 tbody td {
        width: 60%;
        padding: 10px 0;
    }
}
@media (max-width: 767px) {
    table.table01 {
        font-size: 16px;
        width: 100%;
    }
    table.table01 thead {
        display: none;
    }
    table.table01 tbody th,
    table.table01 tbody td {
        width: 100%;
        display: block;
        border: none;
    }
    table.table01 tbody th {
        padding: 10px 15px;
        background: var(--blue04);
        color: #fff;        
    }
    table.table01 tbody td {
        padding: 15px;
    }
}


table.table02 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}
table.table02 tbody th > span {
    background: var(--blue02);
    color: var(--blue04);
    padding: 15px;
    position: relative;
    width: 100%;
    display: block;
}
table.table02 tbody th > span:after {
    content: "";
    display: block;
    width: 12px;
    height: 20px;
    background: var(--blue02);
    position: absolute;
    left: calc(100% - 1px);
    top: 50%;
    transform: translateY(-50%);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

table.table02 tbody td {
    padding: 15px 30px;
    background: var(--blue03);
    vertical-align: middle;
    text-align: right;
}

@media (max-width: 1029px) {

    table.table02 tr th,
    table.table02 tr td {
        display: block;
        width: 100%;
        text-align: center;
    }
    table.table02 tbody th > span {
        line-height: 1.5;
    }
    table.table02 tr td {
        padding-top: 20px;
        padding: 20px 10px 15px;
    }

    table.table02 tbody th > span:after {
        width: 20px;
        height: 12px;
        left: 50%;
        top: calc(100% -  1px);
        transform: translateX(-50%);
        clip-path: polygon(0 0, 50% 100%, 100% 0);
    }
}



.box {
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    display: grid;
    place-content: center;
}

.box.beige {
    background: var(--beige);
}

@media (max-width: 767px) {

    .box {
        padding: 20px 15px;
    }

}

.service_list {
    
}
.service_list > .item {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 40%;
    grid-template-rows: auto;
    padding: 40px 0;
    gap: 30px 60px;
    align-items: center;
    color: var(--text-color);
    position: relative;
}
.service_list > .item:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.service_list > .item h2 {
    text-align: left;
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}
.service_list > .item .image {
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    width: 100%;
    z-index: -1;
}
.service_list > .item .image > img {
    width: 100%;
    display: block;
}

@media (max-width: 767px) {

    .service_list > .item {
        grid-template-columns: 100%;
    }
    .service_list > .item h2 {
        font-size: 25px;
    }
    .service_list > .item .image {
        width: 90%;
        justify-self: center;
    }
}


/* 不動産名義変更 */
#fudousan_contents ul.service_contents_list,
#fudousan_contents ul.check {
    width: 500px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#fudousan_contents .box {
    margin-bottom: 15px;
}

@media (max-width: 767px) {

    #fudousan_contents ul.service_contents_list,
    #fudousan_contents ul.check {
        width: 100%;
    }
}


/* 法定相続情報の作成 */
#yochokin_contents h2 {
    margin-top: 80px;  
    margin-bottom: 50px;  
}

.yochokin_contents_text01 {
    text-align: center;
    margin: 30px 0;
    font-size: 20px;
    font-weight: bold;
}

.yochokin_contents_text02 {
    margin-top: 50px;
}

.yochokin_contents_text03 a {
    text-decoration: underline;
    color: var(--blue04);
}

@media (max-width: 767px) {
    #yochokin_contents h2 {
        margin-top: 50px;  
        margin-bottom: 50px;  
    }

}

/* 相続代行トータルサービス */
#total_worries .worries_after .text {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
#total_contents h2 {
    margin-bottom: 10px;
    margin-top: 0;
}
#total_contents h2 + p {
    text-align: center;
    font-weight: bold;
    color: var(--blue04);
    font-size: 18px;
    margin-bottom: 50px;
}

@media (max-width: 767px) {

    #total_worries .worries_after .text {
        font-size: 20px;
    }

}


/* *************************************
// 料金案内
************************************* */

ul.dot > li {
    position: relative;
    padding-left: 1em;
}

ul.dot > li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 10px;
    left: 0;
    background: var(--blue04);
    border-radius: 50%;
}


.page_fee .price_box {
    border: none;
    background: var(--blue03);
}
.page_fee .price_box > h2 {
    width: auto;
    background: transparent;
}

.page_fee .price_box h3 {
    margin: 50px 0 30px;
    font-size: 20px;
    font-weight: bold;
}

.page_fee .price_box h3 > span {
    font-size: 80%;
}



.page_fee .price_box ul.check {
    gap: 5px;
    margin-bottom: 20px;
}
.page_fee .price_box ul.check > li {
    font-size: 18px;
}

.page_fee .price_box table.table02 tbody td {
    background: #fff;
}

.page_fee .price_box ul.note {
    margin-top: 1em;
    font-size: 14px;
}

@media (max-width: 767px) {

    .page_fee .price_box > h2 {
        font-size: 25px;
        text-align: center;
        text-align-last: auto;
        line-height: 1.3;
        margin: -40px auto 40px;
    }

}


/* *************************************
// 問い合わせ
************************************* */

#contact_top .box {
    margin: 40px 0;
}

#contact_top .box h2 {
    font-size: 25px;
    text-align: center;
    font-weight: bold;
    margin: 0 0 30px;
}

#contact_top .box.contact_tel .time {
    text-align: center;
}

.line_link {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 15px 60px;
    align-items: center;
    background: var(--line-color);
    padding: 30px;
    border-radius: 20px;
}

.line_link img.bnr {
    width: auto;
    height: 100px;
}

.line_link img.qr {
    background: #ccc;
    aspect-ratio: 1;
    width: 100%;
    max-width: 150px;
}

@media (max-width: 767px) {
    #contact_top .box h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .line_link {
        grid-template-columns: 100%;
    }
    .line_link > img {
        justify-self: center;
    }
    .line_link img.bnr {
        height: auto;
        width: 200px;
    }

}


input[type="text"], 
input[type="password"], 
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
    background-color: #fff;
    border: 1px solid #ccc;
}

input[type="checkbox"] + span:before {
    background: #fff;
}
input[type="radio"] + span:before {
    background: #fff;
}



/* *************************************
// プライバシーポリシー
************************************* */

.page_privacy-policy h2 {
    font-size: 25px;
    font-weight: bold;
    margin: 50px 0 30px;
}

.page_privacy-policy ul {
    list-style: disc;
    margin-left: 1.5em;
    margin-bottom: 1rem;
}
.page_privacy-policy ol {
    list-style: decimal;
    margin-left: 1.5em;
    margin-bottom: 1rem;
}
