/*
 * grid
 * version:v1.0
 * Developer:popodesign
 * URL:https://popo-design.net
 */

/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 62.5%;
}

body {
    color: #777;
	font-family: 'Klee One', cursive;  /* Regular400 Semi-bold600*/
	font-family: 'Shippori Mincho', serif; /* Regular400 Semi-bold600*/
	fint-family:'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', 'Meiryo', 'verdana', sans-serif;
    background:#fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin:0;
	padding:0;
}



/* パソコンで見たときは"pc"のclassがついた画像が表示される */
@media only screen and (min-width: 768px) {
.pc { display: block !important; }
.sp { display: none !important; }
}
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/* マージン・パディング
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.mrg_sp{
    margin: 0 1.5rem;
}

.mrg_voice{
    margin: 0 3rem;
}

.mrg_side{
    max-width: 1200px;
    padding: 0 0.5rem;
    position: relative;
}

.mrg_side_2rem{
    margin: 0 2rem;
}

.mrg_top{
    max-width: 1200px;
    margin: 10rem 0 0;
}

.mrg_top_contact{
    max-width: 1200px;
    margin: 13rem 0 0;
}

.mrg_top_menu{
    max-width: 1200px;
    margin: 4rem 0 0;
}

.mrg_top_osusume{
    max-width: 1200px;
    margin: 4rem 0 0;
}

.max1200px{
	margin: 0 auto;
    max-width: 1200px;
}

.max1000px{
	margin: 0 auto;
    max-width: 1000px;
  padding: 2rem;
}

.max700px{
	margin: 0 auto;
    max-width: 700px;
}


/* MENU 隠れている部分を表示するCSS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.accordion {
  max-width: 360px;
  margin: 5px auto;
}

input[type="checkbox"].acd-check{
  display: none;
}

.acd-label{
  display: block;
  margin: 5px auto;
  padding: 10px 0;
  text-align: center;
  background: #666;
  color: #fff;
  font-weight: bold;
  cursor :pointer;
  border-radius:20px ;
}
.acd-content{
  height: 0;
  padding: 0 15px;
  background: #fff;
  transition: .5s;
  overflow: hidden;
}
.acd-check:checked + .acd-label + .acd-content{ 
  height: auto;
  padding: 15px;
}

/* グリッド
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0;
    position: relative;
}

.textpadding{
	padding: 2rem 2rem;	
}

.btnpadding{
	padding: 1rem 2rem 3rem;	
}



/* ブロックを縦に表示 */
.row {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
}
.col {
    display: block;
    flex: 1 1 auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
}
/* 768px以上の表示 */
@media ( min-width : 768px ) {
.row {
    display: flex;
    flex-direction: row;
    padding: 0;
}
.col {
    margin-left: 4%;
}
	
.col:first-child { 
    margin-left: 0; 
}

.row .col.span-1 {
    flex: 0 0 4.66666666667%;
    max-width: 4.66666666667%;
}
.row .col.span-2 {
    flex: 0 0 13.3333333333%;
    max-width: 13.3333333333%;
}
.row .col.span-3 {
    flex: 0 0 22%;
    max-width: 22%;
}
.row .col.span-4 {
    flex: 0 0 30.6666666667%;
    max-width: 30.6666666667%;
}
.row .col.span-5 {
    flex: 0 0 39.3333333333%;
    max-width: 39.3333333333%;
}
.row .col.span-6 {
    flex: 0 0 48%;
    max-width: 48%;
}
.row .col.span-7 {
    flex: 0 0 56.6666666667%;
    max-width: 56.6666666667%;
}
.row .col.span-8 {
    flex: 0 0 65.3333333333%;
    max-width: 65.3333333333%;
}
.row .col.span-9 {
    flex: 0 0 74.0%;
    max-width: 74.0%;
}
.row .col.span-10 {
    flex: 0 0 82.6666666667%;
    max-width: 82.6666666667%;
}
.row .col.span-11 {
    flex: 0 0 91.3333333333%;
    max-width: 91.3333333333%;
}
.row .col.span-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* オフセット */
.row .col.offset-1 {
    margin-left: 8.66666666667%;
}
.row .col.offset-2 {
    margin-left: 17.3333333333%;
}
.row .col.offset-3 {
    margin-left: 26%;
}
.row .col.offset-4 {
    margin-left: 34.6666666667%;
}
.row .col.offset-5 {
    margin-left: 43.333333333%;
}
.row .col.offset-6 {
    margin-left: 52%;
}
.row .col.offset-7 {
    margin-left: 60.6666666667%;
}
.row .col.offset-8 {
    margin-left: 69.3333333333%;
}
.row .col.offset-9 {
    margin-left: 78.0%;
}
.row .col.offset-10 {
    margin-left: 86.6666666667%;
}
.row .col.offset-11 {
    margin-left: 95.3333333333%;
}    
}


/* h_class
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
font-family: 'Shippori Mincho', serif;
margin-top: 0;
margin-bottom: 2rem;
font-weight: 400;
letter-spacing: 0.2em;}

/* 950px以上のPC表示 */
@media screen and ( min-width : 980px ) {
h1 { font-size: 2.5rem; line-height: 2.3;  letter-spacing: .2rem;}
h2 { font-size: 2rem; line-height: 2; letter-spacing: .3rem; }
h3 { font-size: 2rem; line-height: 1.8;  letter-spacing: .3rem; text-align: center; }
h4 { font-size: 2rem; line-height: 1.5; letter-spacing: .4rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: 0.4rem; }
h6 { font-size: 1.8rem; line-height: 1.6;  letter-spacing: 0.4rem; }
  
p { margin-top: 0;line-height: 2;letter-spacing: 0.3rem; }  
}

/* TB表示 */
@media screen and (min-width:481px) and ( max-width:980px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 2.0rem; text-align: center; }
  h4 { font-size: 2.0rem; }
  h5 { font-size: 1.6rem; }
  h6 { font-size: 1.5rem; }
p { margin-top: 0;line-height: 2;letter-spacing: 0.3rem; }  	
}

/*　画面サイズが480pxまではここを読み込む　*/
@media screen and (max-width:480px) { 
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 2.0rem; text-align: center; }
  h4 { font-size: 2.0rem; }
  h5 { font-size: 1.6rem; }
  h6 { font-size: 1.5rem; }
p { margin-top: 0;line-height: 2;letter-spacing: 0.3rem; }  
}







/* p ゴシック */
.gothic{
margin-top: 0;
line-height: 2;
letter-spacing: 0.3rem; 
font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', sans-serif;
}

/* 見出しラインマーカーデザイン */
.midashi{
	margin: 4rem 0;
	background: linear-gradient(transparent 60%, #f2cdc0 60%);
}

/* STEPデザイン */
.step{
	margin: 0 auto;
}

.step_border{
	color: #999;
	border-radius: 30px;
	border: 2px solid #E2937E;
	padding: 2rem;
	margin-bottom: 2rem;
}

/* STEP_hrデザイン */
.hr_step{
	border-top: 1px dashed #e2937e;
	margin: 7rem 0;
}


/* リンクとボタン
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1EAEDB;
display:inline-block;}
a:hover {
  color: #0FA0CE; }


.btn_bk {
color: #666;
text-align: center;
background-color: #fff;
padding: 15px ;
border-radius: 30px;
border: solid .5px;
}

.btn_bk:hover {
color: #444;
text-align: center;
background-color: #DDDDDD;
padding: 15px ;
border-radius: 30px;
border: solid .5px;
}


/* ボタン ピンク
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.btn_pink {
color: #777;
text-align: center;
background-color: #f2cdc0;
padding: 15px ;
border-radius: 30px;
}

.btn_pink:hover {
color: #333;
text-align: center;
background-color: #EBB5A4;
padding: 15px ;
border-radius: 30px;
}


/* ボタン　オプション
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.btn_option {
color: #222;
text-align: center;
background-color: #C3C3C3;
padding: 15px ;
	
}

.btn_option:hover {
color: #222;
text-align: center;
background-color: #9D9D9D;
padding: 15px ;
}


.right {
  display: inline-block;
}

.frame {
  display: flex;
  justify-content: space-between;
}

.center_btn{
	margin:0 auto;
}

.center_block{
	text-align:center;
}


/* ボタン
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  margin-right: 5px;
  color: #555;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid #bbb;
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }


/* フォーム
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 10px 10px; 
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box; }

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 100px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #666;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .3rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }

.formname{
	
}


/* リスト
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom:1rem; }

li,
.osusume{
	list-style-type: circle;
	letter-spacing: 0.2rem;
	margin-bottom: 2rem;
  line-height: 2;}

/* コード
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  white-space: nowrap;
  background: #F1F1F1;
}
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; 
}


/* テーブル
–––––––––––––––––––––––––––––––––––––––––––––––––– */
table {
	border-collapse: collapse; }
th,
td {
  padding: -0.3rem;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* スペース
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* 全幅
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.full-width {
  width: 100%;
  box-sizing: border-box; }
.max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.pull-right {
  float: right; }
.pull-left {
  float: left; }


/* 罫線
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-width: 0;
  border-top: 1px solid #ccc; 
}