@charset "utf8";
 @import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
 @import url('https://fonts.googleapis.com/css?family=Fira+Sans:300&display=swap');
/*=============================
  - riset.css
	- 汎用css
==============================*/
/*----------------------------------------------------
	リセットCSS
----------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    color: #111;
    text-decoration: none;
    box-sizing: border-box;
    font-size: 14px;
}
body {
    min-width: 1340px;
    font-family: 'Noto Sans Japanese', sans-serif;
}
a, p, span, h1, h2, h3, h4, h5, h6, li, dt, dd, th, td {
    line-height: 1.4em;
}
ul, ol {
    list-style: none;
}
table {
    border-collapse: collapse;
    width: 100%;
}
img {
    max-width: 100%;
    height: auto;
    width: auto;
    border: none;
}
img, iframe {
    vertical-align: bottom;
}
input[type=text], input[type=email], input[type=tel], input[type=number], textarea, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

:focus::-webkit-input-placeholder { color: white; } /* Chrome・Safari・Opera用(※Edgeにも使える) */
:focus:-moz-placeholder { color: white; }  /* Firefox18以前用 */
:focus::-moz-placeholder { color: white; } /* Firefox19以上用 */
:focus::placeholder { color: white; } /* CSS標準(予定)の記述 */

.myfont-01 {
    font-family: 'Fira Sans', sans-serif;
}

.iswd-biography{display:none;}

@media screen and (max-width:650px) {
body {
    min-width: initial;
    overflow-x : hidden;
    overflow-y : auto;
}
}
.red {
    color: #f00;
}
.blue {
    color: #3498db;
}
.link {
    color: #3498db;
    text-decoration: underline;
    font-weight: bold;
}
/*----------------------------------------
  form_base css
----------------------------------------*/
label {
    cursor: pointer;
}
input[type=text], input[type=email], input[type=tel] {
    background: #fff;
    border: 1px solid #d1d2d2;
    border-radius: 5px;
    font-size: 16px;
    padding: 7px 10px;
    width: 350px;
}
input[type=number] {
    background: #fff;
    border: 1px solid #d1d2d2;
    border-radius: 5px;
    font-size: 16px;
    padding: 7px 10px;
    width: 100px;
}
input[type=submit] {
}
textarea {
    padding: 4px 10px;
    width: 100%;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid #d1d3d3;
    height: 150px;
    border-radius: 5px;
    resize: none;
}
select {
    background: rgba(255,255,255,0.4);
    width: auto;
    padding: 0px 18px 0px 7px;
    font-size: 16px;
    border: 1px solid;
    border-radius: 0px;
    height: 48px;
    cursor: pointer;
}
select:active, select:focus {
    box-shadow: none;
    outline: none;
}
 select::-ms-expand {
 display: none;
}
.select-wrap {
    position: relative;
}
.select-wrap:before {
    content: "▼";
    position: absolute;
    right: 10px;
    top: 0;
    display: flex;
    align-items: center;
    height: 100%;
    pointer-events: none;
    font-size: 14px;
}
button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border: none;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
}
button i {
    font-size: 28px;
}
button.submit {
    background: #5cb9ff;
    color: #fff;
}

@media screen and (max-width:650px) {
input[type=text], input[type=email], input[type=tel] {
    width: 100%;
}
input[type=number] {
    font-size: 16px;
    padding: 7px 10px;
    width: 60px;
}
select {
    font-size: 14px;
    height: 50px;
}
.select-wrap:before {
    font-size: 12px;
}
.main-v .top-form-wrap .form-inner-wrap .submit-wrap, .main-v .top-form-wrap .form-inner-wrap .submit {
    width: 100% !important;
    margin-left: 0px !important;
    margin-top: 10px;
}
button {
    height: 50px;
    padding: 5px;
}
}
/*----------------------------------------
  固定汎用CSS
----------------------------------------*/
/* box-shadow */
.b-shadow {
    box-shadow: 0px 0px 3px 2px #d6d7d7;
    -moz-box-shadow: 0px 0px 3px 2px #d6d7d7;
    -webkit-box-shadow: 0px 0px 3px 2px #d6d7d7;
}
/* underline */
.underline {
    text-decoration: underline;
}
/* indent */
.indent {
    margin-left: 1em;
    text-indent: -1em;
}
/* link */
.opa {
    transition: 0.3s
}
.opa:hover {
    opacity: 0.7
}
.sp-link {
    pointer-events: none;
}

@media screen and (max-width:650px) {
.sp-link {
    pointer-events: auto;
}
}
/* position */
.relative {
    position: relative;
}
/* dispaly */
.inline {
    display: inline;
}
.inline-block {
    display: inline-block;
}
.block {
    display: block;
}
/* float */
.fl {
    float: left !important;
}
.fr {
    float: right !important;
}
.cf:after {
    clear: both;
}
.cf {
    overflow: hidden;
}
/* vertical-align */
.va-t {
    vertical-align: top !important;
}
.va-m {
    vertical-align: middle !important;
}
.va-b {
    vertical-align: bottom !important;
}
.va-base {
    vertical-align: baseline !important;
}
/* width */
.w30 {
    width: 30px;
}
.w50 {
    width: 50px;
}
.par5 {
    width: 5%;
}
.par10 {
    width: 10%;
}
.par15 {
    width: 15%;
}
.par20 {
    width: 20%;
}
.par25 {
    width: 25%;
}
.par30 {
    width: 30%;
}
.par33 {
    width: 33%;
}
.par35 {
    width: 35%;
}
.par40 {
    width: 40%;
}
.par45 {
    width: 45%;
}
.par50 {
    width: 50%;
}
.par55 {
    width: 55%;
}
.par60 {
    width: 60%;
}
.par65 {
    width: 65%;
}
.par70 {
    width: 70%;
}
.par75 {
    width: 75%;
}
.par80 {
    width: 80%;
}
.par85 {
    width: 85%;
}
.par90 {
    width: 90%;
}
.par95 {
    width: 95%;
}
.par100 {
    width: 100%;
}

@media screen and (max-width:650px) {
.sp-par100 {
    width: 100% !important;
}
}
/* margin */
.ma {
    margin: auto;
}
.mt5 {
    margin-top: 5px;
}
.mt10 {
    margin-top: 10px;
}
.mt15 {
    margin-top: 15px;
}
.mt20 {
    margin-top: 20px;
}
.mt25 {
    margin-top: 25px;
}
.mt30 {
    margin-top: 30px;
}
.mt40 {
    margin-top: 40px;
}
.mt50 {
    margin-top: 50px;
}
.mt60 {
    margin-top: 60px;
}
.mt70 {
    margin-top: 70px;
}
.mt80 {
    margin-top: 80px;
}
.mt90 {
    margin-top: 90px;
}
.mt100 {
    margin-top: 100px;
}
.mb05 {
    margin-bottom: 5px;
}
.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb80 {
    margin-bottom: 80px;
}

@media screen and (max-width:650px) {
.sp-mt0 {
    margin-top: 0px;
}
.sp-mt10 {
    margin-top: 10px;
}
.sp-mt20 {
    margin-top: 20px;
}
.sp-mt30 {
    margin-top: 30px;
}
.sp-mt60 {
    margin-top: 60px;
}
.sp-mb0 {
    margin-bottom: 0px;
}
.sp-mb10 {
    margin-bottom: 10px;
}
.sp-mb20 {
    margin-bottom: 20px;
}
.sp-mb30 {
    margin-bottom: 30px;
}
.sp-mb60 {
    margin-bottom: 60px;
}
}
/* padding */
.p5 {
    padding: 5px;
}
.p10 {
    padding: 10px;
}
.p15 {
    padding: 15px;
}
.p20 {
    padding: 20px;
}
.p25 {
    padding: 25px;
}
.p30 {
    padding: 30px;
}
.pb60 {
    padding-bottom: 60px;
}

@media screen and (max-width:650px) {
	.sp-pb0 {
		padding-bottom: 0;
	}
	.sp-pb30 {
		padding-bottom: 30px;
	}
}
/* font-size*/
.f10 {
    font-size: 10px;
}
.f12 {
    font-size: 12px;
}
.f14 {
    font-size: 14px;
}
.f15 {
    font-size: 15px;
}
.f16 {
    font-size: 16px;
}
.f18 {
    font-size: 18px;
}
.f20 {
    font-size: 20px!important;
}
.f22 {
    font-size: 22px;
}
.f24 {
    font-size: 24px;
}

@media screen and (max-width:650px) {
.sp-f10 {
    font-size: 10px !important;
}
.sp-f12 {
    font-size: 12px !important;
}
.sp-f14 {
    font-size: 14px !important;
}
.sp-f16 {
    font-size: 16px !important;
}
.sp-f18 {
    font-size: 18px !important;
}
.sp-f20 {
    font-size: 20px !important;
}
.sp-f22 {
    font-size: 22px !important;
}
.sp-f24 {
    font-size: 24px !important;
}
}
/* line-height */
.lh10 {
    line-height: 1em;
}
.lh12 {
    line-height: 1.2em;
}
.lh14 {
    line-height: 1.4em;
}
.lh16 {
    line-height: 1.6em;
}
.lh18 {
    line-height: 1.8em;
}
.lh20 {
    line-height: 2em;
}
.lh22 {
    line-height: 2.2em;
}
.lh24 {
    line-height: 2.4em;
}
.lh26 {
    line-height: 2.6em;
}
.lh28 {
    line-height: 2.8em;
}
.lh30 {
    line-height: 3em;
}

@media screen and (max-width:650px) {
.sp-lh10 {
    line-height: 1em;
}
.sp-lh12 {
    line-height: 1.2em;
}
.sp-lh14 {
    line-height: 1.4em;
}
.sp-lh16 {
    line-height: 1.6em;
}
.sp-lh18 {
    line-height: 1.8em;
}
.sp-lh20 {
    line-height: 2em;
}
.sp-lh22 {
    line-height: 2.2em;
}
.sp-lh24 {
    line-height: 2.4em;
}
}
/* font-weight */
.tx-bold {
    font-weight: bold;
}
.tx-normal {
    font-weight: normal;
}
/* text-align */
.tx-center {
    text-align: center;
}
.tx-left {
    text-align: left;
}
.tx-right {
    text-align: right;
}

@media screen and (max-width:650px) {
.sp-tx-center {
    text-align: center;
}
.sp-tx-left {
    text-align: left;
}
.sp-tx-right {
    text-align: right;
}
}
/* sp pc 出し分け */
.sp-only, .sp_disp {
    display: none !important;
}
.pc-only, .pc_disp {
    display: block;
}
.pc-only.flex {
    display: flex;
}

@media screen and (max-width:650px) {
.pc-only, .pc_disp {
    display: none !important;
}
.sp-only, .sp_disp {
    display: block !important;
}
.sp-only.flex {
    display: flex !important;
}
}
/* flex-box */
.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.row {
    flex-direction: row;
}
.row-r {
    flex-direction: row-reverse;
}
.column {
    flex-direction: column;
}
.column-r {
    flex-direction: column-reverse;
}
/*===コンテンツの折返し===*/
.wrap {
    flex-wrap: wrap;
}
.wrap-r {
    flex-wrap: wrap-reverse;
}
.no-wrap {
    flex-wrap: nowrap;
}
/*===コンテンツの水平方向揃え ===*/
.flex-left {
    justify-content: flex-start;
}
.flex-right {
    justify-content: flex-end;
}
.flex-center {
    justify-content: center;
}
.flex-space-b {
    justify-content: space-between;
}
.flex-space-a {
    justify-content: space-around;
}
/*===コンテンツの垂直方向揃え ===*/
.flex-top {
    align-items: flex-start;
}
.flex-middle {
    align-items: center;
}
.flex-bottom {
    align-items: flex-end;
}
/* 順番 */
.no1 {
    order: 1;
}
.no2 {
    order: 2;
}
.no3 {
    order: 3;
}
.no4 {
    order: 4;
}
.no5 {
    order: 5;
}
.no6 {
    order: 6;
}
.no7 {
    order: 7;
}

@media screen and (max-width:767px) {
.sp-flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.sp-row {
    flex-direction: row;
}
.sp-row-r {
    flex-direction: row-reverse;
}
.sp-column {
    flex-direction: column;
}
.sp-column-r {
    flex-direction: column-reverse;
}
/*===コンテンツの折返し===*/
.sp-wrap {
    flex-wrap: wrap;
}
.sp-wrap-r {
    flex-wrap: wrap-reverse;
}
.sp-no-wrap {
    flex-wrap: nowrap;
}
/*===コンテンツの水平方向揃え ===*/
.sp-flex-left {
    justify-content: flex-start;
}
.sp-flex-right {
    justify-content: flex-end;
}
.sp-flex-center {
    justify-content: center;
}
.sp-flex-space-b {
    justify-content: space-between;
}
.sp-flex-space-a {
    justify-content: space-around;
}
/*===コンテンツの垂直方向揃え ===*/
.sp-flex-top {
    align-items: flex-start;
}
.sp-flex-middle {
    align-items: center;
}
.sp-flex-bottom {
    align-items: flex-end;
}
/* 順番 */
.sp-no1 {
    order: 1;
}
.sp-no2 {
    order: 2;
}
.sp-no3 {
    order: 3;
}
.sp-no4 {
    order: 4;
}
.sp-no5 {
    order: 5;
}
.sp-no6 {
    order: 6;
}
.sp-no7 {
    order: 7;
}
}
/*-- sp end --*/





/**
 * テキスト入力フィールド
**/
input.txt_w08p {
    padding: 4px 10px;
    width: 8%;
    height: 30px;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid #cccccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
input.txt_w13p {
    padding: 4px 10px;
    width: 13%;
    height: 30px;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid #cccccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
input.txt_w30p {
    padding: 4px 10px;
    width: 30%;
    height: 30px;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid #cccccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
input.txt_w47p {
    padding: 4px 10px;
    width: 47%;
    height: 30px;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid #cccccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
input.txt_w55p {
    padding: 4px 10px;
    width: 55%;
    height: 30px;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid #cccccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
textarea.textarea_w83p {
    padding: 4px 10px;
    width: 83%;
    height: 30px;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid #cccccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

@media screen and (max-width:767px) {
input.txt_w13p {
    padding: 4px 10px;
    width: 16%;
    height: 30px;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid #cccccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
input.txt_w30p {
    padding: 4px 10px;
    width: 30%;
    height: 30px;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid #cccccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
input.txt_w47p {
    padding: 4px 10px;
    width: 47%;
    height: 30px;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid #cccccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
input.txt_w55p {
    padding: 4px 10px;
    width: 55%;
    height: 30px;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid #cccccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
textarea.textarea_w83p {
    padding: 4px 10px;
    width: 83%;
    height: 30px;
    font-size: 14px;
    line-height: 1.4em;
    border: 1px solid #cccccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
}
