@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Overpass:100,100i,200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Vollkorn:400,400i,600,600i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Crimson+Text:400,400i,600,600i,700,700i&display=swap");
/*赤*/
/*暗い赤*/
/* サイトの基本のカラー*/
/*うすい色*/
/*濃い色*/
/* フォームのエラーのカラー */
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Prata");
@import url("https://fonts.googleapis.com/css?family=Questrial");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Limelight&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&subset=japanese");
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}

/* タブレット・PC */
@media screen and (max-width: 599px) {
  .pctb {
    display: none !important;
  }
}

/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}

/* タブレットのみ */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}

/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*---------------------------------------

追加分

----------------------------------------*/
/* flex-wrap: wrap; */
/* align-self: center; */
/* justify-content: center; */
/* align-items: center; */
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

----------------------------------------------------------*/
/*


html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
nav ul {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  /* width: 100%;*/
}

li {
  list-style: none;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/*--------------------------------------------------------

	body設定

----------------------------------------------------------*/
html {
  background: #ffffff;
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "游ゴシック", Yu Gothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,-apple-system,BlinkMacSystemFont,"Helvetica Neue",sans-serif;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 599px) {
  body {
    font-weight: normal;
  }
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

/*--------------------------------------------------------

	box-sizing
	
----------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*--------------------------------------------------------

	clearfix
	
----------------------------------------------------------*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*--------------------------------------------------------

	禁則処理の追加
	
----------------------------------------------------------*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*--------------------------------------------------------

    SPの分まで設定する場合　※数値は変更OK

----------------------------------------------------------*/
.ml-01 {
  margin-left: -0.1em;
}

.ml-02 {
  margin-left: -0.2em;
}

.mlr-02 {
  margin-left: -0.2em;
  margin-right: -0.2em;
}

.ml-03 {
  margin-left: -0.3em;
}

.mlr-03 {
  margin-left: -0.3em;
  margin-right: -0.3em;
}

.ml-05 {
  margin-left: -0.5em;
}

.mr-05 {
  margin-right: -0.5em;
}

.mlr-05 {
  margin-left: -0.5em;
  margin-right: -0.5em;
}

.mb00 {
  margin-bottom: 0px !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb08 {
  margin-bottom: 8px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

@media screen and (max-width: 1024px) {
  .mb10 {
    margin-bottom: 10px !important;
  }
}

.mb12 {
  margin-bottom: 12px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

@media screen and (max-width: 1024px) {
  .mb15 {
    margin-bottom: 15px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 10px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}

@media screen and (max-width: 1024px) {
  .mb20 {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 15px !important;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}

@media screen and (max-width: 1024px) {
  .mb25 {
    margin-bottom: 25px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb25 {
    margin-bottom: 20px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}

@media screen and (max-width: 1024px) {
  .mb30 {
    margin-bottom: 30px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 25px !important;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}

@media screen and (max-width: 1024px) {
  .mb35 {
    margin-bottom: 35px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 25px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}

@media screen and (max-width: 1024px) {
  .mb40 {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}

.mb45 {
  margin-bottom: 45px !important;
}

@media screen and (max-width: 1024px) {
  .mb45 {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb45 {
    margin-bottom: 30px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}

@media screen and (max-width: 1024px) {
  .mb50 {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 40px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}

@media screen and (max-width: 1024px) {
  .mb60 {
    margin-bottom: 60px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 50px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}

@media screen and (max-width: 1024px) {
  .mb70 {
    margin-bottom: 70px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 60px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}

@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 80px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 70px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}

@media screen and (max-width: 1024px) {
  .mb90 {
    margin-bottom: 90px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb90 {
    margin-bottom: 80px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}

@media screen and (max-width: 1024px) {
  .mb100 {
    margin-bottom: 100px !important;
  }
}

@media screen and (max-width: 599px) {
  .mb100 {
    margin-bottom: 90px !important;
  }
}

.ml00 {
  margin-left: 0px !important;
}

.ml05 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mr00 {
  margin-right: 0px !important;
}

.mr05 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mt00 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.pt00 {
  padding-top: 0px !important;
}

.pt05 {
  padding-top: 5px !important;
}

.pt06 {
  padding-top: 6px !important;
}

.pt07 {
  padding-top: 7px !important;
}

.pt08 {
  padding-top: 8px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb00 {
  padding-bottom: 0px !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl00 {
  padding-left: 0px !important;
}

.pl05 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -webkit-print-color-adjust: exact;
  }
  .header {
    position: relative !important;
  }
  .header .gnav {
    display: none;
  }
  .header .header-tel,
  .header .header-utility,
  .header .header-reserve {
    display: none;
  }
  .pagetitle-wrapper {
    margin-top: 0px !important;
  }
  /*　------- ↓その他参考例　---------
    .header {
        position: relative !important; //ヘッダー固定fixedを解除
    }
    .header .header-inner {
        width: 100% !important; //サイト幅を解除
    }
    .page-title {
        margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
        width: 100% !important; //サイト幅を解除
    }
    .breadcrumbs-list {
        width: 100% !important; //サイト幅を解除
    }
    .global-nav {
        width: 100%; //サイト幅を解除
    }
    ------- ↑その他参考　---------*/
}

@page {
  size: A4;
  margin: 12.7mm 9.7mm;
}

body {
  font-family: 'Noto Sans JP','游ゴシック','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro', sans-serif;
  font-size: 1.4rem;
  font-size: 14px;
  line-height: 1.7;
  color: #222;
  font-weight: 400;
  background: #fff;
}

@media screen and (max-width: 599px) {
  body {
    font-size: 1.4rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.contents {
  max-width: 860px;
  margin: 50px auto 0;
  padding-bottom: 80px;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .contents {
    max-width: 1024px;
    width: calc( 100% - ( 30px * 2 ));
    margin: 110px auto 0;
    padding-bottom: 60px;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 599px) {
  .contents {
    width: 100%;
    margin: 70px auto 0;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 45px;
  }
}

.contents-main-wrap {
  margin-top: 30px;
  width: calc( 100% - 240px - 35px);
}

@media screen and (max-width: 1024px) {
  .contents-main-wrap {
    margin-top: 0;
    width: 100%;
  }
}

.base-wrap {
  width: calc( 100% - ( 30px * 2 ));
  margin: 25px auto 0;
  padding-bottom: 80px;
}

@media screen and (max-width: 1024px) {
  .base-wrap {
    margin: 95px auto 0;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 599px) {
  .base-wrap {
    width: 100%;
    margin: 80px auto 0;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 45px;
  }
}

.base-wrap--w860 {
  max-width: 860px;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 599px) {
  img {
    height: auto;
  }
}

a {
  text-decoration: none;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

input:placeholder-shown {
  color: #aaa;
}

input:input-placeholder {
  color: #aaa;
}

/* IE */
input:-ms-input-placeholder {
  color: #aaa !important;
}

/* Chrome */
input::-webkit-input-placeholder {
  color: #aaa;
}

/* Firefox */
input::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}

.fade {
  opacity: 1;
  transition: 0.5s;
}

.fade:hover {
  opacity: 0.8;
}

input[type="button"], input[type="submit"] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  cursor: pointer;
  transition: 0.5s;
}

input[type="reset"] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: 0.5s;
}

button {
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: 0.5s;
}

.anchor {
  display: block;
}

@media screen and (max-width: 1024px) {
  .anchor {
    margin-top: -80px;
    padding-top: 80px;
  }
}

@media screen and (max-width: 599px) {
  .anchor {
    margin-top: -70px;
    padding-top: 70px;
  }
}

@media screen and (min-width: 1025px) {
  .br-pcsp {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .br-pcsp {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .br-pcsp {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .br-tb {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .br-tb {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .br-tb {
    display: none;
  }
}

.br-sp {
  display: none;
}

@media screen and (max-width: 599px) {
  .br-sp {
    display: block;
  }
}

.br-sp5 {
  display: none;
}

@media screen and (max-width: 320px) {
  .br-sp5 {
    display: block;
  }
}

.header {
  z-index: 1000;
  width: 100%;
  background-color: #00acd7;
}

@media screen and (max-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
  }
}

@media screen and (max-width: 599px) {
  .header {
    height: 60px;
  }
}

.header-border {
  border-top: 12px solid #00acd7;
}

@media screen and (max-width: 1024px) {
  .header-border {
    border-top: none;
  }
}

.header-wrap {
  max-width: 860px;
  width: 100%;
  margin: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .header-wrap {
    max-width: initial;
  }
}

.header__logo {
  margin: 11px 0 0 0;
  width: 129px;
  box-sizing: border-box;
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .header__logo {
    margin: 15px 0 0 15px;
    width: 145px;
  }
}

@media screen and (max-width: 599px) {
  .header__logo {
    margin: 12px 0 0 12px;
    padding: 0;
    width: 129px;
  }
}

.header__logo__link {
  display: block;
}

.header__logo__link:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .header__logo__link:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 1024px) {
  .header__logo-dodeka {
    box-sizing: border-box;
    display: inline-block;
    margin: 15px 0 0 15px;
    width: 162px;
  }
}

@media screen and (max-width: 599px) {
  .header__logo-dodeka {
    margin: 12px 0 0 12px;
    padding: 0;
    width: 146px;
  }
}

.header__logo-dodeka__link {
  display: block;
}

.header__logo-dodeka__link:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .header__logo-dodeka__link:hover {
    opacity: 1;
  }
}

.header .gnav {
  background-color: #00acd7;
}

@media screen and (max-width: 1024px) {
  .header .gnav {
    display: none;
  }
}

.header .gnav-list {
  margin: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .gnav-list__item {
  position: relative;
}

.header .gnav-list__item::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.header .gnav-list__item:first-child::before {
  display: none;
}

.header .gnav-list__item__link {
  position: relative;
  display: block;
  padding: 22px 21px 22px;
  font-size: 1.6rem;
  line-height: 1.0;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.02em;
  box-sizing: border-box;
  background-color: #00acd7;
}

.header .gnav-list__item__link.icon-browser {
  padding: 21px 34px 22px 21px;
  background-image: url(../img/common/icon_header_browser.png);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: right 17px top 50%;
}

.header .gnav-list__item__link:hover {
  background-color: #0081a1;
}

@media screen and (max-width: 1024px) {
  .header .gnav-list__item__link:hover {
    background-color: #00acd7;
  }
}

.header .gnav-list__item__link--now {
  color: #fff;
  background-color: #0081a1;
}

/*
.gnav-sp__btn
------------------------------------------------*/
.gnav-sp__btn {
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #00acd7;
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn {
    width: 54px;
    height: 60px;
  }
}

.gnav-sp__btn span {
  position: absolute;
  display: inline-block;
  -moz-transition: 0.4s;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
  left: 0;
  right: 0;
  width: 28px;
  height: 3px;
  background-color: #fff;
  margin: auto;
  z-index: 101;
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn span {
    width: 25px;
  }
}

.gnav-sp__btn span:nth-of-type(1) {
  top: 24px;
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn span:nth-of-type(1) {
    top: 20px;
  }
}

.gnav-sp__btn span:nth-of-type(2) {
  top: 34px;
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn span:nth-of-type(2) {
    top: 28px;
  }
}

.gnav-sp__btn span:nth-of-type(3) {
  bottom: 23px;
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn span:nth-of-type(3) {
    bottom: 21px;
  }
}

.gnav-sp__btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }
}

.gnav-sp__btn.active span:nth-of-type(2) {
  opacity: 0;
}

.gnav-sp__btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

@media screen and (max-width: 599px) {
  .gnav-sp__btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
}

@media screen and (min-width: 1025px) {
  .gnav-sp__btn {
    display: none;
  }
}

.gnav-sp {
  display: none;
  height: calc( 100vh - 70px);
  overflow: scroll;
  width: 100%;
  position: fixed;
  top: 70px;
  background: #00acd7;
  z-index: 100;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .gnav-sp {
    padding-top: 2px;
    height: calc( 100vh - 60px);
    top: 60px;
  }
}

.gnav-sp__list__item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.gnav-sp__list__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.gnav-sp__list__item a {
  position: relative;
  display: block;
  width: 100%;
  padding: 18px 15px;
  font-size: 1.6rem;
  color: #fff;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .gnav-sp__list__item a {
    font-size: 1.5rem;
  }
}

.gnav-sp__list__item a .icon-browser-sp {
  padding-right: 22px;
  background-image: url(../img/common/icon_header_browser.png);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: right 0 top 50%;
}

.gnav-sp__list__item a::before {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-sp-btn {
  margin: 25px 20px 0;
  padding: 18px 18px 22px;
  background-color: #f7f7f7;
}

.text-base {
  font-size: 1.4rem;
  line-height: 1.7;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: justify;
  text-justify: inter-ideograph;
  /*IE用*/
}

@media screen and (max-width: 599px) {
  .text-base {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.text-bold {
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  .text-bold {
    font-weight: 500;
  }
}

.text-strong {
  font-weight: 600;
}

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

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

.text-right {
  text-align: right;
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.text-red {
  color: #e03a3a !important;
}

.caution {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 3px;
  line-height: 1.6;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

.caution.blue {
  color: #00acd7;
}

.caution-small {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 3px;
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

.text-link {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  color: #00acd7;
  text-decoration: underline !important;
}

.text-link:hover {
  color: #006882;
  text-decoration: none !important;
}

@media screen and (max-width: 1024px) {
  .text-link {
    color: #00acd7;
    text-decoration: underline !important;
  }
  .text-link:hover {
    color: #00acd7;
    text-decoration: none !important;
  }
  .text-link--delete {
    margin-top: 2px;
    position: relative;
    top: auto;
    right: auto;
  }
}

/*---------------------------------------
topicpass
----------------------------------------*/
.topicpass {
  position: relative;
  z-index: 80;
  margin-bottom: 40px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .topicpass {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 599px) {
  .topicpass {
    margin-bottom: 15px;
  }
}

.topicpass__item {
  display: inline-block;
  font-size: 1.2rem;
  color: #555;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
}

@media screen and (max-width: 599px) {
  .topicpass__item {
    font-size: 1.1rem;
  }
}

.topicpass__item::before {
  content: '＞';
  margin: 0 3px;
  color: #a9a9a9;
}

.topicpass__item:first-child::before {
  display: none;
}

.topicpass__item a {
  color: #00acd7;
}

.topicpass__item a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .topicpass__item a:hover {
    text-decoration: none;
  }
}

/*---------------------------------------
side-nav
----------------------------------------*/
.side-nav-wrap {
  padding-bottom: 100px;
  width: 240px;
}

@media screen and (max-width: 1024px) {
  .side-nav-wrap {
    padding-bottom: 0;
    width: calc( 100% + ( 30px * 2 ));
    margin: 60px -30px 0;
  }
}

@media screen and (max-width: 599px) {
  .side-nav-wrap {
    padding-bottom: 0;
    width: calc( 100% + ( 15px * 2 ));
    margin: 45px -15px 0;
  }
}

.side-nav-wrap__logo {
  width: 240px;
  margin: auto;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .side-nav-wrap__logo {
    margin-top: 5px;
    margin-bottom: 25px;
    width: 100px;
  }
}

@media screen and (max-width: 599px) {
  .side-nav-wrap__logo {
    width: 90px;
  }
}

.side-nav-wrap__logo > a {
  display: block;
}

.side-nav-wrap__logo > a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .side-nav-wrap__logo > a:hover {
    opacity: 1;
  }
}

.side-nav-wrap__nav {
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .side-nav-wrap__nav {
    margin-bottom: 0;
  }
}

.side-nav-wrap__nav > li {
  position: relative;
}

.side-nav-wrap__nav > li::after {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 200px;
  height: 1px;
  background-color: #009dc4;
  z-index: 10;
}

@media screen and (max-width: 1024px) {
  .side-nav-wrap__nav > li::after {
    width: 94%;
  }
}

@media screen and (max-width: 599px) {
  .side-nav-wrap__nav > li::after {
    width: 90%;
  }
}

.side-nav-wrap__nav > li:last-child::after {
  display: none;
}

.side-nav-wrap__nav > li.current a {
  background-color: #0081a1;
}

.side-nav-wrap__nav > li > a {
  position: relative;
  display: block;
  padding: 28px 35px 28px 20px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  background-color: #00acd7;
}

.side-nav-wrap__nav > li > a::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.side-nav-wrap__nav > li > a:hover {
  background-color: #0081a1;
}

@media screen and (max-width: 1024px) {
  .side-nav-wrap__nav > li > a {
    background-color: #00acd7;
  }
}

.side-nav-wrap__nav > li > a.now {
  background-color: #0081a1;
}

.side-nav-wrap__etc {
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .side-nav-wrap__etc {
    margin-bottom: 40px;
  }
}

.side-nav-wrap__etc > li {
  position: relative;
}

.side-nav-wrap__etc > li::after {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 200px;
  height: 1px;
  background-color: #dddddd;
}

@media screen and (max-width: 1024px) {
  .side-nav-wrap__etc > li::after {
    width: 94%;
  }
}

@media screen and (max-width: 599px) {
  .side-nav-wrap__etc > li::after {
    width: 90%;
  }
}

.side-nav-wrap__etc > li:last-child::after {
  display: none;
}

.side-nav-wrap__etc > li > a {
  position: relative;
  display: block;
  padding: 28px 35px 28px 20px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #222;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  background-color: #f5f5f5;
  background-image: url(../img/common/icon_side_etc_browser.png);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: right 20px top 50%;
}

.side-nav-wrap__etc > li > a:hover {
  background-color: #dddddd;
}

@media screen and (max-width: 1024px) {
  .side-nav-wrap__etc > li > a {
    background-color: #f5f5f5;
  }
}

/*---------------------------------------
footer
----------------------------------------*/
.footer-wrap {
  padding: 18px 0 18px;
  background-color: #00acd7;
}

.footer-wrap__inner {
  max-width: 780px;
  width: calc( 100% - ( 30px * 2 ));
  margin: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .footer-wrap {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.footer-wrap__logo {
  width: 129px;
}

@media screen and (max-width: 1024px) {
  .footer-wrap__logo {
    margin: auto;
  }
}

.footer-wrap__logo > a {
  display: block;
}

@media screen and (max-width: 1024px) {
  .footer-wrap__nav {
    display: none;
  }
}

.footer-wrap__nav__item {
  font-size: 1.4rem;
  line-height: 1.1;
  color: #414141;
  display: inline;
}

@media screen and (max-width: 1279px) {
  .footer-wrap__nav__item {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1099px) {
  .footer-wrap__nav__item {
    font-size: 1.3rem;
  }
}

.footer-wrap__nav__item::before {
  content: '|';
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 1099px) {
  .footer-wrap__nav__item::before {
    margin: 0 4px;
  }
}

.footer-wrap__nav__item:first-child::before {
  display: none;
}

.footer-wrap__nav__item:last-child::after {
  display: none;
}

.footer-wrap__nav__item__link {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.3;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 300;
}

.footer-wrap__nav__item__link:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .footer-wrap__nav__item__link:hover {
    text-decoration: none;
  }
}

.copyright {
  padding: 8px 0;
  font-size: 1.1rem;
  line-height: 1.3;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-align: center;
  background-color: #bbb;
}

@media screen and (max-width: 599px) {
  .copyright {
    font-size: 1.1rem;
    line-height: 1.2;
  }
}

.pagetop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  display: block;
  width: 70px;
  height: 70px;
  background-color: #009fc7;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  z-index: 25;
}

@media screen and (max-width: 1024px) {
  .pagetop {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 599px) {
  .pagetop {
    bottom: 20px;
    right: 15px;
    width: 54px;
    height: 54px;
  }
}

.pagetop::before {
  position: absolute;
  content: '';
  top: 32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

@media screen and (max-width: 1024px) {
  .pagetop::before {
    top: 27px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

@media screen and (max-width: 599px) {
  .pagetop::before {
    top: 24px;
    width: 13px;
    height: 13px;
  }
}

.pagetop:hover {
  opacity: 0.8;
}

.pagetop:hover::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media screen and (max-width: 1024px) {
  .pagetop:hover {
    opacity: 1;
    background-color: #009fc7;
  }
  .pagetop:hover::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

/*ボタン横幅*/
.btn-base-wrap {
  max-width: 294px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .btn-base-wrap {
    max-width: initial;
  }
}

.btn-base-wrap--about {
  max-width: 260px;
}

@media screen and (max-width: 599px) {
  .btn-base-wrap--about {
    max-width: initial;
  }
}

@media screen and (max-width: 1024px) {
  .btn-base-wrap--logout {
    max-width: 500px;
  }
}

@media screen and (max-width: 599px) {
  .btn-base-wrap--logout {
    width: auto;
    margin: 0 15px;
  }
}

/*角丸ボタン*/
.btn-base {
  position: relative;
  display: block;
  padding: 15px 25px 14px 20px;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.02em;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background-image: url(../img/top/arrow_w.svg);
  background-repeat: no-repeat;
  background-size: 8px auto;
  background-position: right 35px top 53%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.btn-base:hover {
  background-position: right 30px top 53%;
}

@media screen and (max-width: 1024px) {
  .btn-base:hover {
    background-position: right 35px top 53%;
  }
}

.btn-base.green {
  background-color: #00b085;
  -webkit-box-shadow: 0 3px #008a68;
  box-shadow: 0 3px #008a68;
}

.btn-base.green:hover {
  background-color: #06b88b;
}

@media screen and (max-width: 1024px) {
  .btn-base.green:hover {
    background-color: #00b085;
  }
}

.btn-base.blue {
  background-color: #00acd7;
  -webkit-box-shadow: 0 3px #006882;
  box-shadow: 0 3px #006882;
}

.btn-base.blue:hover {
  background-color: #04b4e0;
}

@media screen and (max-width: 1024px) {
  .btn-base.blue:hover {
    background-color: #00acd7;
  }
}

.btn-base--about {
  padding: 14px 20px 14px 4px;
  background-position: right 10px top 53%;
}

.btn-base--about:hover {
  background-position: right 7px top 53%;
}

@media screen and (max-width: 1024px) {
  .btn-base--about:hover {
    background-position: right 10px top 53%;
  }
}

@media screen and (max-width: 599px) {
  .btn-base--about {
    padding-left: 10px;
  }
}

.btn-base--submit {
  padding-left: 25px;
  max-width: 294px;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .btn-base--submit {
    max-width: initial;
  }
}

.btn-base--logout {
  background-image: none;
}

.btn-base--top {
  margin: auto;
  padding: 12px 10px 10px 10px;
  max-width: 260px;
  font-size: 1.5rem;
  background-image: none;
}

@media screen and (max-width: 1024px) {
  .btn-base--top {
    max-width: initial;
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .btn-base--top {
    width: 70%;
  }
}

.btn-base--delete {
  margin: auto;
  padding: 12px 10px 10px 10px;
  max-width: 260px;
  font-size: 1.5rem;
  background-image: none;
  background-color: #f36161;
  -webkit-box-shadow: 0 3px #c84444;
  box-shadow: 0 3px #c84444;
}

.btn-base--delete:hover {
  background-color: #fa7575;
}

@media screen and (max-width: 1024px) {
  .btn-base--delete:hover {
    background-color: #f36161;
  }
}

@media screen and (max-width: 1024px) {
  .btn-base--delete {
    max-width: initial;
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .btn-base--delete {
    width: 70%;
  }
}

/*新着ボタン*/
.back-btn {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 15px 15px 16px 25px;
  max-width: 205px;
  font-size: 17px;
  line-height: 1.3;
  color: #00acd7;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  border: 1px solid #00acd7;
  box-sizing: border-box;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.back-btn::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #00acd7;
  border-left: 3px solid #00acd7;
  transform: rotate(45deg);
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.back-btn:hover {
  color: #FFF;
  background-color: #00acd7;
}

.back-btn:hover::before {
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
}

@media screen and (max-width: 1024px) {
  .back-btn:hover {
    color: #00acd7;
    background-color: #FFF;
  }
  .back-btn:hover::before {
    border-bottom: 3px solid #00acd7;
    border-left: 3px solid #00acd7;
  }
}

@media screen and (max-width: 599px) {
  .back-btn {
    padding: 15px 20px 15px 22px;
    font-size: 1.4rem;
  }
}

/*---------------------------------------
title
----------------------------------------*/
.main-title {
  position: relative;
  margin-bottom: 15px;
  padding: 30px 0 24px;
  font-size: 3.7rem;
  line-height: 1.3;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-bottom: 1px solid #00acd7;
  background-image: url(../img/common/img_main_title_yagi.png);
  background-repeat: no-repeat;
  background-size: 82px auto;
  background-position: right bottom;
}

@media screen and (max-width: 599px) {
  .main-title {
    padding: 25px 0 18px;
    font-size: 2.3rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
    background-size: calc( 82px * 7.2 / 10) auto;
  }
}

.main-title::before {
  content: '';
  position: absolute;
  display: block;
  left: -2px;
  bottom: -1px;
  width: 243px;
  height: 4px;
  background-color: #00acd7;
  border-radius: 2px 0 0 2px;
}

.main-title::after {
  content: '';
  position: absolute;
  display: block;
  bottom: -1px;
  left: 241px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: transparent transparent #00acd7 #00acd7;
}

.ttl01 {
  position: relative;
  margin-bottom: 30px;
  padding: 12px 14px 12px 28px;
  font-size: 2.3rem;
  line-height: 1.3;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 600;
  background-color: #00acd7;
}

@media screen and (max-width: 599px) {
  .ttl01 {
    margin-bottom: 20px;
    padding: 12px 14px 12px;
    font-size: 1.8rem;
  }
}

.list-square > li {
  position: relative;
  padding-left: 10px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: justify;
}

.list-square > li:not(:first-child) {
  margin-top: 8px;
}

@media screen and (max-width: 599px) {
  .list-square > li {
    margin-bottom: 6px;
    line-height: 1.6;
  }
}

.list-square > li::before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #00acd7;
}

.list-square.green::before {
  background-color: #00b085;
}

.list-square.login-list > li {
  padding-left: 8px;
  font-size: 1.3rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
}

@media screen and (max-width: 599px) {
  .list-square.login-list > li {
    line-height: 1.6;
  }
}

.list-square.login-list > li:not(:first-child) {
  margin-top: 12px;
}

.list-square.login-list > li::before {
  background-color: #00b085;
}

/*---------------------------------------
table
----------------------------------------*/
.table-base {
  margin-bottom: 35px;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #e6e6e6;
}

.table-base tr {
  border-bottom: 1px solid #e6e6e6;
}

.table-base th {
  position: relative;
  padding: 18px 15px 18px 0;
  width: 160px;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #00acd7;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  vertical-align: top;
  text-align: left;
}

@media screen and (max-width: 599px) {
  .table-base th {
    display: block;
    width: 100%;
    padding: 15px 0 5px 15px;
  }
  .table-base th::before {
    content: '';
    position: absolute;
    display: inline-block;
    top: 25px;
    left: 1px;
    width: 8px;
    height: 8px;
    background-color: #00acd7;
  }
}

.table-base td {
  padding: 18px 25px 18px 18px;
  width: calc( 100% - 160px);
  font-size: 1.4rem;
  line-height: 1.7;
  color: #3a3a3a;
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  text-align: left;
}

@media screen and (max-width: 599px) {
  .table-base td {
    display: block;
    padding: 0 0 18px 0;
    width: 100%;
  }
}

.table-base td .td-caution {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  font-style: normal;
}

.table-base td .td-caution-small {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 3px;
  font-size: 1.2rem;
  font-style: normal;
}

@media screen and (max-width: 599px) {
  .table-base td .td-caution-small {
    margin-top: 0;
  }
}

/*---------------------------------------
icon
----------------------------------------*/
/*-- 未、済　ファイルアイコン ---*/
.icon-comment {
  position: absolute;
  top: 11px;
  right: 0;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 18px;
  color: #fff;
  font-weight: 300;
  width: 18px;
  height: 18px;
  text-align: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

@media screen and (max-width: 1024px) {
  .icon-comment {
    top: 3px;
    width: 20px;
    height: 20px;
    font-weight: 500;
  }
}

@media screen and (max-width: 1024px) {
  .icon-comment {
    font-size: 1.3rem;
  }
}

.icon-comment--not {
  background-color: #f26161;
}

.icon-comment--finished {
  background-color: #508ce5;
}

/*---------------------------------------
top
----------------------------------------*/
.top-base-wrap {
  max-width: 860px;
  width: calc( 100% - ( 30px * 2 ));
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 599px) {
  .top-base-wrap {
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.cmn-inner {
  max-width: 780px;
  width: calc( 100% - ( 20px * 2 ));
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .cmn-inner {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .top-mainimg {
    margin-top: 70px;
  }
}

@media screen and (max-width: 599px) {
  .top-mainimg {
    margin-top: 65px;
  }
}

.top-mainimg__wrapper {
  height: 500px;
  background-image: url(../img/top/mainimg.png);
  background-size: 603px auto;
  background-position: left 50%;
  background-repeat: no-repeat;
  /*@include mq(w320){
            background-size: 86% auto;
            background-position: left 40%;
        }*/
}

@media screen and (max-width: 1024px) {
  .top-mainimg__wrapper {
    background-size: 565px auto;
  }
}

@media screen and (max-width: 767px) {
  .top-mainimg__wrapper {
    height: auto;
    background-size: 82% auto;
    background-position: left 5px top 20%;
  }
}

@media screen and (max-width: 599px) {
  .top-mainimg__wrapper {
    height: auto;
    background-position: left 5px top 16%;
  }
}

@media screen and (max-width: 320px) {
  .top-mainimg__wrapper {
    background-position: left 14%;
  }
}

.top-mainimg .top-base-wrap {
  width: calc( 100% - ( 20px * 2 ));
}

@media screen and (max-width: 599px) {
  .top-mainimg .top-base-wrap {
    width: calc( 100% - ( 10px * 2 ));
    padding-left: 0;
    padding-right: 0;
  }
}

.top-mainimg__inner {
  position: relative;
}

.top-mainimg__title {
  position: relative;
  margin-bottom: 30px;
  padding-top: 60px;
}

@media screen and (max-width: 767px) {
  .top-mainimg__title {
    padding-top: 15%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 599px) {
  .top-mainimg__title {
    padding-top: 10%;
  }
}

.top-mainimg__title__main {
  float: right;
  width: 367px;
}

@media screen and (max-width: 1024px) {
  .top-mainimg__title__main {
    width: 355px;
  }
}

@media screen and (max-width: 767px) {
  .top-mainimg__title__main {
    padding-bottom: 15%;
    width: 46%;
  }
}

@media screen and (max-width: 599px) {
  .top-mainimg__title__main {
    padding-bottom: 20%;
  }
}

.top-mainimg__title__sub {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 1.4rem;
  line-height: 1.3;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .top-mainimg__title__sub {
    margin-bottom: 10px;
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
    font-size: 1.4rem;
  }
}

.top-mainimg__btn {
  position: absolute;
  bottom: -50px;
  right: 10px;
  width: 294px;
  background-color: #f7f7f7;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  padding: 6px 6px 8px;
}

@media screen and (max-width: 767px) {
  .top-mainimg__btn {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0 auto 35px;
    padding: 0;
  }
}

.top-about {
  padding: 60px 0;
  background-color: #f5f5f5;
}

@media screen and (max-width: 599px) {
  .top-about {
    padding: 35px 0;
  }
}

.top-about__catchbox {
  margin-bottom: 30px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .top-about__catchbox {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.top-about__catchbox__catch {
  position: relative;
  width: 48%;
  padding-right: 10px;
  font-size: 1.8rem;
  line-height: 1.65;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.02em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .top-about__catchbox__catch {
    padding-right: 20px;
  }
}

@media screen and (max-width: 599px) {
  .top-about__catchbox__catch {
    margin-bottom: 20px;
    padding: 0;
    width: 100%;
    font-size: 1.7rem;
    text-align: justify;
  }
}

.top-about__catchbox__catch::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 76px;
  background-color: #ddd;
}

@media screen and (max-width: 599px) {
  .top-about__catchbox__catch::before {
    display: none;
  }
}

.top-about__catchbox__list {
  width: 52%;
  padding-left: 20px;
}

@media screen and (max-width: 599px) {
  .top-about__catchbox__list {
    width: 100%;
    padding-left: 0;
  }
}

.top-about__catchbox__list > li {
  position: relative;
  padding-left: 10px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: justify;
}

.top-about__catchbox__list > li:not(:first-child) {
  margin-top: 8px;
}

@media screen and (max-width: 599px) {
  .top-about__catchbox__list > li {
    margin-bottom: 6px;
    line-height: 1.6;
  }
}

.top-about__catchbox__list > li::before {
  content: '';
  position: absolute;
  display: inline-block;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #00acd7;
}

.top-about__service {
  padding: 30px 30px 30px 30px;
  background-color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .top-about__service {
    padding: 22px 22px 22px;
  }
}

@media screen and (max-width: 599px) {
  .top-about__service {
    padding: 20px 18px 22px;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.top-about__service__text {
  padding-right: 25px;
  font-size: 1.4rem;
  line-height: 1.7;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: justify;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .top-about__service__text {
    margin-bottom: 15px;
    padding-right: 0;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.top-flow {
  padding: 60px 0;
  background-color: #fff;
}

@media screen and (max-width: 599px) {
  .top-flow {
    padding: 35px 0;
  }
}

.top-flow__figbox {
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .top-flow__figbox {
    width: 56%;
    margin: 0 auto 25px;
  }
}

.top-flow__list {
  padding: 25px 28px 25px;
  background-color: #f5f5f5;
}

@media screen and (max-width: 599px) {
  .top-flow__list {
    padding: 20px 18px 20px;
  }
}

.top-flow__list > li {
  padding-left: 1em;
  text-indent: -1.4em;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #000;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: justify;
}

.top-flow__list > li:not(:first-child) {
  margin-top: 6px;
}

.top-service {
  margin-bottom: 60px;
}

@media screen and (max-width: 599px) {
  .top-service {
    margin-bottom: 35px;
  }
}

.top-service__box {
  padding: 25px 28px 25px;
  background-color: #f5f5f5;
}

@media screen and (max-width: 599px) {
  .top-service__box {
    padding: 20px 18px 20px 12px;
  }
}

.top-service__box__title {
  margin-bottom: 12px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #3a3a3a;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}

.top-service__box__list > li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #3a3a3a;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: justify;
}

.top-service__box__list > li:not(:first-child) {
  margin-top: 7px;
}

.top-use {
  margin-bottom: 70px;
}

@media screen and (max-width: 599px) {
  .top-use {
    margin-bottom: 40px;
  }
}

.top-use__text {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
}

.top-use__box {
  padding: 25px 28px 25px;
  background-color: #f5f5f5;
}

.top-use__box__title {
  margin-bottom: 12px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #008a68;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
}

.top-use__box__btn {
  text-align: center;
}

/*---------- input ----------*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-wrapper input[type="text"],
.form-wrapper input[type="tel"],
.form-wrapper input[type="email"],
.form-wrapper textarea,
.form-wrapper select {
  font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro," メイリオ", Meiryo, Osaka," ＭＳ Ｐゴシック", MS PGothic," sans-serif";
  font-size: 1.6rem;
  color: #3a3a3a;
  border: 1px solid #eee;
  background-color: #f5f5f5;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px !important;
}

@media screen and (max-width: 1024px) {
  .form-wrapper input[type="text"],
  .form-wrapper input[type="tel"],
  .form-wrapper input[type="email"],
  .form-wrapper textarea,
  .form-wrapper select {
    -webkit-appearance: none;
    width: 100%;
  }
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

select::-ms-expand {
  display: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  width: 100%;
  height: 40px;
  padding: 5px 10px;
}

input[type="file"] {
  line-height: 1.0;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 5px 10px;
}

/*---------- form ----------*/
.form-wrapper .form-lead {
  margin-bottom: 30px;
  font-size: 1.4rem;
  color: #3a3a3a;
  line-height: 1.7;
  font-weight: 400;
}

@media screen and (max-width: 599px) {
  .form-wrapper .form-lead {
    margin-bottom: 35px;
  }
}

.form-wrapper .formtbl01 {
  width: 100%;
  margin-bottom: 60px;
}

.form-wrapper .formtbl01--sent-mail {
  padding-bottom: 50px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
  .form-wrapper .formtbl01 {
    margin: 0 auto 45px;
  }
}

@media screen and (max-width: 599px) {
  .form-wrapper .formtbl01 {
    margin: 0 auto 40px;
  }
}

.form-wrapper .formtbl01__list {
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .form-wrapper .formtbl01__list {
    margin-top: 40px;
  }
}

@media screen and (max-width: 599px) {
  .form-wrapper .formtbl01__list {
    margin-top: 30px;
  }
}

.form-wrapper .formtbl01__list > li {
  padding-bottom: 12px;
}

.form-wrapper .formtbl01__list > li.sent-mail-item {
  padding-bottom: 20px;
}

.form-wrapper .formtbl01__box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {    .form-wrapper .formtbl01__box.formtbl01__box__subcaption {        margin-left: 15px;    }}
.form-wrapper .formtbl01__title {
  position: relative;
  width: 24%;
  padding: 9px 10px 9px 20px;
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  box-sizing: border-box;
  background-color: #e6f8fc;
}
.form-wrapper .formtbl01__title::before {
  position: absolute;
  content: '';
  display: block;
  top: 20px;
  left: 0;
  width: 12px;
  height: 3px;
  background-color: #00acd7;
}

@media screen and (max-width: 1024px) {
  .form-wrapper .formtbl01__title {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px 12px 10px 20px;
  }
}

.form-wrapper .formtbl01__title__main {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #00acd7;
  font-weight: 500;
}

.form-wrapper .formtbl01__title__text {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
}

@media screen and (max-width: 599px) {
  .form-wrapper .formtbl01__title__text {
    line-height: 1.6;
  }
}

.form-wrapper .formtbl01__contents {
  width: calc( 100% - 24% - 20px);
  box-sizing: border-box;
  /* 各ベンダープレフィックスが取れた標準版！！(http://caniuse.com/#search=placeholder-shown) */
  /* Google Chrome, Safari, Opera 15+, Android, iOS */
  /* Firefox 18- */
  /* Firefox 19+ */
  /* IE 10+ */
}

@media screen and (max-width: 1024px) {
  .form-wrapper .formtbl01__contents {
    width: 100%;
  }
}

.form-wrapper .formtbl01__contents--address {
  position: relative;
}

.form-wrapper .formtbl01__contents--address input[type="text"], .form-wrapper .formtbl01__contents--address input[type="tel"], .form-wrapper .formtbl01__contents--address input[type="email"] {
  width: calc( 100% - 106px - 15px) !important;
}

@media screen and (max-width: 599px) {
  .form-wrapper .formtbl01__contents--address input[type="text"], .form-wrapper .formtbl01__contents--address input[type="tel"], .form-wrapper .formtbl01__contents--address input[type="email"] {
    width: calc( 100% - 95px - 10px) !important;
  }
}

@media screen and (max-width: 320px) {
  .form-wrapper .formtbl01__contents--address input[type="text"], .form-wrapper .formtbl01__contents--address input[type="tel"], .form-wrapper .formtbl01__contents--address input[type="email"] {
    width: calc( 100% - 45px - 12px) !important;
  }
}

.form-wrapper .formtbl01__contents__icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 5px;
  width: 106px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #81c5d6;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 599px) {
  .form-wrapper .formtbl01__contents__icon {
    padding: 6px 3px 6px 3px;
    width: 95px;
    border: 1px solid rgba(22, 178, 217, 0.8);
  }
}

@media screen and (max-width: 320px) {
  .form-wrapper .formtbl01__contents__icon {
    padding: 6px 0 6px 5px;
    width: 45px;
  }
}

@media screen and (min-width: 1025px) {
  .form-wrapper .formtbl01__contents__icon:hover {
    background-color: #edfafc;
  }
}

.form-wrapper .formtbl01__contents__icon span {
  display: inline-block;
  padding: 4px 0 4px 20px;
  padding-left: 20px;
  font-size: 1.2rem;
  color: #16b2d9;
  font-weight: 400;
  letter-spacing: -.02em;
  background-image: url(../img/form/icon_book.svg);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: left 52%;
}

@media screen and (max-width: 599px) {
  .form-wrapper .formtbl01__contents__icon span {
    padding: 4px 0 4px 19px;
    font-size: 1.1rem;
    font-weight: 600;
  }
}

@media screen and (max-width: 320px) {
  .form-wrapper .formtbl01__contents__icon span {
    text-indent: -9999px;
  }
}

.form-wrapper .formtbl01__contents input[type="text"], .form-wrapper .formtbl01__contents input[type="tel"], .form-wrapper .formtbl01__contents input[type="email"] {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  padding: 14px 12px 12px 12px;
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
  .form-wrapper .formtbl01__contents input[type="text"], .form-wrapper .formtbl01__contents input[type="tel"], .form-wrapper .formtbl01__contents input[type="email"] {
    padding: 10px 10px 8px 10px;
  }
}

@media screen and (max-width: 599px) {
  .form-wrapper .formtbl01__contents input[type="text"], .form-wrapper .formtbl01__contents input[type="tel"], .form-wrapper .formtbl01__contents input[type="email"] {
    padding: 10px 10px 10px 10px;
    font-size: 1.6rem;
    line-height: 1.2;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}

.form-wrapper .formtbl01__contents input[type="text"].error-box, .form-wrapper .formtbl01__contents input[type="tel"].error-box, .form-wrapper .formtbl01__contents input[type="email"].error-box {
  border: 1px solid rgba(224, 58, 58, 0.8);
}

.form-wrapper .formtbl01__contents input[type="button"] {
  font-size: 1.4rem;
  line-height: 1;
  color: #555;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  padding: 14px 12px 12px 12px;
}

.form-wrapper .formtbl01__contents :placeholder-shown {
  color: #888888;
}

.form-wrapper .formtbl01__contents ::-webkit-input-placeholder {
  color: #888888;
}

.form-wrapper .formtbl01__contents :-moz-placeholder {
  color: #888888;
  opacity: 1;
}

.form-wrapper .formtbl01__contents ::-moz-placeholder {
  color: #888888;
  opacity: 1;
}

.form-wrapper .formtbl01__contents :-ms-input-placeholder {
  color: #888888;
}

.form-wrapper .formtbl02 {
  width: 100%;
  margin-bottom: 60px;
}

@media screen and (max-width: 1024px) {
  .form-wrapper .formtbl02 {
    margin: 0 auto 45px;
  }
}

@media screen and (max-width: 599px) {
  .form-wrapper .formtbl02 {
    margin: 0 auto 40px;
  }
}

.form-wrapper .formtbl02__list {
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .form-wrapper .formtbl02__list {
    margin-top: 40px;
  }
}

@media screen and (max-width: 599px) {
  .form-wrapper .formtbl02__list {
    margin-top: 30px;
  }
}

.form-wrapper .formtbl02__list > li {
  padding-bottom: 12px;
}

.form-wrapper .formtbl02__title {
  position: relative;
  margin-bottom: 12px;
  width: 100%;
  padding: 9px 10px 9px 20px;
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  box-sizing: border-box;
  background-color: #e6f8fc;
}

.form-wrapper .formtbl02__title--textarea {
  margin-bottom: 3px;
}

@includemq (tb) {
  .form-wrapper .formtbl02__title--textarea {
    margin-bottom: 12px;
  }
}

.form-wrapper .formtbl02__title::before {
  position: absolute;
  content: '';
  display: block;
  top: 20px;
  left: 0;
  width: 12px;
  height: 3px;
  background-color: #00acd7;
}

@media screen and (max-width: 1024px) {
  .form-wrapper .formtbl02__title {
    margin-bottom: 12px;
    padding: 10px 12px 10px 20px;
  }
}

.form-wrapper .formtbl02__title__main {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #00acd7;
  font-weight: 500;
}

.form-wrapper .formtbl02__title__text {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
}

@media screen and (max-width: 599px) {
  .form-wrapper .formtbl02__title__text {
    line-height: 1.6;
  }
}

.form-wrapper .formtbl02__contents {
  width: 100%;
  /* 各ベンダープレフィックスが取れた標準版！！(http://caniuse.com/#search=placeholder-shown) */
  /* Google Chrome, Safari, Opera 15+, Android, iOS */
  /* Firefox 18- */
  /* Firefox 19+ */
  /* IE 10+ */
}

.form-wrapper .formtbl02__contents--file {
  padding-bottom: 12px; position: relative;
}

.form-wrapper .formtbl02__contents input[type="text"], .form-wrapper .formtbl02__contents input[type="tel"], .form-wrapper .formtbl02__contents input[type="email"] {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  padding: 14px 12px 12px 12px;
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
  .form-wrapper .formtbl02__contents input[type="text"], .form-wrapper .formtbl02__contents input[type="tel"], .form-wrapper .formtbl02__contents input[type="email"] {
    padding: 10px 10px 8px 10px;
  }
}

@media screen and (max-width: 599px) {
  .form-wrapper .formtbl02__contents input[type="text"], .form-wrapper .formtbl02__contents input[type="tel"], .form-wrapper .formtbl02__contents input[type="email"] {
    padding: 10px 10px 10px 10px;
    font-size: 1.6rem;
    line-height: 1.2;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}

.form-wrapper .formtbl02__contents input[type="button"] {
  font-size: 1.4rem;
  line-height: 1;
  color: #555;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  padding: 14px 12px 12px 12px;
}

.form-wrapper .formtbl02__contents textarea {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 12px 12px 13px 12px;
  border: 1px solid #eee;
  background-color: #f5f5f5;
  box-sizing: border-box;
  color: #222;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}

@media screen and (max-width: 1024px) {
  .form-wrapper .formtbl02__contents textarea {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 12px 15px 12px;
  }
}

@media screen and (max-width: 599px) {
  .form-wrapper .formtbl02__contents textarea {
    font-size: 1.6rem;
  }
}

.form-wrapper .formtbl02__contents :placeholder-shown {
  color: #888888;
}

.form-wrapper .formtbl02__contents ::-webkit-input-placeholder {
  color: #888888;
}

.form-wrapper .formtbl02__contents :-moz-placeholder {
  color: #888888;
  opacity: 1;
}

.form-wrapper .formtbl02__contents ::-moz-placeholder {
  color: #888888;
  opacity: 1;
}

.form-wrapper .formtbl02__contents :-ms-input-placeholder {
  color: #888888;
}

.form-download-wrap {
  padding: 30px 20px 30px;
  border: 4px solid #eee;
}

@media screen and (max-width: 599px) {
  .form-download-wrap {
    padding: 20px 15px 10px;
  }
}

.form-download-wrap .formtbl03 {
  width: 100%;
}

.form-download-wrap .formtbl03__list > li:not(:last-child) {
  padding-bottom: 18px;
}

@media screen and (max-width: 1024px) {
  .form-download-wrap .formtbl03__list > li:not(:last-child) {
    padding-bottom: 30px;
  }
}

.form-download-wrap .formtbl03__box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

.form-download-wrap .formtbl03__title {
  position: relative;
  width: 24%;
  padding: 9px 10px 9px 20px;
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  box-sizing: border-box;
  background-color: #e6f8fc;
}

.form-download-wrap .formtbl03__title::before {
  position: absolute;
  content: '';
  display: block;
  top: 20px;
  left: 0;
  width: 12px;
  height: 3px;
  background-color: #00acd7;
}

@media screen and (max-width: 1024px) {
  .form-download-wrap .formtbl03__title {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px 12px 10px 20px;
  }
}

.form-download-wrap .formtbl03__title__main {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #00acd7;
  font-weight: 500;
}

.form-download-wrap .formtbl03__title__text {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
}

@media screen and (max-width: 599px) {
  .form-download-wrap .formtbl03__title__text {
    line-height: 1.6;
  }
}

.form-download-wrap .formtbl03__contents {
  width: calc(100% - 24% - 20px);
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .form-download-wrap .formtbl03__contents {
    width: 100%;
  }
}

.form-download-wrap .formtbl03__category-box {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px 2px;
  word-break: break-all;
  word-wrap: break-all;
}

@media screen and (max-width: 1024px) {
  .form-download-wrap .formtbl03__category-box {
    border-spacing: 1px 2px;
  }
}

.form-download-wrap .formtbl03__category-box th {
  padding: 6px 5px 6px;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
  background-color: #ebebeb;
  text-align: center;
}

.form-download-wrap .formtbl03__category-box th.category-file {
  width: 50%;
}

@media screen and (max-width: 599px) {
  .form-download-wrap .formtbl03__category-box th.category-file {
    width: 50%;
  }
}

.form-download-wrap .formtbl03__category-box th.category-size {
  width: 25%;
}

@media screen and (max-width: 599px) {
  .form-download-wrap .formtbl03__category-box th.category-size {
    width: 25%;
  }
}

.form-download-wrap .formtbl03__category-box th.category-times {
  width: 25%;
}

@media screen and (max-width: 599px) {
  .form-download-wrap .formtbl03__category-box th.category-times {
    width: 25%;
  }
}

.form-download-wrap .formtbl03__category-box td {
  margin-bottom: 10px;
  padding: 10px 2px 10px;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 400;
  text-align: right;
  word-wrap: break-word;
}

.form-download-wrap .formtbl03__category-box td.cell01 {
  text-align: left;
}

@media screen and (max-width: 599px) {
  .form-download-wrap .formtbl03__category-box td.cell01 {
    padding-right: 5px;
  }
}

.form-download-wrap .formtbl03__category-box td a {
  color: #00acd7;
  text-decoration: underline;
}

.form-download-wrap .formtbl03__category-box td a:hover {
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .form-download-wrap .formtbl03__category-box td a:hover {
    text-decoration: underline;
  }
}

.address-wrap__text {
  margin-bottom: 10px;
  padding-left: 5px;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .address-wrap__text {
    padding-left: 4px;
    font-size: 1.4rem;
  }
}

.address-wrap .formtbl-address {
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px 10px;
  word-break: break-all;
  word-wrap: break-all;
}

@media screen and (max-width: 599px) {
  .address-wrap .formtbl-address {
    border-spacing: 4px 10px;
  }
}

.address-wrap .formtbl-address th {
  padding: 10px 10px 11px;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .address-wrap .formtbl-address th {
    padding: 8px 5px 7px;
    font-size: 1.5rem;
  }
}

.address-wrap .formtbl-address th.name {
  width: 34%;
  color: #16b2d9;
  background-color: #e6f8fc;
}

@media screen and (max-width: 599px) {
  .address-wrap .formtbl-address th.name {
    width: 40%;
    font-weight: 500;
  }
}

.address-wrap .formtbl-address th.mail {
  color: #222;
  background-color: #ebebeb;
}

.address-wrap .formtbl-address td {
  padding: 5px 5px 5px;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
  text-align: left;
  word-wrap: break-word;
}

@media screen and (max-width: 599px) {
  .address-wrap .formtbl-address td {
    font-size: 1.4rem;
  }
}

.address-wrap .formtbl-address td.cell01 {
  color: #16b2d9;
}

@media screen and (max-width: 599px) {
  .address-wrap .formtbl-address td.cell01 {
    font-size: 1.4rem;
  }
}

.address-wrap .formtbl-address td a {
  color: #00acd7;
  text-decoration: underline;
}

@media screen and (min-width: 1025px) {
  .address-wrap .formtbl-address td a:hover {
    text-decoration: none;
    opacity: .8;
  }
}

/* ---- form-text--base ---- */
.form-text--base {
  width: 100%;
  box-sizing: border-box;
}

.form-btn {
  position: relative;
}

@media screen and (max-width: 1024px) {
  .form-btn {
    width: 100%;
    margin: 30px auto;
  }
}

@media screen and (max-width: 599px) {
  .form-btn {
    margin: 20px auto 10px;
    font-size: 1.6rem;
  }
}

.form-btn__submit {
  position: relative;
  display: block;
  padding: 20px 15px 20px 15px;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  font-size: 2.0rem;
  line-height: 1.0;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: center;
  border: 1px solid #00acd7;
  background-color: #00acd7;
  box-sizing: border-box;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 1024px) {
  .form-btn__submit {
    border: 1px solid #00acd7;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 599px) {
  .form-btn__submit {
    max-width: initial;
    width: 100%;
    padding: 18px 18px 18px 18px;
    font-size: 1.6rem;
  }
}

.form-btn__submit::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

.form-btn__submit:hover {
  color: #00acd7;
  background-color: #fff;
}

.form-btn__submit:hover::after {
  border-top: 2px solid #00acd7;
  border-right: 2px solid #00acd7;
}

@media screen and (max-width: 1024px) {
  .form-btn__submit:hover {
    color: #fff;
    background-color: #00acd7;
  }
  .form-btn__submit:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

.form-btn__back {
  margin-top: 2px;
  position: absolute;
  content: '';
  display: block;
  top: 0;
  left: 0;
  padding: 16px 10px 16px 15px;
  width: 120px;
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 400;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #222;
  text-align: center;
  background-color: #eee;
  background-image: url(../img/common/arrow_b.svg);
  background-repeat: no-repeat;
  background-size: 7px auto;
  background-position: left 5px top 55%;
}

@media screen and (max-width: 1024px) {
  .form-btn__back {
    width: 160px;
  }
}

@media screen and (max-width: 767px) {
  .form-btn__back {
    width: 110px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 599px) {
  .form-btn__back {
    position: relative;
    margin-top: 18px;
    padding: 16px 25px 15px 25px;
    width: 100%;
    font-size: 1.6rem;
    background-position: left 35px top 55%;
  }
}

.form-btn__back:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  .form-btn__back:hover {
    opacity: 1;
  }
}

.capacity-box {
  margin-top: 50px;
  padding: 30px 70px;
  background-color: #f5f5f5;
}

@media screen and (max-width: 599px) {
  .capacity-box {
    margin-top: 40px;
    padding: 20px 20px;
  }
}

.capacity-box__text {
  margin-bottom: 15px;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
}

.capacity-box__glaph-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #fff;
}

.capacity-box__glaph-wrap .glaph {
  position: absolute;
  height: 100%;
  left: 0;
  background-color: #00acd7;
  z-index: 1;
}

/*-- error エラーページ ---*/
.error-lead {
  margin-top: -15px;
  margin-bottom: 30px;
  padding: 12px 0;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #e03a3a;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  box-sizing: border-box;
  border-top: 1px solid #e03a3a;
  border-bottom: 1px solid #e03a3a;
}

.error-lead--login {
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .error-lead {
    margin-top: -10px;
  }
}

@media screen and (max-width: 599px) {
  .error-lead {
    margin-top: -15px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.error-text {
  margin-top: 3px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #e03a3a;
  font-weight: normal;
}

@media screen and (max-width: 599px) {
  .error-text {
    margin-top: 5px;
    font-size: 1.4rem;
  }
}

/*-- confirm 確認ページ ---*/
.confirm-lead {
  margin-bottom: 35px;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600;
}

@media screen and (max-width: 599px) {
  .confirm-lead {
    margin-top: -20px;
    margin-bottom: 20px;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.confirm-text {
  padding: 9px 0;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #222;
  word-wrap: break-word;
}

.confirm-text--file {
  position: relative;
  padding-right: 138px;
}

.confirm-text--mail {
  position: relative;
  padding-right: 25px;
}

@media screen and (max-width: 1024px) {
  .confirm-text {
    padding: 0;
  }
  .confirm-text--file {
    padding: 0 0 12px 0;
  }
  .confirm-text--mail {
    padding: 0 30px 12px 0;
  }
}

/*-- 送信完了 テキスト ---*/
.send-title {
  margin-bottom: 10px;
  font-size: 10.0rem;
  line-height: 1.0;
  color: rgba(0, 176, 133, 0.3);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.05em;
}

.send-title--red {
  color: #ffcaca;
}

@media screen and (max-width: 1024px) {
  .send-title {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .send-title {
    margin: 20px 0 30px;
    font-size: 8.0rem;
  }
  .send-title--not-found {
    margin: 0 0 10px;
  }
}

@media screen and (max-width: 599px) {
  .send-title {
    margin: 15px 0 10px;
    font-size: 5.5rem;
  }
}

@media screen and (max-width: 320px) {
  .send-title {
    font-size: 4.4rem;
  }
}

@media screen and (max-width: 1024px) {
  .send-box {
    padding: 0 30px 0 50px;
  }
}

@media screen and (max-width: 767px) {
  .send-box {
    padding: 0;
  }
}

.send-box__imgbox {
  width: 68%;
  margin: 0 auto 25px;
}

.send-box__imgbox--not-found {
  width: 40%;
  margin: 0 auto 40px;
}

@media screen and (max-width: 1024px) {
  .send-box__imgbox {
    width: 50%;
  }
}

@media screen and (max-width: 599px) {
  .send-box__imgbox {
    margin: 0 auto 20px;
  }
  .send-box__imgbox--not-found {
    width: 50%;
    margin: 0 auto 20px;
  }
}

.send-box__text {
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
}

.send-box__text--not-found {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .send-box__text {
    text-align: center;
  }
}

@media screen and (max-width: 599px) {
  .send-box__text {
    margin-bottom: 12px;
  }
}

.send-box__text .strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 600;
}

.send-box__text .strong--not-found {
  margin-bottom: 2px;
}

@media screen and (max-width: 599px) {
  .send-box__text .strong {
    font-size: 2.0rem;
  }
}

/*-- 送信済メール ---*/
.delete-lead {
  margin-top: -15px;
  margin-bottom: 30px;
  padding: 12px 0;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #2f5dba;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-align: center;
  box-sizing: border-box;
  border-top: 1px solid #2f5dba;
  border-bottom: 1px solid #2f5dba;
}

@media screen and (max-width: 1024px) {
  .delete-lead {
    margin-top: -10px;
  }
}

@media screen and (max-width: 599px) {
  .delete-lead {
    margin-top: -15px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.file-delete-box {
  position: absolute;
  display: inline-block;
  top: 11px;
  right: 0;
  z-index: 100;
}

@media screen and (max-width: 1024px) {
  .file-delete-box {
    display: block;
    margin-top: 2px;
    position: relative;
    top: auto;
    right: auto;
  }
}

.file-delete-box__link {
  display: inline-block;
  text-decoration: none !important;
  font-size: 1.3rem;
  line-height: 1.3;
  color: #00acd7;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.file-delete-box__link:hover {
  color: #006882;
  text-decoration: none !important;
}

@media screen and (max-width: 1024px) {
  .file-delete-box__link:hover {
    color: #00acd7;
    text-decoration: none !important;
  }
}

.total-text {
  margin: 10px 0 10px;
  padding-top: 10px;
  border-top: 1px dotted #ccc;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .total-text {
    text-align: left;
  }
}

.storage-end-text {
  margin-top: 3px;
  display: block;
  color: #e03a3a;
}

/*---------------------------------------
login
----------------------------------------*/
.login-wrap {
  max-width: 500px;
  margin: 35px auto 0;
  padding-bottom: 80px;
}

@media screen and (max-width: 1024px) {
  .login-wrap {
    width: 100%;
    margin: 100px auto 0px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 599px) {
  .login-wrap {
    margin: 80px auto 0px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 45px;
  }
}

.login-wrap__logo {
  width: 130px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 1024px) {
  .login-wrap__logo {
    width: 120px;
    margin: 0 auto 40px;
  }
}

@media screen and (max-width: 599px) {
  .login-wrap__logo {
    width: 100px;
    margin: 0 auto 40px;
  }
}

.login-wrap__box {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
}

.login-wrap__box__title {
  padding: 16px 20px 15px;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 500;
  text-align: center;
  background-color: #007b5d;
  -webkit-border-radius: 7px 7px 0 0;
  -moz-border-radius: 7px 7px 0 0;
  -ms-border-radius: 7px 7px 0 0;
  -o-border-radius: 7px 7px 0 0;
  border-radius: 7px 7px 0 0;
}

@media screen and (max-width: 599px) {
  .login-wrap__box__title {
    padding: 15px 10px 15px;
    font-size: 1.6rem;
  }
}

.login-wrap__box__inner {
  padding: 30px 38px 35px;
  background-color: #fff;
  -webkit-border-radius: 0 0 7px 7px;
  -moz-border-radius: 0 0 7px 7px;
  -ms-border-radius: 0 0 7px 7px;
  -o-border-radius: 0 0 7px 7px;
  border-radius: 0 0 7px 7px;
}

@media screen and (max-width: 599px) {
  .login-wrap__box__inner {
    padding: 20px 20px 25px;
  }
}

.login-wrap__box__inner .login-tbl {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .login-wrap__box__inner .login-tbl__list {
    margin-bottom: 10px;
  }
}

.login-wrap__box__inner .login-tbl__list > li {
  padding-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .login-wrap__box__inner .login-tbl__list > li {
    padding-bottom: 15px;
  }
}

.login-wrap__box__inner .login-tbl__box::after {
  content: '';
  display: block;
  clear: both;
}

.login-wrap__box__inner .login-tbl__title {
  position: relative;
  float: left;
  width: 175px;
  padding: 9px 0 9px;
  text-align: right;
  font-weight: normal;
  vertical-align: top;
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .login-wrap__box__inner .login-tbl__title {
    float: none;
    width: 100%;
    padding: 7px 0 7px;
    text-align: left;
  }
}

.login-wrap__box__inner .login-tbl__title__main {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #222;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.login-wrap__box__inner .login-tbl__title__text {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  font-weight: 400;
}

@media screen and (max-width: 599px) {
  .login-wrap__box__inner .login-tbl__title__text {
    line-height: 1.6;
  }
}

.login-wrap__box__inner .login-tbl__contents {
  float: right;
  width: calc(100% - 175px - 18px);
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .login-wrap__box__inner .login-tbl__contents {
    float: none;
    width: 100%;
  }
}

.login-wrap__box__inner .login-tbl__contents input[type="text"],
.login-wrap__box__inner .login-tbl__contents input[type="tel"],
.login-wrap__box__inner .login-tbl__contents input[type="email"],
.login-wrap__box__inner .login-tbl__contents input[type="password"] {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  padding: 14px 12px 12px 12px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  vertical-align: middle;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  border-radius: 7px;
}

@media screen and (max-width: 1024px) {
  .login-wrap__box__inner .login-tbl__contents input[type="text"],
  .login-wrap__box__inner .login-tbl__contents input[type="tel"],
  .login-wrap__box__inner .login-tbl__contents input[type="email"],
  .login-wrap__box__inner .login-tbl__contents input[type="password"] {
    padding: 10px 10px 8px 10px;
  }
}

@media screen and (max-width: 599px) {
  .login-wrap__box__inner .login-tbl__contents input[type="text"],
  .login-wrap__box__inner .login-tbl__contents input[type="tel"],
  .login-wrap__box__inner .login-tbl__contents input[type="email"],
  .login-wrap__box__inner .login-tbl__contents input[type="password"] {
    padding: 10px 10px 10px 10px;
    font-size: 1.6rem;
    line-height: 1.2;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}

.login-wrap__box__inner .login-tbl__contents em {
  margin-top: 3px;
  display: block;
  font-size: 1.3rem;
  line-height: 1.4;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: justify;
  font-style: normal;
}

.login-forget-text {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}

.login-forget-text > a {
  position: relative;
  padding-left: 15px;
  font-size: 1.3rem;
  line-height: 1.4;
  color: #222;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  text-align: justify;
  text-decoration: underline;
}

.login-forget-text > a:hover {
  opacity: 0.7;
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .login-forget-text > a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}

.login-forget-text > a::before {
  content: '';
  position: absolute;
  display: block;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
}

/*---------------------------------------
download
----------------------------------------*/
.dodeka-logo {
  width: 100px;
  margin: 0 auto 5px;
}

.dodeka-logo--download {
  margin: 0 auto 30px;
}

@media screen and (max-width: 1024px) {
  .dodeka-logo {
    margin-bottom: 10px;
  }
  .dodeka-logo--download {
    margin: 0 auto 20px;
  }
}

/*# sourceMappingURL=style.css.map */
