﻿/*
font-family: "Noto Sans JP", sans-serif;
font-family: "Tomorrow", sans-serif;
*/
/*******************************************************************************
custom property
********************************************************************************/
:root {
  --tema-color:41 168 223;
}
/*******************************************************************************
indextitle
********************************************************************************/
#indexTitle{
    position: relative;
    z-index: 0;
    padding-top: 5%;
    padding-bottom: 5%;
}
#indexTitle .titleWrap{
    position: relative;
    width: 50%;
}
#indexTitle .titleWrap::after{
    content: "";
    display: block;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 150%;
    height: 150%;
    background: url("../img/title_img.webp") no-repeat left center /contain;
}
#indexTitle h1{
    font-size: 2em;
    margin-bottom: 0.5em;
}
#indexTitle h2{
    font-size: 1.2em;
}
#category::before{
    display: none;
}
/*--1000px以下------------------------------------*/
@media only screen and (max-width: 1000px) {
#indexTitle .titleWrap{
    width: 60%;
}
#indexTitle .titleWrap::after {
    width: 120%;
}
}
/*--737px以下 ------------------------------------*/
@media only screen and (max-width: 737px) {
#indexTitle .titleWrap{
    width: 100%;
}
#indexTitle .titleWrap::after {
    position: relative;
    left: 0;
    top: 0;
    transform: rotateY(0);
    padding-top: 50%;
    width: 100%;
}
}

/*******************************************************************************
faq
********************************************************************************/
#faq{
    padding-top: 5%;
    padding-bottom: 5%;
}
#faq h3{
    font-size: 1.2em;
    line-height: 1.4;
    margin:0 0 0.5em;
}
.qaWrap{
    overflow: hidden;
    margin-bottom: 3em;
    counter-reset: number 0; 
}
.qaBox{
    border-top: 1px solid rgb(var(--tema-color));
}
.qaBox dt{
    padding: 0.5em 0.5em 0.5em 4em;
    background-color: aliceblue;
    cursor: pointer;
    position: relative;
    font-size: 1.1em;
    line-height: 1.4;
    font-weight: 600;
}
.qaBox dt::before{
    counter-increment: number 1;
    content: "Q"counter(number) " ";
    display:inline-block;
    box-sizing: border-box;
    padding: 0.5em;
    position: absolute;
    left: 0;
    top: 0;
    width: 3em;
    height: calc(100% + 1px);
    color: #FFF;
    background-color: rgb(var(--tema-color));
    border-bottom: 1px solid #FFF;
}
.qaBox dd{
    padding: 0.5em 0.5em 1.5em;
    position: relative;
    padding-left:4.4em;
    line-height: 1.6;
    border-top: 1px dashed rgb(var(--tema-color));
}
.qaBox dd::before{
    counter-increment: number 0;
    content: "A"counter(number) " ";
    display:inline-block;
    box-sizing: border-box;
    padding: 0.5em;
    position: absolute;
    left: 0;
    top: 0;
    width: 3em;
    height: 100%;
    color: rgb(var(--tema-color));
    background-color: rgba(209,209,209,0.2);
    border-bottom: 1px solid #FFF;
    font-size: 1.1em;
    font-weight: 600;
}
/*******************************************************************************
mailForm
********************************************************************************/
#mailForm{
    padding-top: 5%;
    padding-bottom: 5%;
}
#mailForm h3{
    font-size: 1.8em;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 0.5em;
}
#mailForm h3 + p {
    text-align: center;
}

.formWrap{
    background-color: rgba(var(--tema-color) / 0.1);
    border-radius: 1em;
    padding: 3em;
    margin: 2em 0;
    text-align: center;
}
#inputArea{
    text-align: center;
    max-width: 730px;
    margin: 0 auto;
}
#inputArea > dl{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1em;
    text-align: left;
}
#inputArea > dl dt{
    flex-basis: 10em;
    max-width: 10em;
    padding: 0.7em 0;
    line-height: 1.2;
}
#inputArea > dl dd{
    flex-basis: calc(100% - 10em);
    max-width:  calc(100% - 10em);
    line-height: 1.2;
}
#inputArea > dl dt.requiredIcon::after{
    content: "※";
    display: inline-block;
    line-height: 1.4;
    font-size: 0.8em;
    color: #FF4700;
    padding: 0 0.2em;
}
.icon_required{
    display: inline-block;
    line-height: 1.4;
    font-size: 0.8em;
    color: #FF4700;
    padding: 0 0.1em;
}

#inputArea .note{
    font-size: 0.85em;
}
#submitArea{
    margin: 1em 0 0 0;
}
/* 無効化されている時のボタン */
#submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* 有効化された時のボタン */
#submit-btn {
    color: white;
    cursor: pointer;
    font-size: 18px;
    line-height: 1.4;
    background-color: rgb(var(--tema-color));
    border-radius: 5px;
    display: inline-block;
    padding: 0.5em 3em;
    border: 0;
}


input[type="text"],
input[type="email"],
textarea{
    display: block;
    font-size: 16px;
	margin: 0;
	padding: 0.7em;
	border: 1px solid rgba(var(--tema-color) / 0.4);
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    width: 100%;
    line-height: 1.2;
}
input[type="checkbox"]{
    margin: 0 0.5em;
}
select{
    font-size: 16px;
	margin: 0;
	padding: 0.7em;
    border: 1px solid rgba(var(--tema-color) / 0.4);
    width: 100%;
}
#mailaddress input[type="email"]{
    margin-bottom: 0.5em;
}
#error-email,#error-match{
    color: red;
    display: none;
    margin-bottom: 0.5em;
}
#privacyPolicy{
    text-align: left;
    border: 3px double rgba(var(--tema-color) / 0.4);
    padding: 1em 1.5em;
    font-size: 0.9em;
    
}
#privacyPolicy h4{
    margin: 0 0 0.5em;
}
#privacyPolicy .consent{
    display: block;
    text-align: center;
    padding: 0.5em;
    background-color: #FFF;
    margin: 1em 0 0.5em;
}
#privacyPolicy .consent label{
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    
}
.blankLink a{
    display: inline-block;
    background-color: #FFF;
    border-radius: 5px;
    margin: 0.2em 0;
    padding: 0.4em 1em;
    line-height: 1.4;
    border: 1px solid #0077c6;
    color: #0077c6;
}
.blankLink a::after{
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url("../img/arrow-up-right-from-square.svg") no-repeat;
    background-size: contain;
    margin-left: 0.5em;
}





















