@charset "UTF-8";


/* -- font
-------------------------------------------------------------------------------- */
@font-face {
    font-family: 'Noto Sans JP';
    src: url('font/NotoSansJP-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Noto Sans JP';
    src: url('font/NotoSansJP-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}@font-face {
    font-family: 'circular';
    src: url('font/circular-book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'circular';
    src: url('font/circular-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


/* -- Base and Reset
-------------------------------------------------------------------------------- */
html {
    font-size: 62.5%;
	width: 100%;
}
body {
	font: 1rem/1.5 'Noto Sans JP', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, sans-serif;
	text-align: left;
    font-feature-settings: 'palt';
    color: #1a1a1a;
	width: 100%;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
}
caption,th,td {
	font-weight: normal;
	text-align: left;
}
input,textarea,select {
	font-family: 'Noto Sans JP', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, sans-serif;
	vertical-align: middle;
}
textarea {
	resize: vertical;
}
h1,h2,h3,h4,h5,h6 {
    font-size: 100%; 
    letter-spacing: 0.05em;
}
ul,ol { list-style: none; }
fieldset,img { border: 0; vertical-align: top; }
iframe {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
input{
    color:#1a1a1a;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
label{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
a{
    text-decoration:none;
    color:inherit;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
a:focus{
    outline:none;
}
select::-ms-expand {
    display: none;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -webkit-touch-callout;
    -ms-overflow-style: none;
}
body::-webkit-scrollbar{
    display: none;
}
html {
    font-size: 10px;
}
@media (max-width: 430px){
    html {
        font-size: 2.325581vw;
    }
}
body::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    position: fixed;
    top: 0;
    left: 0;
}
.ta-c{
    text-align: center;
}
.pc-mode{
    display: none;
}
.device-pc .pc-mode{
    display: block;
}
.device-pc .sp-mode{
    display: none;
}


/* -- color
-------------------------------------------------------------------------------- */
:root {
  --main-color: #009900;
}
:root {
  --sub-color: #f66300;
}
:root {
  --high-color: #cc0000;
}
:root {
  --low-color: #0000cc;
}


/* -- body-bg
-------------------------------------------------------------------------------- */
@media (min-width: 431px){
    .body-bg {
        width: calc((100vw - 430px) / 2);
        height: 100vh;
        background: var(--main-color);
        overflow: hidden;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    .body-bg.bg-2 {
        left: auto;
        right: 0;
    }
    .body-bg span {
        display: block;
        width: 100vw;
        height: 100%;
        background: rgba(0,0,0,0.3);
        position: absolute;
        top: 0;
        left: 0;
    }
    .body-bg.bg-2 span {
        left: auto;
        right: 0;
    }
    .body-bg span::before {
        content: "";
        display: block;
        width: 100vw;
        height: 100%;
        background: url(../img/img_bg.jpg) no-repeat;
        background-position: center;
        background-size: cover;
        opacity: 0.6;
        position: absolute;
        top: 0;
        left: 0;
    }
    .body-bg span::after {
        content: "";
        display: block;
        width: 100vw;
        height: 100%;
        background: url(../img/img_noise.png);
        background-size: 128px;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.07;
        z-index: 2;
    }
}


/* -- link-btn
-------------------------------------------------------------------------------- */
.link-btn,
.sub-link-btn{
    display: flex;
    justify-content: center;
}
.link-btn a,
.link-btn > span,
.link-btn input,
.sub-link-btn a,
.sub-link-btn span{
    display: block;
    background: var(--sub-color);
    color: #fff;
    line-height: 1.25;
    border-radius: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}
.link-btn {
    margin-top: 4rem;
    transition: 0.15s ease;
}
.link-btn:first-child {
    margin-top: 0;
}
.link-btn +.link-btn {
    margin-top: 1.6rem;
}
.link-btn a,
.link-btn > span,
.link-btn input{
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    padding: 0 0 0.3rem;
    width: 32rem;
    height: 6.4rem;
    box-sizing: border-box;
    border-radius: 3.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.link-btn.min a,
.link-btn.min > span,
.link-btn.min input{
    font-size: 1.6rem;
    height: 6rem;
    padding-bottom: 0.2rem;
}
.link-btn a.border,
.link-btn > span.border,
.link-btn input.border{
    color: var(--sub-color);
    border: solid 1px;
    background: transparent;
}
.link-btn.disable{
    cursor: default;
    filter: grayscale(1);
    opacity: 0.4;
    pointer-events: none;
}
.sub-link-btn a,
.sub-link-btn span{
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    padding: 0 1.5rem 0.2rem 1.6rem;
    height: 4rem;
    box-sizing: border-box;
    border-radius: 2rem;
    border: solid 1px;
    display: flex;
    align-items: center;
    background: transparent;
    color: var(--sub-color);
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.link-btn a + a,
.link-btn a + span,
.link-btn a + input,
.link-btn > span + span,
.link-btn > span + a,
.link-btn > span + input,
.link-btn input + a,
.link-btn input + span,
.link-btn input + input{
    margin-left: 1.2rem;
}
.link-btn .gray{
    background: #959595;
}
.link-btn-wrap{
    border-top: solid 1px #e0e0e0;
    margin-top: 4rem;
    padding-top: 4rem;
    margin-left: -2.4rem;
    margin-right: -2.4rem;
}
.sub-link-btn-wrap{
    display: flex;
}
.sub-link-btn-wrap .sub-link-btn + .sub-link-btn{
    margin-left: 0.6rem;
}


/* -- banner-btn
-------------------------------------------------------------------------------- */
.banner-btn a{
    display: block;
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: solid 1px #e0e0e0;
    border-bottom: solid 1px #e0e0e0;
    background: #fff;
    padding: 2rem 2.4rem;
    position: relative;
}
.banner-btn a::before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    border-top: solid 2px #4b4b4b;
    border-right: solid 2px #4b4b4b;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 3.4rem;
    margin-top: -0.6rem;
}
.banner-btn a .img{
    display: block;
    width: 8rem;
    height: 100%;
    background: #000;
    overflow: hidden;
    border-radius: 100%;
    position: relative;
}
.banner-btn a .img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transform: scale(1.5);
}
.banner-btn a .img .ico{
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.banner-btn a .img .ico.service-1{
    margin-top: -0.2rem;
}
.banner-btn a .img .ico svg {
    display: block;
    width: 100%;
    fill: #fff;
    overflow: visible;
}
.banner-btn a .txt{
    flex: 1;
    display: block;
    position: relative;
    padding: 0 2.4rem;
    padding-bottom: 0.2rem;
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
    font-weight: bold;
}


/* -- select-btn
-------------------------------------------------------------------------------- */
.select-btn {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.25;
    background: #fff;
    padding: 2.8rem 2.4rem 2.8rem 2.8rem;
    border: solid 1px #e0e0e0;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.select-btn + .select-btn {
    margin-top: 1.6rem;
}
.select-btn::before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    border-top: solid 2px #4b4b4b;
    border-right: solid 2px #4b4b4b;
    transform: rotate(45deg);
    position: absolute;
    right: 2.6rem;
    top: 50%;
    margin-top: -0.6rem;
}
.select-btn .ico {
    display: block;
    width: 3.2rem;
    margin-right: 2.4rem;
    border-radius: 0.8rem;
}
.select-btn .ico.mail {
    background: var(--sub-color);
}
.select-btn .ico.line {
    background: #06c755;
}
.select-btn .ico img,
.select-btn .ico svg {
    display: block;
    width: 100%;
}
.select-btn .ico svg {
    fill: var(--main-color);
}
.select-btn .txt {
    display: block;
    padding-right: 4rem;
    flex: 1;
    transform: translateY(-1px);
}
.select-btn.bullet {
}
.select-btn.bullet::before {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 100%;
    border: solid 1px #e0e0e0;
    transform: none;
    margin-top: -1.2rem;
    box-sizing: border-box;
    right: 2rem;
}
.select-btn.bullet::after {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background: #e0e0e0;
    position: absolute;
    top: 50%;
    right: 2.7rem;
    margin-top: -0.5rem;
}
.select-btn.bullet.active{
    border-color: var(--sub-color);
    color: var(--sub-color);
}
.select-btn.bullet.active::before{
    border-color: var(--sub-color);
}
.select-btn.bullet.active::after{
    background: var(--sub-color);
}


/* -- prop-check
-------------------------------------------------------------------------------- */
.prop-check{
    display: flex;
    justify-content: center;
}
.prop-check p{
    position: relative;
}
.prop-check a{
    text-decoration: underline;
    color: var(--main-color);
}


/* -- input-item
-------------------------------------------------------------------------------- */
input {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.input-item p {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #4b4b4b;
    margin-bottom: 0.8rem;
}
.input-item input {
    width: 100%;
    font-size: 1.7rem;
    box-sizing: border-box;
    height: 5.6rem;
    padding: 0 1.6rem 0.2rem;
    background: #fff;
    border-radius: 4px;
    border: solid 1px #e0e0e0;
}
.input-item input.readonly {
    background: #f0f0f0;
}
.input-item input::placeholder {
    color: #c0c0c0;
}
.input-item textarea {
    width: 100%;
    font-size: 1.6rem;
    box-sizing: border-box;
    padding: 1.6rem 1.6rem;
    background: #fff;
    border-radius: 4px;
    border: solid 1px #e0e0e0;
}


/* -- radio
-------------------------------------------------------------------------------- */
input[type=radio] + label::after{
    display: block;
    content: "";
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    height:auto;
    margin-top: 0;
    background: none;
    pointer-events: none;
    border: none;
}
input[type=radio] {
    display: none;
    margin: 0;
}
input[type=radio] + label{
    cursor: pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    font-size: 1.7rem;
    padding-left: 2.8rem;
    position: relative;
}
input[type=radio] + label::before{
    content: "";
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: #fff;
    border: solid 1px #c9c9c9;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 1px;
}
input[type=radio] + label::after{
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0.4rem;
    transform: translateY(-50%);
    margin-top: 1px;
}
input[type=radio]:checked + label::after{
    background: var(--sub-color);
}


/* -- checkbox
-------------------------------------------------------------------------------- */
input[type=checkbox] + label::after{
    display: block;
    content: "";
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    height:auto;
    margin-top: 0;
    background: none;
    pointer-events: none;
    border: none;
}
input[type=checkbox] {
    display: none;
    margin: 0;
}
input[type=checkbox] + label{
    cursor: pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    font-size: 1.7rem;
    padding-left: 2.8rem;
    position: relative;
}
input[type=checkbox] + label::before{
    content: "";
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background: #fff;
    border:solid 1px #c9c9c9;
    border-radius: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 1px;
}
input[type=checkbox] + label::after{
    content: "";
    width: 1.5rem;
    height: 0.6rem;
    position: absolute;
    top: 0.3rem;
    left: 0.3rem;
    border-left: solid 3px transparent;
    border-bottom: solid 3px transparent;
    transform: rotate(-45deg);
    margin-top: 1px;
}
input[type=checkbox]:checked + label::after{
    border-left-color: var(--sub-color);
    border-bottom-color: var(--sub-color);
}
input:not(.readonly):focus {
    border-color: var(--sub-color);
}
.validation-code{
    display: flex;
}
.validation-code input{
    font-family: 'circular';
    width: calc(100% / 8);
    text-align: center;
    font-size: 2rem;
}
.validation-code input + input{
    margin-left: 0.8rem;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance:textfield;
}


/* -- select
-------------------------------------------------------------------------------- */
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    box-sizing: content-box;
}
select {
    border: solid 1px #e0e0e0;
    background: #fff;
    width: 100%;
    height: 5.6rem;
    padding: 0rem 4.4rem 0.3rem 1.6rem;
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 1.7rem;
    cursor: pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
select:focus {
    outline: none;
    border-color: var(--sub-color);
}
.input-item + .select-item,
.select-item + .select-item{
    margin-top: 1.6rem;
}
.select-item{
    position: relative;
}
.select-item::before{
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-right: solid 2px #4b4b4b;
    border-bottom: solid 2px #4b4b4b;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 2rem;
    margin-top: -0.8rem;
    pointer-events: none;
}
.select-item.min select{
    height: 5.2rem;
    padding-right: 4.2rem;
}
.select-item.min::before{
    width: 0.6rem;
    height: 0.6rem;
    margin-top: -0.6rem;
    right: 1.8rem;
}


/* -- toggle-btn
-------------------------------------------------------------------------------- */
.toggle-btn {
    display: flex;
    align-items: center;
    position: relative;
}
.toggle-btn input[type=checkbox] + label {
    display: block;
    padding-left: 8rem;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 4rem;
    position: relative;
}
.toggle-btn input[type=checkbox] + label:before {
    width: 6rem;
    height: 4rem;
    background: #aaa;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4rem;
    transition: 0.2s;
    transform: none;
    margin-top: 0;
    margin-right: 0;
    border: none;
}
.toggle-btn input[type=checkbox] + label:after {
    content: "";
    position: absolute;
    width: 3.4rem;
    height: 3.4rem;
    border: none;
    border-radius: 100%;
    left: 0.3rem;
    top: 0.3rem;
    background: #fff;
    transform: none;
    margin-right: 0;
    margin-top: 0;
    transition: 0.2s;
}
.toggle-btn input[type=checkbox]:checked + label:before {
    background: var(--sub-color);
}
.toggle-btn input[type=checkbox]:checked + label:after {
    left: 2.3rem;
}
.toggle-btn .modal-trigger {
    font-size: 1.6rem;
    margin-left: 2.4rem;
    text-decoration: underline;
    color: var(--main-color);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    transition: 0.2s ease;
    padding-bottom: 0.2rem;
}
.toggle-btn input[type=checkbox]:checked + label + .modal-trigger {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.2s;
}


/* -- header
-------------------------------------------------------------------------------- */
header {
    width: 100%;
    max-width: 430px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}
header.fix {
    box-shadow: 0 0 0.4rem rgba(0,0,0,0.3);
}
header .header-inner {
    height: 6rem;
    padding: 0 0 0 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    display: block;
    width: auto;
    height: 3rem;
}
header .logo.size-xxl {
    height: 3.6rem;
}
header .logo.size-xl {
    height: 3.4rem;
}
header .logo.size-l {
    height: 3.2rem;
}
header .logo.size-m {
    height: 3rem;
}
header .logo.size-s {
    height: 2.8rem;
}
header .logo.size-xs {
    height: 2.6rem;
}
header .logo.size-xxs {
    height: 2.4rem;
}
header .logo img {
    height: 100%;
}
header .nav-btn {
    width: calc(2.4rem + 4.8rem);
    height: 6rem;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
header .nav-btn span {
    width: 2.4rem;
    border-top: solid 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -1.2rem;
}
header .nav-btn span.bar-1 {
    transform: translateY(-0.6rem);
}
header .nav-btn span.bar-3 {
    transform: translateY(0.6rem);
}
.nav-open header .nav-btn span.bar-1{
    transform: translateY(0) rotate(45deg);
}
.nav-open header .nav-btn span.bar-2{
    opacity: 0;
}
.nav-open header .nav-btn span.bar-3{
    transform: translateY(0) rotate(-45deg);
}
header nav,
.g-nav nav{
    width: 30rem;
    position: absolute;
    top: 6rem;
    right: 0;
    background: #666;
    color: #fff;
    height: calc(100dvh - 6rem);
    box-sizing: border-box;
    padding-bottom: 6rem;
    transform: translateX(calc(100% + 1px));
    transition: transform 0.3s ease;
    overflow: auto;
}
header nav::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    mix-blend-mode: overlay;
}
.nav-open header nav,
.g-nav nav {
    transform: translateX(0);
}
header .nav-inner-wrap{
    background: rgba(0,0,0,0.1);
    padding: 2rem 0;
    margin-bottom: 2rem;
    position: relative;
}
header .nav-inner-wrap .nav-inner + .nav-inner,
.g-nav .nav-inner-wrap .nav-inner + .nav-inner{
    margin-top: 3.2rem;
}
header .nav-inner,
.g-nav .nav-inner{
    position: relative;
}
header nav p,
.g-nav nav p {
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding: 0 2.4rem 2rem 2.4rem;
    border-bottom: solid 1px rgba(255,255,255,0.1);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
}
header nav p .ico,
.g-nav nav p .ico {
    margin-right: 1.6rem;
}
header nav p .ico svg,
.g-nav nav p .ico svg {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    fill: #fff;
    overflow: visible;
}
header nav p .txt,
.g-nav nav p .txt {
    padding-bottom: 1px;
}
header nav ul {
}
header nav p + ul,
.g-nav nav p + ul {
    border-top: none;
}
header nav li,
.g-nav nav li {
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding-left: 4rem;
    padding-bottom: 1px;
}
header nav li a,
.g-nav nav li a{
    display: block;
    padding: 1.2rem 2.4rem;
    position: relative;
}
header nav li a.active,
.g-nav nav li a.active {
    color: rgba(255,255,255,0.5);
}
header nav li a::before,
.g-nav nav li a::before {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-top: solid 2px rgba(255,255,255,0.5);
    border-right: solid 2px rgba(255,255,255,0.5);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 2.6rem;
    margin-top: -0.4rem;
}


/* -- g-nav
-------------------------------------------------------------------------------- */
.g-nav{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: none;
}
.g-nav nav{
    width: 26rem;
    background: transparent;
    position: static;
    height: auto;
    padding: 3.6rem 0 0 4rem;
    overflow: visible;
}
.g-nav .nav-inner {
    padding: 0;
}
.g-nav .nav-inner + .nav-inner {
    margin-top: 2.4rem;
    padding-top: 2.4rem;
    border-top: solid 1px rgba(255,255,255,0.15);
}
.g-nav nav p{
    font-size: 1.5rem;
    border-bottom: none;
    padding: 0;
    margin-bottom: 2.4rem;
}
.g-nav nav p .ico svg {
}
.g-nav nav li{
    font-size: 1.5rem;
    padding-left: 0;
}
.g-nav nav li + li{
    margin-top: 1.6rem;
}
.g-nav nav li a{
    padding: 0;
}
.g-nav nav li a::before {
    right: 0.4rem;
}
@media (min-width: 1024px){
    .g-nav{
        display: block;
    }
    header .nav-btn {
        display: none;
    }
    header nav {
        display: none;
    }
}


/* -- site-ttl
-------------------------------------------------------------------------------- */
.site-ttl{
    position: fixed;
    bottom: 4rem;
    right: 4rem;
    z-index: 10000;
    display: none;
}
.site-ttl .head-ttl {
    font-size: 2rem;
    line-height: 1.25;
    color: #fff;
    position: relative;
    text-align: right;
}
.site-ttl .head-ttl span {
    display: block;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    line-height: 1.125;
    margin-bottom: 0.4rem;
}
@media (min-width: 1024px){
    .site-ttl{
        display: block;
    }
}


/* -- wrapper
-------------------------------------------------------------------------------- */
.wrapper {
    background: #fafafa;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.wrapper .wrapper-inner {
    height: 100%;
    position: relative;
    z-index: 2;
}
.wrapper .wrapper-inner::before{
    content: "";
    display: block;
    width: 100%;
    height: 100dvh;
    background: rgba(0,0,0,0.4);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-open .wrapper .wrapper-inner::before{
    opacity: 1;
    visibility: visible;
}
@media (min-width: 1025px){
}
@media (max-width: 767px){
}


/* -- main
-------------------------------------------------------------------------------- */
main {
    display: block;
    padding-bottom: 2rem;
    overflow: hidden;
}
main.pb-00 {
    padding-bottom: 0;
}


/* -- section
-------------------------------------------------------------------------------- */
section{
    position: relative;
}
section::before{
    content: "";
    display: block;
    width: 100%;
    height: 1.2rem;
    background: #e0e0e0;
}
section .section-inner {
    padding: 4rem 2.4rem;
    position: relative;
}
section .section-inner + .section-inner {
    padding-top: 2rem;
}
section p {
    font-size: 1.7rem;
    text-align: justify;
}
section p + p{
    margin-top: 1.6rem;
}
section .main-ttl {
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 4rem;
    border-top: solid 0.5rem #d1d4d3;
    padding-top: 1.6rem;
    position: relative;
}
section .main-ttl::before {
    content: "";
    display: block;
    width: 6rem;
    border-top: solid 0.5rem var(--main-color);
    position: absolute;
    top: -0.5rem;
    left: 0;
}
section .main-ttl span {
    display: block;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: normal;
    letter-spacing: 0;
    color: #4b4b4b;
    margin-top: 0.8rem;
}
section .main-ttl-sub {
    font-size: 1.4rem;
    line-height: 1.25;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: var(--main-color);
    margin-bottom: 1rem;
}
section .sub-ttl {
    font-size: 2rem;
    line-height: 1.25;
    margin-top: 4rem;
    margin-bottom: 4rem;
}
section .sub-ttl:first-child {
    margin-top: 0;
}
section .sub-ttl.bg-ttl {
    background: #000;
    text-align: center;
    height: 28rem;
    font-size: 2.8rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    margin-left: -2.4rem;
    margin-right: -2.4rem;
    padding: 0 2.4rem;
    box-sizing: border-box;
    overflow: hidden;
}
section.sub-head .sub-ttl.bg-ttl {
    margin-top: 0;
    padding-top: 0;
    font-size: 2.6rem;
    height: 20rem;
    position: relative;
}
section .sub-ttl.bg-ttl::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/img_service_1.jpg) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}
section .sub-ttl.bg-ttl.bg-ttl-2::before {
    background-image: url(../img/img_service_2.jpg);
}
section .sub-ttl.bg-ttl span {
    position: relative;
}
section .sub-ttl.bg-ttl span.en {
    display: block;
    font-family: 'circular';
    font-size: 1.6rem;
    letter-spacing: 0;
    position: absolute;
    top: 2.4rem;
    left: 2.4rem;
}
section .sub-ttl.bg-ttl span.jp {
    padding-bottom: 0.2rem;
}
section .sub-ttl.bg-ttl span.ico {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    bottom: 3.2rem;
    right: 2.4rem;

}
section .sub-ttl.bg-ttl span.ico svg {
    display: block;
    width: 100%;
    fill: #fff;
    overflow: visible;
}
section .min-ttl {
    font-size: 2rem;
    line-height: 1.25;
    margin-top: 4rem;
    margin-bottom: 1.6rem;
    position: relative;
    padding-left: 1.8rem;
    padding-bottom: 1px;
}
section .min-ttl:first-child {
    margin-top: 0;
}
section .min-ttl::before {
    content: "";
    display: block;
    width: 0.6rem;
    background: var(--main-color);
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
section .min-ttl.ico-wrap {
    margin-left: -2.4rem;
    margin-right: -2.4rem;
    padding: 2.4rem 2.4rem 0;
    border-top: solid 1px #e0e0e0;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}
section .min-ttl.ico-wrap::before {
    display: none;
}
section .min-ttl.ico-wrap .ico {
    display: block;
    width: 4.8rem;
    margin-right: 2rem;
    background: var(--sub-color);
    border-radius: 1.2rem;
}
section .min-ttl.ico-wrap .ico.line {
    background: #06c755;
}
section .min-ttl.ico-wrap .ico img {
    display: block;
    width: 100%;
}
section .min-ttl.ico-wrap .ico .txt {
    display: block;
    padding-right: 4rem;
    flex: 1;
    transform: translateY(-1px);
}
section table {
    width: calc(100% + 4.8rem);
    border-collapse: collapse;
    margin-top: 3.2rem;
    margin-left: -2.4rem;
}
section table th,
section table td {
    font-size: 1.5rem;
    background: #fff;
    padding: 1.2rem 1.2rem;
    border-top: solid 1px #e0e0e0;
    border-bottom: solid 1px #e0e0e0;
    border-left: solid 1px #e0e0e0;
}
section table th {
    font-weight: bold;
}
section table td {
    text-align: center;
    color: #4b4b4b;
}
section table th:first-child,
section table td:first-child {
    border-left: none;
    padding-left: 2.4rem
}
section table th:last-child,
section table td:last-child {
    padding-right: 2.4rem;
    width: 0;
}
section .service-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-top: solid 1px #e0e0e0;
    border-bottom: solid 1px #e0e0e0;
    padding: 2.3rem 2.4rem 2.5rem;
    box-sizing: border-box;
    margin-top: 2rem;
    margin-left: -2.4rem;
    width: calc(100% + 4.8rem);
}
section .lead + .service-box{
    margin-top: 3.2rem;
}
section .service-box + .service-box{
    margin-top: 0;
    border-top: none;
}
section .service-box .body{
    flex: 1;
    padding-right: 2.4rem;
}
section .service-box .ttl{
    font-size: 1.8rem;
    line-height: 1.25;
}
section .service-box .body p{
    font-size: 1.6rem;
    text-align: justify;
    color: #4b4b4b;
}
section .service-box .body .ttl + p{
    margin-top: 0.8rem;
}
section .service-box .service-select-item{
    font-size: 1.6rem;
    padding: 1rem 2rem 1.1rem;
    border-radius: 2.4rem;
    color: #4b4b4b;
    border: solid 1px #e0e0e0;
}
section .service-box .service-data-item dl{
    display: flex;
    align-items: baseline;
    font-size: 1.5rem;
    padding: 1.1rem 2rem 1.3rem;
    border: solid 1px #e0e0e0;
    border-radius: 2.4rem;
    color: #4b4b4b;
    position: relative;
    /*padding-left: calc(4rem + 1.4rem);*/
}
section .service-box .service-data-item dl::before{
    content: "";
    display: none;
    width: 2.4rem;
    height: 2.4rem;
    background: url(../img/ico_high.svg) no-repeat center;
    background-size: 1.6rem;
    background-color: var(--high-color);
    position: absolute;
    top: 50%;
    left: 2rem;
    margin-top: -1.2rem;
    border-radius: 0.4rem;
}
section .service-box .service-data-item dl.low::before{
    background-image: url(../img/ico_low.svg);
    background-color: var(--low-color);
}
section .service-box .service-data-item dl + dl{
    margin-top: 0.8rem;
}
section .service-box .service-data-item dl dt{
    margin-right: 0.8rem;
}
section .service-box .service-data-item dl dd span{
    font-family: 'circular';
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}
section .service-box .service-data-item dl.high dd span{
    color: var(--high-color);
}
section .service-box .service-data-item dl.low dd span{
    color: var(--low-color);
}
section .step{
    margin-top: 3.2rem;
}
section .step li{
    background: #fff;
    padding: 1.5rem 2rem 1.7rem;
    border-radius: 0.8rem;
    border: solid 1px var(--main-color);
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}
section .step li + li{
    margin-top: 1.2rem;
}
section .step li:not(.flex){
    color: var(--main-color);
}
section .step li p{
    flex: 1;
    text-align: center;
}
section .step li.flex{
    display: flex;
    align-items: center;
    padding: 1.6rem 2rem;
    border-color: #e0e0e0;
    position: relative;
    margin-bottom: 3.2rem;
}
section .step li.flex > span.step-num{
    font-family: 'circular';
    font-size: 0.9rem;
    white-space: nowrap;
    letter-spacing: 0.05em;
    line-height: 1.25;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 100%;
    background: var(--main-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section .step li.flex span.step-num span{
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0;
}
section .step li.flex p{
    line-height: 1.25;
    text-align: left;
    padding-left: 2rem;
    padding-bottom: 2px;
}
section .step li.flex .ico{
    display: block;
    width: 3rem;
    height: 1rem;
    margin-left: -1.5rem;
    position: absolute;
    left: 50%;
    bottom: calc(-1.6rem - 0.6rem);
}
section .step li.flex .ico svg{
    display: block;
    fill: none;
    stroke: #7c7c7c;
    stroke-width: 2;
    overflow: visible;
}
.note {
    font-size: 1.4rem;
    margin-top: 1.6rem;
    color: #4b4b4b;
    padding-left: 1em;
    text-indent: -1em;
}
.note + .note {
    margin-top: 0;
}
@media (min-width: 1025px){
}
@media (max-width: 767px){
}


/* -- check-ico
-------------------------------------------------------------------------------- */
.check-ico{
    padding-left: 3.6rem;
    position: relative;
}
.check-ico::before{
    content: "";
    display: block;
    width: 1.5rem;
    height: 0.6rem;
    border-left: solid 3px #c0c0c0;
    border-bottom: solid 3px #c0c0c0;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 2px;
    margin-top: -0.7rem;
}
.check-ico.active::before{
    border-left-color: var(--sub-color);
    border-bottom-color: var(--sub-color);
}


/* -- figure
-------------------------------------------------------------------------------- */
section figure{
    display: block;
    height: 20rem;
    margin: 3.2rem 0;
    border-radius: 1.6rem;
    overflow: hidden;
    position: relative;
}
section figure.line-img{
    background: #06c755;
}
section figure.mail-img{
    background: var(--sub-color);
}
section figure.line-img,
section figure.mail-img{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
section figure.line-img::before,
section figure.mail-img::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.1);
}
section figure.line-img::after,
section figure.mail-img::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(-45deg, rgba(0,0,0,0.12), transparent);
    z-index: 1;
}
section figure .ico{
    display: block;
    width: 10rem;
    height: 10rem;
    background: var(--sub-color);
    border-radius: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 1.2rem 1.2rem 2rem rgba(0,0,0,0.2);
}
section figure .ico.line{
    background: #06c755;
}
section figure img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}


/* -- qr-img
-------------------------------------------------------------------------------- */
.qr-img{
    width: 16rem;
    margin: 4rem auto;
}
.qr-img img{
    width: 100%;
}


/* -- faq
-------------------------------------------------------------------------------- */
.faq{
    margin-top: 4rem;
}
.faq dl{
    background: #fff;
    padding: 2rem;
    border: solid 1px #e0e0e0;
    border-radius: 0.8rem;
    cursor: pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.faq dl + dl{
    margin-top: 1.2rem;
}
.faq dt{
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.25;
    position: relative;
    padding-left: 4.8rem;
    padding-right: 3.6rem;
}
.faq dt::before,
.faq dd::before{
    content: "Q";
    display: block;
    font-family: 'circular';
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0;
    line-height: 3.2rem;
    box-sizing: border-box;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 100%;
    background: var(--main-color);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.faq dt::before{
    top: 50%;
    transform: translateY(-50%);
}
.faq dt span{
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.faq dl.active dt span{
    transform: translateY(-50%) scale(1,-1);
}
.faq dt span::before{
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-left: solid 2px #4b4b4b;
    border-bottom: solid 2px #4b4b4b;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
    margin-top: -0.3rem;
}
.faq dd{
    font-size: 1.6rem;
    color: #4b4b4b;
    position: relative;
    padding-left: 4.8rem;
    margin-top: 1.2rem;
    text-align: justify;
    display: none;
}
.faq dd::before{
    content: "A";
    background: var(--sub-color);
}


/* -- page-top
-------------------------------------------------------------------------------- */
.head::before {
    display: none;
}
.head .head-inner {
    padding-bottom: 4rem;
}
.head .head-ttl-wrap {
    padding: 6rem 2.4rem 3.2rem;
    position: relative;
}
.head .head-catch {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: right;
    position: relative;
    padding-top: 2.8rem;
    margin-bottom: 16rem;
    z-index: 2;
}
.head .head-ttl {
    font-size: 2.4rem;
    line-height: 1.25;
    color: #fff;
    position: relative;
    z-index: 2;
}
.head .head-ttl span {
    display: block;
    font-size: 3rem;
    letter-spacing: 0.1em;
    line-height: 1.125;
    margin-bottom: 0.4rem;
    text-indent: -1px;
}
.head .lead {
    padding: 4rem 2.4rem 0;
}
.head .lead p {
    line-height: 1.75;
}
.head .lead p + p {
    margin-top: 1.7rem;
}
@media (min-width: 1025px){
}
@media (max-width: 767px){
}


/* -- canvas
-------------------------------------------------------------------------------- */
.canvas-box{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.canvas-box::before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--main-color);
    mix-blend-mode: multiply;
    z-index: 1;
}
.canvas-box .canvas-wrap{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.canvas-box canvas{
    transform: rotate(-45deg) scale(0.5);
    opacity: 0.7;
}


/* -- sub-head
-------------------------------------------------------------------------------- */
.sub-head::before{
    display: none;
}
.sub-head .sub-head-inner {
    padding-top: 6rem;
    position: relative;
}
.sub-head .sub-head-inner::before,
.sub-head .sub-head-inner::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.sub-head .sub-head-inner::before{
    background: url(../img/img_head_bg.png) no-repeat center;
    background-size: cover;
    opacity: 0.7;
}
.sub-head .sub-head-inner::after {
    background: var(--main-color);
    mix-blend-mode: multiply;
}
.sub-head .head-ttl {
    font-size: 1.6rem;
    line-height: 1.25;
    color: #fff;
    padding: 2rem 2.4rem;
    position: relative;
    z-index: 1;
}
.sub-head .head-ttl span {
    display: block;
    font-size: 2rem;
    letter-spacing: 0.1em;
    line-height: 1.125;
    margin-bottom: 0.4rem;
}
.sub-head .select-btn-wrap{
    margin-top: 3.2rem;
}
.sub-head .prop-check{
    margin-top: 2.4rem;
}
.sub-head .prop-check + .lead{
    margin-top: 3.2rem;
}


/* -- input-item
-------------------------------------------------------------------------------- */
.input-item{
    margin-top: 4rem;
}
.input-item + .input-item{
    margin-top: 1.6rem;
}
.input-item .err-mes{
    display: block;
    font-size: 1.4rem;
    color: var(--sub-color);
    margin-top: 0.4rem;
}
main .notice{
    margin-top: 4rem;
    background: #f0f0f0;
}
main .notice .ttl{
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.25;
    padding: 2rem 2.4rem;
    border-bottom: solid 1px #e0e0e0;
    color: #4b4b4b;
}
main .notice ul{
    padding: 2.4rem 2.4rem 3.2rem;
}
main .notice ul li{
    font-size: 1.5rem;
    text-align: justify;
    position: relative;
    padding-left: 3.2rem;
}
main .notice ul li::before{
    content: "";
    display: block;
    width: 1.2rem;
    height: 0.5rem;
    border-left: solid 2px var(--sub-color);
    border-bottom: solid 2px var(--sub-color);
    transform: rotate(-45deg);
    position: absolute;
    top: 0.7rem;
    left: 2px;
}
main .notice ul li + li{
    margin-top: 1.2rem;
}
.terms-textarea{
    height: 32rem;
    padding: 2rem;
    background: #fff;
    border: solid 1px #e0e0e0;
    border-radius: 0.8rem;
    overflow: scroll;
    line-height: 1.75;
    margin-top: 2rem 2rem 2.4rem;
}
.terms-textarea p{
    font-size: 1.5rem;
}
.terms-textarea .ttl{
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
}
.terms-textarea ul{
    margin-top: 1.6rem;
}
.terms-textarea ul + p{
    margin-top: 1.6rem;
}
.terms-textarea li{
    font-size: 1.6rem;
    text-indent: -2.5rem;
    padding-left: 2.5rem;
}
.terms-textarea a{
    text-decoration: underline;
    color: var(--main-color);
}


/* -- question
-------------------------------------------------------------------------------- */
.question {
    margin-top: 4rem;
}
.question dl + dl {
    margin-top: 4rem;
}
.question dt {
    line-height: 1.25;
}
.question dt .txt-wrap {
    display: flex;
    align-items: flex-start;
}
.question dt .q {
    font-family: 'circular';
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 2.5rem;
    color: var(--main-color);
    width: 6rem;
}
.question dt .txt {
    font-family: 'circular';
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    flex: 1;
}
.question dt .min {
    display: flex;
    margin-top: 1.2rem;
    padding-left: 6rem;
}
.question dt .min span {
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 0;
    color: var(--sub-color);
    padding: 0.4rem 1rem 0.6rem;
    border: solid 1px;
    border-radius: 2rem;
}
.question dt .min span + span {
    margin-left: 0.6rem;
}
.question dd {
    margin-top: 3.2rem;
    padding-left: 6rem;
    color: #4b4b4b;
}
.question dd .input-item:first-child {
    margin-top: 0;
}
.question dd.flex {
    display: flex;
    align-items: center;
}
.question dd.flex .input-item + .input-item {
    margin-top: 0;
    margin-left: 2rem;
}
.question dd.flex p{
    margin-left: 1.2rem;
}
.question dl {
    border-top: solid 1px #e0e0e0;
    padding-top: 4rem;
    transition: 0.15s ease;
}
.question dl.disable{
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(1);
}
.question .link-btn {
    border-top: solid 1px #e0e0e0;
    padding-top: 4rem;
}


/* -- service-tab
-------------------------------------------------------------------------------- */
.service-tab{
    padding: 0 2.4rem;
    position: relative;
}
.service-tab::before{
    content: "";
    display: block;
    width: 100%;
    border-bottom: solid 1px #e0e0e0;
    position: absolute;
    bottom: 0;
    left: 0;
}
.lead + .service-tab::before{
    display: none;
}
.section-inner .service-tab{
    border-top: solid 1px #e0e0e0;
    margin: 3.2rem -2.4rem 0;
    border-bottom: none;
}
.service-tab ul {
    display: flex;
}
.service-tab li {
    width: 50%;
}
.service-tab li + li {
    margin-left: 2.4rem;
}
.service-tab li a {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.25;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.4rem 0 0;
    opacity: 0.5;
}
.service-tab li a.active {
    opacity: 1;
}
.service-tab li a .ico {
    display: block;
    height: 3.2rem;
    margin-bottom: 1rem;
}
.service-tab li:first-child a .ico {
    transform: translateY(-0.2rem);
}
.service-tab li a .ico svg {
    display: block;
    height: 100%;
    fill: #1a1a1a;
    overflow: visible;
}
.service-tab li a.active .ico svg {
    fill: var(--main-color);
}
.service-tab li a .txt {
    letter-spacing: 0.05em;
    padding-bottom: 2.4rem;
    position: relative;
}
.service-tab li a.active .txt::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.4rem;
    background: var(--main-color);
    position: absolute;
    bottom: 0;
    left: 0;
}


/* -- search-box
-------------------------------------------------------------------------------- */
.search-box {
    background: #f0f0f0;
    padding: 3.2rem 2.4rem 4rem;
    margin-top: 3.2rem;
    margin-left: -2.4rem;
    margin-right: -2.4rem;
}
.search-box .input-item {
    margin-top: 0;
}
.search-box .select-item {
    margin-top: 0.8rem;
}


/* -- search-result
-------------------------------------------------------------------------------- */
.search-result {
    display: none;
    margin-left: -2.4rem;
    margin-right: -2.4rem;
}
.search-result dl {
    display: flex;
    align-items: baseline;
    padding: 3.2rem 2.4rem 2rem;
    font-size: 1.5rem;
    color: #4b4b4b;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.search-result.active dl {
    opacity: 1;
}
.search-result dl dt {
}
.search-result dl dd {
    margin-left: 0.8rem;
    display: flex;
    align-items: baseline;
}
.search-result dl dd span {
    font-family: 'circular';
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 0;
    color: var(--sub-color);
    transform: translateY(1px);
    letter-spacing: 1px;
    margin-right: -1px;
}
.search-result ul {
    background: #fff;
    border-top: solid 1px #e0e0e0;
    border-bottom: solid 1px #e0e0e0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.search-result.active ul {
    opacity: 1;
}
.search-result li + li {
    border-top: solid 1px #e0e0e0;
}
.search-result li a {
    display: block;
    font-size: 1.7rem;
    padding: 1.9rem 6rem 2.1rem 2.4rem;
    position: relative;
}
.search-result li a::before {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-top: solid 2px #4b4b4b;
    border-right: solid 2px #4b4b4b;
    transform: rotate(45deg);
    position: absolute;
    right: 2.6rem;
    top: 50%;
    margin-top: -0.4rem;
}
.search-box-wrap{
    display: none;
    margin-top: 4rem;
    margin-left: -2.4rem;
    margin-right: -2.4rem;
    padding: 0 2.4rem;
}


/* -- fund-ttl
-------------------------------------------------------------------------------- */
.fund-ttl-box {
    background: #f0f0f0;
    margin: -4rem -2.4rem 4rem;
}
.fund-ttl-box p {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding: 2rem 2.4rem 0;
    border-bottom: solid 1px rgba(0,0,0,0.1);
    color: var(--main-color);
    display: flex;
}
.fund-ttl-box p span{
    padding-bottom: 2rem;
    position: relative;
}
.fund-ttl-box p span::after{
    content: "";
    display: block;
    width: 100%;
    border-bottom: solid 1px var(--main-color);
    position: absolute;
    left: 0;
    bottom: -1px;
}
.fund-ttl-box p a {
    font-size: 1.6rem;
    text-decoration: underline;
}
.fund-ttl-box .fund-ttl {
    font-size: 2.6rem;
    line-height: 1.25;
    letter-spacing: 0.05em;
    text-align: left;
    padding: 2.4rem 2.4rem 0;
}
.fund-ttl-box .link{
    padding: 0 2.4rem 2.8rem;
}


/* -- fund-list
-------------------------------------------------------------------------------- */
section .section-inner.fund-list-head{
    padding-bottom: 0;
}
.fund-list-head-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.4rem 2rem;
    margin-left: -2.4rem;
    margin-right: -2.4rem;
}
.fund-list-head dl{
    display: flex;
    font-size: 1.5rem;
    color: #4b4b4b;
}
.fund-list-head dl dd{
    margin-left: 0.8rem;
    display: flex;
    align-items: baseline;
}
.fund-list-head dl dd span{
    font-family: 'circular';
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 0;
    color: var(--sub-color);
    transform: translateY(1px);
    letter-spacing: 1px;
    margin-right: -1px;
}
.fund-list-body{
    background: #f0f0f0;
    padding: 3.2rem 2.4rem 4rem;
}
.fund-list-body .date{
    font-size: 1.5rem;
    text-align: right;
    color: #4b4b4b;
    margin-bottom: 1.6rem;
}
.fund-list-body ul{
}
.fund-list-body li{
    background: #fff;
    border-radius: 1.6rem;
}
.fund-list-body li .body{
    padding: 2.4rem;
}
.fund-list-body li + li{
    margin-top: 2.4rem;
}
.fund-list-body .ttl-wrap{
    margin-bottom: 2rem;
}
.fund-list-body .ttl-wrap .ttl{
    font-size: 2.4rem;
    line-height: 1.25;
}
.fund-list-body .ttl-wrap p,
.fund-ttl-box .link{
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}
.fund-list-body .ttl-wrap p a,
.fund-ttl-box .link a{
    font-size: 1.5rem;
    color: var(--main-color);
    text-decoration: underline;
    position: relative;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.fund-ttl-box .link a{
    font-size: 1.6rem;
}
.fund-list-body .ttl-wrap p a span,
.fund-ttl-box .link a span{
    display: block;
    padding-right: 1.8rem;
}
.fund-ttl-box .link a span{
    padding-right: 1.9rem;
}
.fund-list-body .ttl-wrap p a svg,
.fund-ttl-box .link a svg{
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    fill: var(--main-color);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(calc(-50% + 1px));
    overflow: visible;
}
.fund-ttl-box .link a svg{
    width: 1.4rem;
    height: 1.4rem;
}
.fund-list-body dl{
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    padding: 1.6rem 0;
    border-top: solid 1px #e0e0e0;
}
.fund-list-body dl dt{
    padding-bottom: 0.1rem;
}
.fund-list-body dl:last-child{
    padding-bottom: 0;
}
.fund-list-body dl.no-flex{
    display: block;
}
.fund-list-body dl.no-flex dt{
    margin-bottom: 1.2rem;
}
.fund-list-body dl.no-flex dd{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fund-list-body dl:not(.no-flex) dd span,
.fund-list-body dl dd .input-item + span{
    font-family: 'circular';
}
.fund-list-body dl dd span.fw-b{
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.25;
}
.fund-list-body dl dd span.high{
    color: var(--high-color);
}
.fund-list-body dl dd span.low{
    color: var(--low-color);
}
.fund-list-body dl dd .input-item{
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.fund-list-body dl dd .input-item .item{
    flex: 1;
    position: relative;
}
.fund-list-body dl dd .input-item .item .ico{
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    margin-top: -1rem;
    position: absolute;
    top: 50%;
    right: 1.4rem;
    pointer-events: none;
}
.fund-list-body dl dd .input-item .item .ico svg{
    display: block;
    width: 100%;
    fill: var(--main-color);
    overflow: visible;
}
.fund-list-body dl dd .input-item input{
    font-family: 'circular';
    font-size: 1.7rem;
    width: 14.7rem;
    height: 4.8rem;
    padding: 0 1.4rem 0.2rem;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: #f9f9f9;
    color: #4b4b4b;
}
.fund-list-body dl dd .input-item .txt{
    white-space: nowrap;
    margin-left: 1.2rem;
    padding-bottom: 0.1rem;
}
.fund-list-body li .foot{
    display: flex;
    padding: 2rem 2.4rem;
    border-top: solid 1px #e0e0e0;
}
.fund-list-body li .foot span,
.fund-list-body li .foot a{
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    height: 5.2rem;
    box-sizing: border-box;
    padding: 0 2.4rem 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    background: #959595;
    color: #fff;
    border-radius: 0.4rem;
    cursor: pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.fund-list-body li .foot a{
    flex: 1;
    color: #fff;
    background: var(--sub-color);
    margin-left: 0.8rem;
}
.fund-list-body .no-regist {
    text-align: center;
    color: #4b4b4b;
    padding: calc(4rem + 1.6rem) 0 4rem;
}
.fund-list-foot {
    border-top: none;
    margin-top: 0;
    padding-bottom: 4rem;
}


/* -- fund-list-move
-------------------------------------------------------------------------------- */
.fund-list-move {
    background: #f0f0f0;
    padding: 4rem 2.4rem 6rem;
}
.fund-list-move li {
    display: flex;
    border-radius: 0.8rem;
    background: #fff;
}
.fund-list-move li + li {
    margin-top: 0.8rem;
}
.fund-list-move li p {
    flex: 1;
    padding: 1.9rem 2rem 2.1rem 0;
    font-size: 1.8rem;
    line-height: 1.25;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.fund-list-move li .handle {
    width: 6.4rem;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.fund-list-move li .handle span {
    display: block;
    width: 2rem;
    border-top: solid 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -1rem;
    opacity: 0.4;
}
.fund-list-move li .handle span.bar-1 {
    margin-top: -4px;
}
.fund-list-move li .handle span.bar-3 {
    margin-top: 4px;
}
.sortable-chosen{
    opacity: 0.8;
}
.sortable-chosen span{
    opacity: 1!important;
}
.sortable-ghost{
    opacity: 0;
}


/* -- market-news
-------------------------------------------------------------------------------- */
.market-news {
    background: #f0f0f0;
    padding: 4rem 2.4rem 6rem;
}
.market-news .sub {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.25;
    color: #4b4b4b;
    margin-bottom: 0.8rem;
}
.market-news .ttl {
    font-size: 2.6rem;
    line-height: 1.25;
}
.market-news .date {
    font-size: 1.5rem;
    color: #4b4b4b;
    margin-top: 1.6rem;
}
.market-news .body {
    margin-top: 4rem;
}
.market-news .body p {
    font-size: 1.8rem;
    line-height: 1.75;
}
.market-news .body .body-inner {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.market-news .body .body-inner.active {
    opacity: 1;
}
.market-news .body .body-inner p {
    margin-top: 1.75em;
    display: none;
}


/* -- market-news-list
-------------------------------------------------------------------------------- */
.market-news-list {
    background: #fff;
    border-top: solid 1px #e0e0e0;
    border-bottom: solid 1px #e0e0e0;
    margin-left: -2.4rem;
    margin-right: -2.4rem;
    margin-top: 2rem;
}
.market-news-list li + li {
    border-top: solid 1px #e0e0e0;
}
.market-news-list li a {
    display: block;
    font-size: 1.6rem;
    padding: 1.9rem 6rem 2.1rem 2.4rem;
    position: relative;
}
.market-news-list li a::before {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-top: solid 2px #4b4b4b;
    border-right: solid 2px #4b4b4b;
    transform: rotate(45deg);
    position: absolute;
    right: 2.6rem;
    top: 50%;
    margin-top: -0.4rem;
}
.market-news-list li a.before-d-none::before {
    display: none;
}
.market-news-list > p {
    font-size: 1.4rem;
}
.market-news-list .sub {
    font-weight: bold;
    color: #4b4b4b;
    margin-bottom: 0.4rem;
}
.market-news-list .ttl {
    font-size: 1.8rem;
    line-height: 1.25;
}
.market-news-list .date {
    font-size: 1.4rem;
    color: #4b4b4b;
    margin-top: 0.8rem;
}


/* -- ui-datepicker
-------------------------------------------------------------------------------- */
.ui-datepicker {
    width: auto;
    padding: 1.6rem 1.2rem;
    border: none!important;
    box-shadow: 0.4rem 0.4rem 1.6rem rgba(0,0,0,0.2);
    font-family: 'circular', 'Noto Sans JP', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, sans-serif;
    border-radius: 0.8rem;
}
.ui-datepicker .ui-datepicker-header {
    border: none;
    background: #fff;
    color: #1a1a1a;
    padding: 0;
}
.ui-datepicker .ui-datepicker-title {
    font-size: 1.7rem;
    border: none;
}
.ui-datepicker .ui-datepicker-prev.ui-corner-all,
.ui-datepicker .ui-datepicker-next.ui-corner-all{
    top: 50%;
    width: 2.4rem;
    height: 2.4rem;
    margin-top: -1.2rem;
    background: transparent;
    border-radius: 0;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.ui-datepicker .ui-datepicker-prev.ui-corner-all{
    left: 0;
}
.ui-datepicker .ui-datepicker-next.ui-corner-all{
    right: 0;
}
.ui-datepicker .ui-datepicker-prev.ui-corner-all::before,
.ui-datepicker .ui-datepicker-next.ui-corner-all::before{
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-top: solid 2px;
    position: absolute;
    top: 50%;
    margin-top: -0.5rem;
}
.ui-datepicker .ui-datepicker-prev.ui-corner-all::before{
    border-left: solid 2px;
    left: 50%;
    transform: rotate(-45deg);
    margin-left: -0.2rem;
}
.ui-datepicker .ui-datepicker-next.ui-corner-all::before{
    border-right: solid 2px;
    right: 50%;
    transform: rotate(45deg);
    margin-right: -0.2rem;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span{
    display: none;
}
.ui-datepicker table{
    margin: 0;
}
.ui-datepicker .ui-datepicker-calendar thead th {
    font-size: 1.2rem;
    padding: 1.6rem 0 0.4rem 0;
    font-weight: normal;
}
.ui-datepicker .ui-datepicker-calendar td {
    padding: 0.4rem;
}
.ui-datepicker .ui-datepicker-calendar td a,
.ui-datepicker .ui-datepicker-calendar td span {
    font-size: 1.5rem;
    border: none;
    background: #fff;
    color: #1a1a1a;
    padding: 0;
    text-align: center;
    width: 3.2rem;
    line-height: 3.1rem;
    padding-bottom: 0.1rem;
    border-radius: 100%;
    border: solid 1px #e0e0e0;
}
.ui-datepicker .ui-datepicker-calendar .ui-state-highlight{
    background: #f9f9f9;
} 
.ui-datepicker .ui-datepicker-calendar .ui-widget-content .ui-state-highlight, 
.ui-datepicker .ui-datepicker-calendar .ui-widget-header .ui-state-highlight,
.ui-datepicker .ui-datepicker-calendar .ui-state-active{
    background: var(--main-color);
    color: #fff;
    font-weight: bold;
    border-color: var(--main-color);
}


/* -- modal
-------------------------------------------------------------------------------- */
.modal {
    width: 100%;
    max-width: 430px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
}
.modal.active {
    opacity: 1;
    visibility: visible;
}
.modal::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.active::before {
    opacity: 1;
}
.modal.active.disable::before {
    opacity: 0;
}
.modal .modal-inner{
    width: calc(100% - 3.2rem);
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1, 0);
    border-radius: 0.8rem;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
}
.modal.active .modal-inner {
    transform: translate(-50%,-50%) scale(1, 1);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal.active.disable .modal-inner {
    opacity: 0;
}
.modal .head {
    padding: 0 6rem 0 2.4rem;
    height: 6rem;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #e0e0e0;
    position: relative;
}
.modal .head .ttl {
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.25;
}
.modal .head .close-btn {
    display: block;
    width: 6rem;
    height: 6rem;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.modal .head .close-btn::before,
.modal .head .close-btn::after {
    content: "";
    display: block;
    width: 2rem;
    border-top: solid 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -1rem;
}
.modal .head .close-btn::before{
    transform: rotate(45deg);
}
.modal .head .close-btn::after{
    transform: rotate(-45deg);
}
.modal .modal-body {
    opacity: 0;
}
.modal.active .modal-body {
    opacity: 1;
    transition: opacity 0.3s ease 0.3s;
}
.modal .body {
    padding: 2.4rem 2.4rem 3.2rem;
    max-height: calc(75dvh - 6rem);
    overflow: auto;
}
.modal .body .sub-ttl {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.25;
    margin-bottom: 1.6rem;
}
.modal .body .ttl-txt {
    font-size: 1.7rem;
    text-align: center;
    padding: 0.8rem 0 0;
}
.modal .body .img.swiper {
    overflow: hidden;
}
.modal .body .img.swiper ul {
    display: flex;
}
.modal .body .img.swiper li {
    flex-shrink: 0;
    display: block;
    width: 100%;
    border: solid 1px #e0e0e0;
    box-sizing: border-box;
}
.modal .body .img.swiper li img {
    display: block;
    width: 100%;
}
.modal .body .img.scroll,
.modal .body .txt.scroll {
    width: 100%;
    height: 50vh;
    overflow: auto;
}
.modal .body .img.scroll span{
    display: block;
    width: 100%;
    height: 80vh;
    background: #f0f0f0;
}
.modal .body .txt {
    background: #f0f0f0;
    padding: 2.4rem 2rem 4rem;
    box-sizing: border-box;
}
.modal .body .txt p {
    font-size: 1.8rem;
    text-align: justify;
}
.modal .nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.2rem;
}
.modal .nav .nav-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.modal .nav .nav-btn span{
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 100%;
    border: solid 1px #e0e0e0;
    position: relative;
}
.modal .nav .nav-btn.next span{
    transform: scale(-1,1);
}
.modal .nav .nav-btn span::before{
    content: "";
    display: block;
    width: 0.6rem;
    height: 0.6rem;
    border-top: solid 2px #4b4b4b;
    border-left: solid 2px #4b4b4b;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    margin-left: 0.1rem;
}
.modal .nav .nav-pagination{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 2rem;
}
.modal .nav .nav-pagination span{
    display: block;
    width: 1rem;
    height: 1rem;
    background: #ccc;
    border-radius: 100%;
    margin: 0 0.5rem;
    cursor: pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.modal .nav .nav-pagination span.swiper-pagination-bullet-active{
    background: var(--main-color);
}
.modal .lead{
    font-size: 1.7rem;
    text-align: justify;
    margin-bottom: 3.2rem;
}
.modal .select-btn-wrap,
.modal .link-btn{
}
.modal .link-btn{
    margin-top: 3.2rem;
}
.modal .select-btn{
    font-size: 1.8rem;
    padding: 2.4rem 2rem 2.4rem 2.4rem;
}
.modal input[type=checkbox] + label{
}


/* -- modal-notification
-------------------------------------------------------------------------------- */
.modal .modal-notification .notification-head{
    padding: 2.4rem 2.4rem;
    background: #f0f0f0;
    border-bottom: solid 1px #e0e0e0;
    margin: 0 -2.4rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.modal .modal-notification .notification-head dt{
    font-size: 1.6rem;
    color: #4b4b4b;
}
.modal .modal-notification .notification-head dd{
    font-size: 1.6rem;
}
.modal .modal-notification .notification-head dd span{
    font-family: 'circular';
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}
.modal .modal-notification .notification-body{
    margin: 0 -2.4rem;
    padding: 0 2.4rem;
    background: #f0f0f0;
}
.modal .modal-notification .notification-body .body-inner{
    padding: 3.2rem 0;
}
.modal .modal-notification .notification-body .body-inner + .body-inner{
    border-top: solid 1px #e0e0e0;
}
.modal .modal-notification .notification-body .prop-check{
    margin-top: 2.4rem;
    justify-content: flex-start;
}
.modal .modal-notification .notification-body .link-btn{
    border-top: solid 1px #e0e0e0;
    margin-top: 0;
    padding: 3.2rem 0;
}
.modal .modal-notification .body-content{
    display: flex;
}
.modal .modal-notification .disable .body-content{
    opacity: 0.4;
    filter: grayscale(1);
    pointer-events: none;
}
.modal .modal-notification .ttl{
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.25;
    font-weight: bold;
    padding: 0 2.4rem 0 0;
}
.modal .modal-notification .ttl .ico{
    display: block;
    width: 5.2rem;
    height: 5.2rem;
    background: var(--high-color);
    margin-bottom: 0.8rem;
    border-radius: 0.8rem;
    position: relative;
}
.modal .modal-notification .ttl .ico::before{
    content: "";
    display: block;
    width: 3.2rem;
    height: 3.2rem;
    background: url(../img/ico_high.svg) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.modal .modal-notification .low .ttl .ico{
    background: var(--low-color);
}
.modal .modal-notification .low .ttl .ico::before{
    background-image: url(../img/ico_low.svg);
}
.modal .modal-notification .high .input-item input{
    color: var(--high-color);
}
.modal .modal-notification .low .input-item input{
    color: var(--low-color);
}
.modal .modal-notification .input-wrap{
    flex: 1;
}
.modal .modal-notification .input-content{
    display: flex;
    align-items: center;
}
.modal .modal-notification .input-content.min{
    margin-top: 0.8rem;
}
.modal .modal-notification .input-content p{
    font-size: 1.6rem;
    white-space: nowrap;
}
.modal .modal-notification .input-content:not(.min) p{
    font-size: 1.7rem;
    letter-spacing: 0.05em;
}
.modal .modal-notification .input-content.min p{
    color: #4b4b4b;
}
.modal .modal-notification .input-content .input-item{
    margin-right: 1.2rem;
    margin-top: 0;
}
.modal .modal-notification .input-content .select-item{
    margin-left: 0.8rem;
}
.modal .modal-notification .input-content .input-item input{
    font-size: 2.2rem;
    font-family: 'circular';
    font-weight: bold;
    height: 5.2rem;
    padding-bottom: 0.2rem;
}
.modal .modal-notification .input-content .select-item select{
    font-family: 'circular';
    padding-top: 0;
    padding-bottom: 0.1rem;
    height: 4.8rem;
}
.modal .notification-foot {
}


/* -- footer
-------------------------------------------------------------------------------- */
footer {
}
footer .notice {
    padding: 4rem 2.4rem 4.8rem;
    background: #e5e5e5;
}
footer .notice .notice-ttl {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 1.6rem;
}
footer .notice ul + ul {
    margin-top: 1.6rem;
}
footer .notice li {
    font-size: 1.4rem;
    line-height: 1.25;
    text-align: justify;
    color: #4b4b4b;
}
footer .notice .disc {
    padding-left: 2em;
    list-style: disc;
}
footer .notice .disc li {
    color: var(--main-color);
    padding-left: 0.4rem;
}
footer .notice .disc li span {
    color: #4b4b4b;
}
footer .copyright {
    font-size: 1.4rem;
    font-family: 'circular';
    text-align: center;
    padding: 4rem 2.4rem 4.8rem;
    background: var(--main-color);
    color: #fff;
}
@media (min-width: 1025px){
}
@media (max-width: 767px){
}







/* MSADD */
.d-none {
    display: none;
}
/* jQuery datepickerの調整 */
.ui-datepicker-year {
    padding: 0rem 1.6rem 0.3rem 1.6rem;
    text-align: center;
    height: 4.8rem;
}
.ui-datepicker-month {
    padding: 0rem 1.6rem 0.3rem 1.6rem;
    text-align: center;
    height: 4.8rem;
}
