@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/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap");
/* ブレイクポイント参考

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

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1025px) {
  .pc {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* 1200以上 */
@media screen and (max-width: 1200px) {
  .only1200 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tbpc {
    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;
    cursor: auto;
  }
}
/* flex-wrap: wrap; */
/*左右中央*/
/*上下中央*/
/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
  -ms-transition: 0.5s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

/*マージン*/
.mb00 {
  margin-bottom: 0px !important;
}

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

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

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

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

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

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

.mr-02 {
  margin-right: -0.2em;
}

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

/*==================================================================
    page index
===================================================================*/
/*==================================================================
    page index
===================================================================*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@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 (min-width: 599px) and (max-width: 1024px) {
  .tb {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.7;
  font-size: 1.5rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  /*任意でフォントサイズを指定*/
}

@media screen and (min-width: 1025px) {
  body {
    font-weight: 500;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}
/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

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

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

/* 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;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  width: auto;
  max-width: 100%;
  height: auto;
}

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

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

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
a:not([class]) {
  color: #35c8d5;
}

a:not([class]):active {
  color: #35c8d5;
}

a:not([class]):visited {
  color: #35c8d5;
}

/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}

/* Form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=radio],
input[type=checkbox],
label,
select {
  cursor: pointer;
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-moz-selection,
::selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

/*マージン*/
.mb00 {
  margin-bottom: 0px !important;
}

@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}
.mb05 {
  margin-bottom: 5px !important;
}

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

@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 5px !important;
  }
}
.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: 599px) {
  .mb20 {
    margin-bottom: 10px !important;
  }
}
.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: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 15px !important;
  }
}
.mb35 {
  margin-bottom: 35px !important;
}

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

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

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

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

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

@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 30px !important;
  }
}
.mt00 {
  margin-top: 0px !important;
}

@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}
.mt10 {
  margin-top: 10px !important;
}

@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 10px !important;
  }
}
.mt15 {
  margin-top: 15px !important;
}

@media screen and (max-width: 599px) {
  .mt15 {
    margin-top: 10px !important;
  }
}
.mt20 {
  margin-top: 20px !important;
}

@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 10px !important;
  }
}
.mt30 {
  margin-top: 30px !important;
}

@media screen and (max-width: 1024px) {
  .mt30 {
    margin-top: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 15px !important;
  }
}
.mt40 {
  margin-top: 40px !important;
}

@media screen and (max-width: 1024px) {
  .mt40 {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 20px !important;
  }
}
@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1600px;
    -webkit-print-color-adjust: exact;
    transform: scale(0.6);
    -moz-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    transform-origin: 0 0;
  }
  /*　------- ↓その他参考例　---------
  .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%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*--------------------------------------------------------
body設定
----------------------------------------------------------*/
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
.footer-copy {
  padding: 35px 30px 20px;
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .footer-copy {
    margin-bottom: 60px;
  }
}
.fix-yoyaku-tbsp a {
  display: block;
  background-color: #e62c22;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  padding: 20px 5px 10px 10px;
  padding-left: 115px;
  background-image: url(../img/common/sp_yoyaku_funeco.png);
  background-size: 94px auto;
  background-repeat: no-repeat;
  background-position: 10px center;
  color: #fff !important;
  font-weight: bold;
  line-height: 1.3;
  z-index: 100;
}

.pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}

@media screen and (max-width: 1024px) {
  .pagetop {
    width: 100px;
    right: 20px;
    bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .pagetop {
    width: 65px;
    bottom: 70px;
    right: 15px;
  }
}
#nav-open {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #35c8d5;
  z-index: 100;
  border-radius: 5px;
}

@media screen and (min-width: 1025px) {
  #nav-open {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  #nav-open {
    top: 13px;
    right: 12px;
    width: 50px;
    height: 50px;
  }
}
#nav-open.active {
  background-color: rgba(255, 255, 255, 0.3);
}

#nav-open > span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto;
}

#nav-open > span > span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  transition: all 0.3s ease;
}

#nav-open > span > span::before,
#nav-open > span > span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

#nav-open > span > span::before {
  top: -7px;
}

#nav-open > span > span::after {
  bottom: -7px;
}

#nav-open.active > span > span {
  background-color: transparent;
}

#nav-open.active > span > span::before,
#nav-open.active > span > span::after {
  top: 0;
}

#nav-open.active > span > span::before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

#nav-open.active > span > span::after {
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

#nav-content {
  overflow: scroll;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
  background-color: rgba(53, 200, 213, 0.95);
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;
}

@media screen and (min-width: 1025px) {
  #nav-content {
    display: none;
  }
}
#nav-input {
  display: none;
}

#nav-input:checked ~ #nav-content {
  pointer-events: auto;
  opacity: 1;
}

.pagetitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 300px;
  background-image: url(../img/common/pagetitle.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

.pagetitle::before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 35px;
  width: 256px;
  height: 160px;
  background-image: url(../img/common/flower.png);
  background-size: 256px 160px;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  background-position: left top;
  animation: katakata 6s infinite ease-in-out alternate;
}

@media screen and (max-width: 1024px) {
  .pagetitle::before {
    width: 180px;
    height: 120px;
    background-size: 180px auto;
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle::before {
    width: 100px;
    height: 80px;
    background-size: 100px auto;
    right: 10px;
  }
}
@media screen and (max-width: 1400px) {
  .pagetitle {
    height: 260px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    height: 210px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    height: 140px;
  }
}
.pagetitle--information {
  background-image: url(../img/information/pagetitle.jpg);
}

.pagetitle--medical {
  background-image: url(../img/medical/pagetitle.jpg);
}

@media screen and (max-width: 599px) {
  .pagetitle--medical {
    background-position: 25% center;
  }
}
.pagetitle--about {
  background-image: url(../img/about/pagetitle.jpg);
}

.pagetitle h2 {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 40px 0 10px;
  padding: 12px 30px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #35c8d5;
  font-size: 3.5rem;
  border-radius: 10px;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .pagetitle h2 {
    margin-top: 35px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle h2 {
    padding: 6px 35px 7px;
    margin: 20px auto 8px;
    width: auto;
    max-width: auto;
    font-size: 2.2rem;
    display: inline-block;
  }
}
.pagetitle p {
  position: relative;
  color: #f57474;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 599px) {
  .pagetitle p {
    font-size: 1.2rem;
  }
}
.content {
  position: relative;
  padding: 20px 30px 110px;
}

@media screen and (max-width: 1024px) {
  .content {
    padding: 60px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .content {
    padding: 30px 20px 40px;
  }
}
.content--pd-none {
  padding: 20px 0 110px;
}

@media screen and (max-width: 1024px) {
  .content--pd-none {
    padding: 60px 0 70px;
  }
}
@media screen and (max-width: 599px) {
  .content--pd-none {
    padding: 30px 0 40px;
  }
}
.content__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 85px;
}

@media screen and (max-width: 1024px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs li {
  position: relative;
  color: #000;
  font-size: 1.3rem;
}

.breadcrumbs li:not(:last-child) {
  padding-right: 35px;
}

.breadcrumbs li:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: 14px;
}

.breadcrumbs li a {
  color: #5579c4;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------
_tab
----------------------------------------------------------*/
.tab-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .tab-wrap {
    padding: 0;
  }
}
.tab-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 24.975%;
  padding: 15px;
  border-top: 3px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid transparent;
  color: #000;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.05em;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  transition: 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .tab-label {
    padding: 10px 5px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .tab-label {
    border-top: 2px solid transparent;
    padding: 5px 3px;
    font-size: 1.2rem;
  }
}
.tab-content {
  width: 100%;
  display: none;
  margin-top: 45px;
}

@media screen and (max-width: 1024px) {
  .tab-content {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .tab-content {
    margin-top: 15px;
  }
}
.tab-switch:checked + .tab-label {
  border-bottom-color: transparent;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.tab-switch:checked + .tab-label.all {
  border-top-color: #35c8d5;
}

.tab-switch:checked + .tab-label.info {
  border-top-color: #ffad41;
}

.tab-switch:checked + .tab-label.yobou {
  border-top-color: #67ce7b;
}

.tab-switch:checked + .tab-label.check {
  border-top-color: #ff9c9c;
}

.tab-switch:checked + .tab-label + .tab-content {
  display: block;
}

.tab-switch {
  display: none;
}

/*--------------------------------------------------------
pagination
----------------------------------------------------------*/
.pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
}

.pagination__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination__prev,
.pagination__next {
  display: block;
  position: relative;
  color: #444;
  font-size: 1.3rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 599px) {
  .pagination__prev,
  .pagination__next {
    font-size: 2rem;
    font-weight: 500;
  }
}
.pagination__prev:hover,
.pagination__next:hover {
  opacity: 0.7;
}

.pagination__prev {
  margin-right: 20px;
  vertical-align: middle;
}

@media screen and (max-width: 599px) {
  .pagination__prev {
    margin-right: 10px;
  }
}
.pagination__next {
  margin-left: 20px;
  vertical-align: middle;
}

@media screen and (max-width: 599px) {
  .pagination__next {
    margin-left: 10px;
  }
}
.pagination__num,
.pagination__while {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  text-align: center;
}

.pagination__num {
  background-color: #e3e3e3;
  color: #444;
  font-size: 1.6rem;
  font-family: "Quicksand", sans-serif;
  line-height: 43px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

@media screen and (max-width: 599px) {
  .pagination__num {
    font-size: 1.5rem;
    line-height: 40px;
  }
}
.pagination__num:hover,
.pagination__num.current {
  background-color: #35c8d5;
  color: #fff;
}

.pagination__while {
  color: #444;
  font-size: 2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 43px;
}

@media screen and (max-width: 599px) {
  .pagination__while {
    width: 15px;
    font-size: 1.6rem;
  }
}
.ttl01 {
  margin-bottom: 30px;
  padding: 20px 0 20px 0;
  font-size: 25px;
  line-height: 1.2em;
  color: #444;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  position: relative;
  border-bottom: 5px solid #e2e2e2;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1024px) {
  .ttl01 {
    margin-bottom: 25px;
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  .ttl01 {
    margin-bottom: 20px;
    padding: 10px 0 10px 0;
    border-bottom-width: 3px;
    font-size: 18px;
  }
}
.ttl01::before {
  content: "";
  bottom: -5px;
  left: 0;
  width: 100px;
  height: 5px;
  background-color: #35c8d5;
  position: absolute;
}

@media screen and (max-width: 599px) {
  .ttl01::before {
    bottom: -3px;
    width: 50px;
    height: 3px;
  }
}
.ttl02 {
  margin-bottom: 20px;
  padding: 20px 20px 20px 35px;
  font-size: 19px;
  line-height: 1.2em;
  color: #35c8d5;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.03em;
  background-color: #e5e9f3;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .ttl02 {
    margin-bottom: 20px;
    padding: 18px 20px 19px 35px;
    font-size: 17px;
  }
}
@media screen and (max-width: 599px) {
  .ttl02 {
    margin-bottom: 15px;
    padding: 12px 20px 13px;
    font-size: 14px;
  }
}
.ttl02::before {
  content: "";
  top: 0;
  left: 15px;
  width: 4px;
  height: 80%;
  background-color: #35c8d5;
  position: absolute;
}

@media screen and (max-width: 599px) {
  .ttl02::before {
    left: 10px;
    width: 3px;
  }
}
.file-btn {
  width: 100%;
  padding: 23px 30px 23px 70px;
  border: 1px solid #ccc;
  background-color: #fff;
  line-height: 1.5;
  color: #000;
  display: block;
  background-image: url(../img/common/icon_links.png);
  background-size: 25px auto;
  background-position: 25px 48%;
  background-repeat: no-repeat;
  position: relative;
}

@media screen and (min-width: 1025px) {
  .file-btn:hover {
    color: #35c8d5;
    background-color: #f8f9fb;
    border: 1px solid #a6bbe5;
  }
}
@media screen and (max-width: 1024px) {
  .file-btn {
    padding: 20px 30px 20px 64px;
    background-position: 23px 48%;
  }
}
@media screen and (max-width: 599px) {
  .file-btn {
    font-size: 1.4rem;
    padding: 15px 30px 15px 45px;
    background-size: 18px auto;
    background-position: 15px 48%;
  }
}
.file-btn::before {
  margin-top: -5px;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #777;
  border-right: 1px solid #777;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.file-btn.pdf {
  background-image: url(../img/common/icon_pdf.png);
  background-size: 24px auto;
}

@media screen and (max-width: 599px) {
  .file-btn.pdf {
    background-size: 18px auto;
  }
}
.file-btn.xlsx {
  background-image: url(../img/common/icon_elsx.png);
  background-size: 24px auto;
}

@media screen and (max-width: 599px) {
  .file-btn.xlsx {
    background-size: 18px auto;
  }
}
.file-btn.docx {
  background-image: url(../img/common/icon_word.png);
  background-size: 24px auto;
}

@media screen and (max-width: 599px) {
  .file-btn.docx {
    background-size: 18px auto;
  }
}
.base-btn {
  display: block;
  position: relative;
  border-radius: 100px;
  background-color: #f57474;
  margin: 0 auto;
  padding: 14px 25px;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
}

@media screen and (max-width: 599px) {
  .base-btn {
    padding: 13px 20px;
  }
}
.base-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.3s;
}

@media screen and (min-width: 1025px) {
  .base-btn:hover {
    background-color: #35c8d5;
    border-color: transparent;
    color: #fff;
  }
  .base-btn:hover::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.base-btn--blue {
  background-color: #35c8d5;
}

@media screen and (min-width: 1025px) {
  .base-btn--blue:hover {
    background-color: #f57474;
  }
}
.base-btn--back::after {
  left: 20px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

@media screen and (min-width: 1025px) {
  .base-btn--back:hover::after {
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
.base-table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}

.base-table thead th {
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #35c8d5;
  border: 1px solid #ddd;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
  .base-table thead th {
    padding: 10px;
    font-size: 14px;
  }
}
.base-table th {
  padding: 18px 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3em;
  color: #000;
  text-align: center;
  vertical-align: middle;
  background-color: #e5e9f3;
  border: 1px solid #ddd;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
  .base-table th {
    padding: 10px;
    font-size: 14px;
  }
}
.base-table td {
  padding: 18px;
  font-size: 15px;
  line-height: 1.3em;
  color: #000;
  text-align: justify;
  vertical-align: middle;
  border: 1px solid #ddd;
  background-color: #fff;
}

@media screen and (max-width: 599px) {
  .base-table td {
    padding: 10px;
    font-size: 14px;
  }
}
.base-anchor {
  text-align: center;
}

@media screen and (max-width: 599px) {
  .base-anchor {
    margin-bottom: 20px;
  }
}
.base-anchor__item {
  border-left: 1px solid #dddddd;
  display: inline-block;
}

.base-anchor__item:last-child {
  border-right: 1px solid #dddddd;
}

.base-anchor__link {
  padding: 10px 70px;
  display: block;
  color: #000;
  font-size: 1.6rem;
}

@media screen and (min-width: 1025px) {
  .base-anchor__link:hover {
    color: #35c8d5;
    font-weight: bold;
  }
}
@media screen and (max-width: 1024px) {
  .base-anchor__link {
    padding: 10px 45px;
  }
}
@media screen and (max-width: 599px) {
  .base-anchor__link {
    font-size: 1.4rem;
    padding: 10px 15px;
  }
}
.base-anchor__link.active {
  color: #35c8d5;
  font-weight: bold;
  position: relative;
}

.base-anchor__link.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #35c8d5;
}

/*---------------------------------------
animation
----------------------------------------*/
@media screen and (min-width: 1025px) {
  .d0_1 {
    animation-delay: 0.1s;
  }
  .d0_2 {
    animation-delay: 0.2s;
  }
  .d0_3 {
    animation-delay: 0.3s;
  }
  .d0_4 {
    animation-delay: 0.4s;
  }
  .d0_5 {
    animation-delay: 0.5s;
  }
  .d0_6 {
    animation-delay: 0.6s;
  }
  .d0_7 {
    animation-delay: 0.7s;
  }
  .d0_8 {
    animation-delay: 0.8s;
  }
  .d0_9 {
    animation-delay: 0.9s;
  }
  .d1_0 {
    animation-delay: 1s;
  }
  .d1_1 {
    animation-delay: 1.1s;
  }
  .d1_2 {
    animation-delay: 1.2s;
  }
  .d1_3 {
    animation-delay: 1.3s;
  }
  .d1_4 {
    animation-delay: 1.4s;
  }
  .d1_5 {
    animation-delay: 1.5s;
  }
  .d1_6 {
    animation-delay: 1.6s;
  }
  .d1_7 {
    animation-delay: 1.7s;
  }
  .d1_8 {
    animation-delay: 1.8s;
  }
  .d1_9 {
    animation-delay: 1.9s;
  }
  .d2_0 {
    animation-delay: 2s;
  }
  .d2_1 {
    animation-delay: 2.1s;
  }
  .d2_2 {
    animation-delay: 2.2s;
  }
  .d2_3 {
    animation-delay: 2.3s;
  }
  .d2_4 {
    animation-delay: 2.4s;
  }
  .d2_5 {
    animation-delay: 2.5s;
  }
  .d2_6 {
    animation-delay: 2.6s;
  }
  .d2_7 {
    animation-delay: 2.7s;
  }
  .d2_8 {
    animation-delay: 2.8s;
  }
  .d2_9 {
    animation-delay: 2.9s;
  }
  .d3_0 {
    animation-delay: 3s;
  }
  .d3_5 {
    animation-delay: 3.5s;
  }
  .d4_0 {
    animation-delay: 4s;
  }
}
@keyframes katakata {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    transform: translate(0, 0) rotate(0deg);
  }
  22% {
    transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    transform: translate(0, 0) rotate(3deg);
  }
  28% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(4deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-4deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-webkit-keyframes swing2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-webkit-keyframes swing3 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-0.8deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(0.8deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-webkit-keyframes swing4 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(0.8deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-0.8deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
.header-logo {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
}

@media screen and (min-width: 1025px) {
  .header-logo:hover {
    opacity: 0.8;
    transition: 0.2s;
  }
}
@media screen and (max-width: 599px) {
  .header-logo {
    top: 5px;
    left: 5px;
  }
}
.header-logo img {
  width: 100%;
  max-width: 299px;
}

@media screen and (max-width: 1400px) {
  .header-logo img {
    max-width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .header-logo img {
    max-width: 180px;
  }
}
@media screen and (max-width: 599px) {
  .header-logo img {
    max-width: 100px;
  }
}
.header-yoyaku {
  position: fixed;
  top: 0;
  right: 20px;
  z-index: 100;
  width: 170px;
  height: 160px;
}
@media screen and (max-width: 1300px) {
  .header-yoyaku {
    width: 120px;
    height: 110px;
  }
}
@media screen and (max-width: 1024px) {
  .header-yoyaku {
    display: none;
  }
}

.header-yoyaku a {
  position: relative;
  display: block;
}
@media screen and (max-width: 1300px) {
  .header-yoyaku a {
    width: 120px;
    height: 110px;
  }
}
.header-yoyaku a::before {
  content: "";
  display: flex;
  position: absolute;
  width: 170px;
  height: 160px;
  background-image: url(../img/common/yoyaku.png);
  background-size: 170px 160px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1300px) {
  .header-yoyaku a::before {
    background-size: 120px 110px;
    width: 120px;
    height: 110px;
  }
}
.header-yoyaku a:hover::before {
  background-image: url(../img/common/yoyaku_ov.png);
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
@media screen and (min-width: 1025px) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
.top-main {
  position: relative;
}

.top-main__text {
  position: absolute;
  top: 65%;
  left: 20%;
  z-index: 2;
  width: 278px;
  height: 278px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1700px) {
  .top-main__text {
    left: 10%;
  }
}
@media screen and (max-width: 1300px) {
  .top-main__text {
    width: 240px;
    height: 240px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__text {
    top: 72%;
    left: 3%;
    width: 188px;
    height: 188px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__text {
    top: 65%;
    left: 2%;
    width: 110px;
    height: 110px;
  }
}

.top-main__text img {
  max-width: 200px;
}
@media screen and (max-width: 1400px) {
  .top-main__text img {
    max-width: 200px;
    image-rendering: -webkit-optimize-contrast;
  }
}
@media screen and (max-width: 1300px) {
  .top-main__text img {
    max-width: 170px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main__text img {
    max-width: 140px;
  }
}
@media screen and (max-width: 599px) {
  .top-main__text img {
    width: 80px;
  }
}

.top-main__text::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(../img/top/bakudan_red.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  animation: 12s linear infinite rotation;
  position: absolute;
  z-index: -1;
  transition: 0.5s;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.top-main__text:hover {
  transform: translateY(3px);
}

.top-main__text:hover::before {
  background-image: url(../img/top/bakudan_blue.png);
}

.top-main__bg {
  background-color: #daf4fa;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 599px) {
  .top-main__bg {
    display: block;
  }
}
.top-main__bg-item {
  width: 100%;
}

@media screen and (max-width: 599px) {
  .top-main__bg-item {
    width: 100%;
  }
}
.top-main__bg-item--02 {
  padding-left: 0.28%;
}

@media screen and (max-width: 599px) {
  .top-main__bg-item--02 {
    padding-left: 0;
    margin-top: -44.5%;
  }
}
.top-main__bg-item img {
  width: 100%;
}

.top-lead {
  background: #daf4fa;
  position: relative;
  padding-bottom: 60px;
  background-size: 100% auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-lead {
    padding: 0 0px 30px 0px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead {
    padding: 0 0px 30px 0px;
  }
}
.top-lead::before, .top-lead::after {
  content: "";
  display: inline-block;
  position: absolute;
  margin: auto;
}
.top-lead::before {
  background-image: url(../img/top/lead_text_bg02.png);
  background-size: 100% 62px;
  width: 100%;
  height: 62px;
  bottom: -62px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top-lead::before {
    background-size: 100% 22px;
    height: 22px;
    bottom: -22px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead::before {
    background-size: 100% 12px;
    height: 12px;
    bottom: -12px;
  }
}
.top-lead::after {
  background-image: url(../img/top/lead-icon03.png);
  background-size: 299.2px 336px;
  width: 299.2px;
  height: 336px;
  right: 100px;
  bottom: 0px;
}
@media screen and (max-width: 1500px) {
  .top-lead::after {
    background-size: 261.8px 294px;
    width: 261.8px;
    height: 294px;
    right: 50px;
  }
}
@media screen and (max-width: 1300px) {
  .top-lead::after {
    background-size: 224.4px 252px;
    width: 224.4px;
    height: 252px;
    right: 30px;
  }
}
@media screen and (max-width: 1100px) {
  .top-lead::after {
    background-size: 187px 210px;
    width: 187px;
    height: 210px;
    right: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead::after {
    background-size: 149.6px 168px;
    width: 149.6px;
    height: 168px;
    right: 20px;
    bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead::after {
    background-size: 82.28px 92.4px;
    width: 82.28px;
    height: 92.4px;
    bottom: 10px;
  }
}

.top-lead__wrap {
  position: relative;
  background-image: url(../img/top/lead-icon02.png);
  background-size: 391px 219px;
  background-repeat: no-repeat;
  background-position: right 40px top 0;
}
@media screen and (max-width: 1500px) {
  .top-lead__wrap {
    background-size: 312.8px 175.2px;
  }
}
@media screen and (max-width: 1300px) {
  .top-lead__wrap {
    background-size: 273.7px 153.3px;
  }
}
@media screen and (max-width: 1100px) {
  .top-lead__wrap {
    background-size: 195.5px 109.5px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead__wrap {
    background-size: 136.85px 76.65px;
    background-position: right 0px top 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead__wrap {
    background-size: 117.3px 65.7px;
    background-position: right 0px top 0px;
  }
}
.top-lead__wrap::before, .top-lead__wrap::after {
  content: "";
  display: inline-block;
  position: absolute;
  margin: auto;
}
.top-lead__wrap::before {
  background-image: url(../img/top/lead-icon01.png);
  background-size: 457px 246px;
  width: 457px;
  height: 246px;
  top: -40px;
  left: 40px;
}
@media screen and (max-width: 1500px) {
  .top-lead__wrap::before {
    background-size: 365.6px 196.8px;
    width: 365.6px;
    height: 196.8px;
    top: -20px;
  }
}
@media screen and (max-width: 1300px) {
  .top-lead__wrap::before {
    background-size: 319.9px 172.2px;
    width: 319.9px;
    height: 172.2px;
  }
}
@media screen and (max-width: 1100px) {
  .top-lead__wrap::before {
    background-size: 228.5px 123px;
    width: 228.5px;
    height: 123px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead__wrap::before {
    background-size: 182.8px 98.4px;
    width: 182.8px;
    height: 98.4px;
    left: 0px;
    top: 0px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead__wrap::before {
    background-size: 137.1px 73.8px;
    width: 137.1px;
    height: 73.8px;
    left: 5px;
    top: 0px;
  }
}
.top-lead__wrap::after {
  background-image: url(../img/top/lead-icon04.png);
  background-size: 341px 258px;
  width: 341px;
  height: 258px;
  bottom: -40px;
  left: 40px;
}
@media screen and (max-width: 1500px) {
  .top-lead__wrap::after {
    background-size: 272.8px 206.4px;
    width: 272.8px;
    height: 206.4px;
  }
}
@media screen and (max-width: 1300px) {
  .top-lead__wrap::after {
    background-size: 204.6px 154.8px;
    width: 204.6px;
    height: 154.8px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead__wrap::after {
    background-size: 170.5px 129px;
    width: 170.5px;
    height: 129px;
    bottom: -10px;
    left: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead__wrap::after {
    background-size: 102.3px 77.4px;
    width: 102.3px;
    height: 77.4px;
    bottom: -5px;
    left: 10px;
  }
}

/* .top-lead::before {
    content: '';
    display: block;
    position: absolute;
    left: 4%;
    bottom: 12vw;
    background-image: url(../img/top/main_ill.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    width: 26vw;
    height: 25vw;
} */
/* タブレットのみ */
.top-lead__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px 200px 0px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-lead__inner {
    margin: 0 auto;
    padding: 20px 60px 80px;
    background-position: 50% 100%;
    background-size: 150px auto;
    background-image: none;
  }
}
@media screen and (max-width: 599px) {
  .top-lead__inner {
    margin: 0 auto;
    padding: 40px 20px 60px;
    background-size: 100px auto;
    background-position: 70% 97%;
    background-image: none;
  }
}

.top-lead__title {
  margin-bottom: 35px;
  position: relative;
}

@media screen and (max-width: 599px) {
  .top-lead__title {
    margin-bottom: 30px;
  }
}
.top-lead__title img {
  width: 100%;
  max-width: 600px;
}

@media screen and (max-width: 1400px) {
  .top-lead__title img {
    max-width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .top-lead__title img {
    max-width: 450px;
  }
}
@media screen and (max-width: 599px) {
  .top-lead__title img {
    max-width: 330px;
  }
}
.top-lead__text {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.9em;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .top-lead__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-lead__text {
    text-align: justify;
    font-size: 1.5rem;
    line-height: 1.7em;
  }
}
.top-lead__text .em {
  color: #e62c22;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 2.6rem;
}

.greatvalue01 {
  margin: 40px auto 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .greatvalue01 {
    max-width: 80%;
    width: 100%;
    margin: 30px auto 30px;
  }
}
@media screen and (max-width: 599px) {
  .greatvalue01 {
    max-width: 100%;
    margin: 20px auto 20px;
  }
}

.top-special {
  text-align: center;
  padding: 0px 0 0px 0;
}

h2.top-special__title {
  max-width: 100%;
  background: #e9f5f9;
  padding: 50px 0 40px;
  margin-top: 100px;
  position: relative;
}

@media screen and (max-width: 599px) {
  h2.top-special__title {
    padding: 30px 40px 20px;
    margin-top: 50px;
  }
}
h2.top-special__title:before {
  content: "";
  position: absolute;
  bottom: -30px;
  z-index: -10;
  left: 0;
  width: 100%;
  height: 30px;
  background-image: url(../img/top/nami_shita.png);
  background-repeat: repeat;
  display: block;
}

h2.top-special__title img {
  width: 100%;
  max-width: 530px;
}

@media screen and (max-width: 1400px) {
  h2.top-special__title img {
    max-width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  h2.top-special__title img {
    max-width: 350px;
  }
}
@media screen and (max-width: 599px) {
  h2.top-special__title img {
    max-width: 280px;
  }
}
h3.top-special__title {
  width: 100%;
  margin: 80px auto 0;
}

h3.top-special__title img {
  width: 100%;
  max-width: 760px;
}

@media screen and (max-width: 1400px) {
  h3.top-special__title img {
    max-width: 700px;
  }
}
@media screen and (max-width: 1024px) {
  h3.top-special__title img {
    max-width: 600px;
  }
}
@media screen and (max-width: 599px) {
  h3.top-special__title img {
    max-width: 380px;
  }
}
h4.top-special__title img {
  width: 100%;
  max-width: 540px;
}

@media screen and (max-width: 1400px) {
  h4.top-special__title img {
    max-width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  h4.top-special__title img {
    max-width: 460px;
  }
}
@media screen and (max-width: 599px) {
  h4.top-special__title img {
    max-width: 360px;
  }
}
.type01 {
  background: #d2f6fb url("../img/top/type01_delax.png") no-repeat;
}

.type02 {
  background: #fff7c0 url("../img/top/type02_suite.png") no-repeat;
}

.type03 {
  background: #cef5e7 url("../img/top/type03_delax.png") no-repeat;
}

.top-special__inner {
  max-width: 1250px;
  margin: 0 auto 80px;
  padding: 50px 0;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  border-radius: 20px;
}

@media screen and (max-width: 1400px) {
  .top-special__inner {
    padding: 50px 40px 110px;
  }
}
@media screen and (max-width: 1024px) {
  .top-special__inner {
    width: 98%;
    padding: 40px 20px 60px 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-special__inner {
    padding: 30px;
    margin-bottom: 50px;
  }
}
.top-special__title {
  max-width: 1000px;
  margin: 0 auto 48px auto;
}

@media screen and (max-width: 1400px) {
  .top-special__title {
    max-width: 800px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-special__title {
    padding: 0 80px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-special__title {
    padding: 0 10px;
  }
}
.top-special__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .top-special__list {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-special__list {
    display: block;
  }
}
.top-special__list__item {
  width: calc((100% - 38px) / 2);
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .top-special__list__item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-special__list__item {
    width: 100%;
    margin-bottom: 24px;
  }
}
.top-special__list__item:not(:nth-child(2n)) {
  margin-right: 38px;
}

@media screen and (max-width: 1024px) {
  .top-special__list__item:not(:nth-child(2n)) {
    margin-right: 20px;
  }
}
.top-special__notes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .top-special__notes {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-special__notes {
    display: block;
  }
}
.top-special__notes__title {
  width: 155px;
  background-color: #48af82;
  text-align: center;
  line-height: 1;
  padding: 20px 20px 20px 20px;
  color: #fff;
  margin-bottom: 26px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

@media screen and (max-width: 1400px) {
  .top-special__notes__title {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .top-special__notes__title {
    padding: 16px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 599px) {
  .top-special__notes__title {
    margin: 0 auto 10px;
    padding: 10px;
  }
}
.top-special__notes__data {
  width: calc(100% - 80px);
  margin-bottom: 30px;
  text-align: left;
  line-height: 1.4;
  margin-top: 12px;
}

@media screen and (max-width: 1024px) {
  .top-special__notes__data {
    width: calc(100% - 30px);
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 599px) {
  .top-special__notes__data {
    width: 100%;
    padding-left: 0px;
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.top-special__notes__data__text {
  font-size: 1.2rem;
}

.top-special__notes__data__text .em {
  color: #e62c22;
  font-size: 1.6rem;
}

.top-special__kakaku img {
  width: 100%;
  max-width: 500px;
}

@media screen and (max-width: 1400px) {
  .top-special__kakaku img {
    max-width: 380px;
  }
}
@media screen and (max-width: 1024px) {
  .top-special__kakaku img {
    max-width: 350px;
  }
  .top-special__notes__data__text .em {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-special__kakaku img {
    max-width: 380px;
  }
  .top-special__notes__data__text .em {
    font-size: 1.4rem;
  }
}
.top-special__btn {
  max-width: 600px;
  margin: 0 auto;
}

.top-special__btn a {
  display: block;
  width: 100%;
  padding: 10px 10px 10px 10px;
  height: 110px;
  font-size: 2.6rem;
  font-weight: 900;
  background-color: #e62c22;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff !important;
  line-height: 1.4;
  position: relative;
}

@media screen and (min-width: 1025px) {
  .top-special__btn a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .top-special__btn a {
    font-size: 2.5rem;
    height: 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-special__btn a {
    font-size: 1.6rem;
    height: 60px;
  }
}
.top-special__btn a::after {
  margin-top: -5px;
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 599px) {
  .top-special__btn a::after {
    right: 15px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.top-sugoi {
  max-width: 1200px;
  padding: 40px 0 35px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .top-sugoi {
    padding: 30px 0 45px;
  }
}
@media screen and (max-width: 599px) {
  .top-sugoi {
    width: 100%;
    padding: 25px 0 35px;
  }
}
.top-sugoi__title {
  text-align: center;
  margin-bottom: 55px;
}

@media screen and (max-width: 1400px) {
  .top-sugoi__title {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .top-sugoi__title {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-sugoi__title {
    margin-bottom: 20px;
  }
}
.top-sugoi__title img {
  width: 100%;
  max-width: 468px;
}

@media screen and (max-width: 1400px) {
  .top-sugoi__title img {
    max-width: 380px;
  }
}
@media screen and (max-width: 1024px) {
  .top-sugoi__title img {
    max-width: 350px;
  }
}
@media screen and (max-width: 599px) {
  .top-sugoi__title img {
    max-width: 280px;
  }
}
.top-h3__title {
  text-align: center;
  margin-bottom: 55px;
}

@media screen and (max-width: 1400px) {
  .top-h3__title {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .top-h3__title {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 599px) {
  .top-h3__title {
    margin-bottom: 20px;
    padding: 0 40px;
  }
}
.top-h3__title img {
  width: 100%;
  max-width: 550px;
}

@media screen and (max-width: 1400px) {
  .top-h3__title img {
    max-width: 450px;
  }
}
@media screen and (max-width: 1024px) {
  .top-h3__title img {
    max-width: 380px;
  }
}
@media screen and (max-width: 599px) {
  .top-h3__title img {
    max-width: 320px;
  }
}
.top-sugoi__block {
  margin-bottom: 75px;
}

@media screen and (max-width: 1400px) {
  .top-sugoi__block {
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 1024px) {
  .top-sugoi__block {
    margin-bottom: 10px;
  }
}
.top-sugoi-item {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 599px) {
  .top-sugoi-item {
    max-width: 100%;
    margin: 0 auto 20px;
  }
}
.top-sugoi-item__title {
  position: absolute;
  top: 40%;
  left: 3%;
  z-index: 2;
  padding-bottom: 40px;
  white-space: nowrap;
}

.top-sugoi-item__title_rgt {
  position: absolute;
  top: 40%;
  right: 3%;
  z-index: 2;
  padding-bottom: 40px;
  text-align: right;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .top-sugoi-item__title {
    padding-bottom: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-sugoi-item__title {
    padding: 0 0 50px;
    width: 95%;
    top: 38%;
  }
  .top-sugoi-item__title_rgt {
    padding: 0 0 50px;
    width: 95%;
    top: 38%;
  }
}
.top-sugoi-text {
  text-align: left;
  font-size: 1.7rem;
  font-weight: bold;
  display: inline;
  line-height: 2em;
  padding: 5px;
  background: linear-gradient(transparent 0%, #FFF 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.top-sugoi-text_tit {
  text-align: left;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  display: inline;
  line-height: 2.2em;
  padding: 5px;
  background: linear-gradient(transparent 0%, #FFF 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media screen and (max-width: 1024px) {
  .top-sugoi-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-sugoi-text {
    font-size: 1.3rem;
    line-height: 2.4em;
  }
  .top-sugoi-text_tit {
    font-size: 1.8rem;
    line-height: 2em;
  }
}
.top-sugoi-item__photos {
  margin-bottom: 30px;
  height: 325px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .top-sugoi-item__photos {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-sugoi-item__photos {
    display: block;
    height: 250px;
  }
}
.top-sugoi-item__photos img {
  width: 100%;
  height: 100%;
  top: 0;
  object-fit: cover;
}

@media screen and (max-width: 599px) {
  .top-sugoi-item__photos img {
    transform: scale(1.1);
  }
  .top-sugoi__list .top-sugoi-item__photos img {
    transform: scale(1);
  }
}
.top-sugoi__list {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .top-sugoi__list {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-sugoi__list {
    display: block;
  }
}
.top-sugoi__list__item {
  width: calc((100% - 38px) / 2);
}

@media screen and (max-width: 1024px) {
  .top-sugoi__list__item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-sugoi__list__item {
    width: 100%;
    margin-bottom: 24px;
  }
}
.top-sugoi__list__item:not(:nth-child(2n)) {
  margin-right: 38px;
}

@media screen and (max-width: 1024px) {
  .top-sugoi__list__item:not(:nth-child(2n)) {
    margin-right: 20px;
  }
}
.top-sugoi__illust {
  margin: 0 auto 15px;
  max-width: 734px;
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .top-sugoi__illust {
    max-width: 870px;
  }
}
@media screen and (max-width: 1024px) {
  .top-sugoi__illust {
    max-width: 600px;
  }
}
@media screen and (max-width: 599px) {
  .top-sugoi__illust {
    max-width: 430px;
    padding: 0 10px;
  }
}
.top-merit__title {
  max-width: 597px;
  padding: 50px 0 40px;
  margin: 80px auto 40px;
  text-align: center;
}

.top-merit__title img {
  max-width: 580px;
}

@media screen and (max-width: 599px) {
  .top-merit__title {
    max-width: 90%;
    padding: 0px;
    margin: 50px auto 30px;
  }
}
.top-merit__list {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .top-merit__title img {
    max-width: 400px;
  }
  .top-merit__list {
    max-width: 95%;
    margin: 0 auto;
  }
}
.top-merit__item {
  width: calc((100% - 100px) / 3);
  margin-left: 50px;
  background: #0799ff;
  text-align: center;
  padding: 40px 20px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

.top-merit__item:first-child {
  margin-left: 0;
}

.top-merit__item img {
  max-width: 190px;
}

@media screen and (max-width: 1024px) {
  .top-merit__item {
    width: calc((100% - 40px) / 3);
    margin-left: 20px;
  }
  .top-merit__item img {
    max-width: 150px;
  }
}
@media screen and (max-width: 599px) {
  .top-merit__title img {
    max-width: 300px;
  }
  .top-merit__item {
    width: 100%;
    margin-left: 0;
    padding: 20px 10px;
    margin-bottom: 10px;
  }
  .top-merit__item img {
    width: 140px;
  }
}
.top-merit__item-text {
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.6rem;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .top-merit__item-text {
    margin-top: 15px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-merit__item-text {
    line-height: 1.4;
    font-size: 1.4rem;
    margin-bottom: 0px;
  }
}
.top-merit__ill {
  width: 1000px;
  margin: 50px auto 0;
  text-align: right;
  height: 90px;
}

.top-merit__ill img {
  width: 120px;
}

@media screen and (max-width: 1024px) {
  .top-merit__ill {
    width: 80%;
    margin: 30px auto 0;
    height: 80px;
  }
  .top-merit__ill img {
    width: 90px;
  }
}
@media screen and (max-width: 599px) {
  .top-merit__ill {
    width: 80%;
    margin: 20px auto 0;
    height: 60px;
  }
  .top-merit__ill img {
    width: 70px;
  }
}
.faqList dt::after {
  max-width: 1200px;
  margin: 0 auto;
  content: "もっと詳しく +";
  font-size: 3rem;
  display: block;
  color: #5cb2bf;
  background: #cde8ed;
  padding: 10px 0;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .faqList dt::after {
    top: 13px;
    font-size: 2rem;
    right: 0px;
  }
}
.faqList dt.active::after {
  right: 25px;
  top: 31px;
  content: "閉じる －";
}

@media screen and (max-width: 959px) {
  .faqList dt.active::after {
    font-size: 2rem;
  }
}
.faqList dd {
  position: relative;
  display: none;
}

.top-fnet {
  padding: 70px 40px 110px;
  background-color: #e9f5f9;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 1400px) {
  .top-fnet {
    padding: 50px 40px 110px;
  }
}
@media screen and (max-width: 1024px) {
  .top-fnet {
    padding: 40px 30px 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet {
    padding: 40px 20px 40px;
  }
}
.top-fnet::before {
  content: "";
  position: absolute;
  top: -29px;
  left: 0;
  width: 100%;
  height: 30px;
  background-image: url(../img/top/nami_ue.png);
  background-repeat: repeat;
  display: block;
}

.top-fnet__title {
  margin-bottom: 55px;
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .top-fnet__title {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1024px) {
  .top-fnet__title {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet__title {
    margin-bottom: 20px;
  }
}
.top-fnet__title img {
  width: 100%;
  max-width: 547px;
}

@media screen and (max-width: 1400px) {
  .top-fnet__title img {
    max-width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .top-fnet__title img {
    max-width: 450px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet__title img {
    max-width: 330px;
  }
}
.top-fnet-service {
  padding-bottom: 75px;
}

@media screen and (max-width: 1024px) {
  .top-fnet-service {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-service {
    padding-bottom: 10px;
  }
}
.top-fnet-service__title {
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto 10px;
}

.top-fnet-service__title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  top: 60px;
  left: 0;
  background-color: #5cb2bf;
}

@media screen and (max-width: 1400px) {
  .top-fnet-service__title::before {
    top: 55px;
  }
}
@media screen and (max-width: 1024px) {
  .top-fnet-service__title::before {
    top: 42px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-service__title::before {
    content: none;
  }
}
.top-fnet-service__title img {
  position: relative;
  width: 100%;
  max-width: 543px;
  z-index: 1;
}

@media screen and (max-width: 1400px) {
  .top-fnet-service__title img {
    max-width: 480px;
  }
}
@media screen and (max-width: 1024px) {
  .top-fnet-service__title img {
    max-width: 350px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-service__title img {
    max-width: 330px;
  }
}
.top-fnet-service__illust {
  margin-bottom: 15px;
}

.top-fnet-service__illust img {
  width: 100%;
  max-width: 951px;
}

@media screen and (max-width: 1400px) {
  .top-fnet-service__illust img {
    max-width: 870px;
  }
}
@media screen and (max-width: 1024px) {
  .top-fnet-service__illust img {
    max-width: 650px;
  }
}
.top-fnet-service__copy {
  margin-bottom: 35px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: bold;
  font-size: 2.1rem;
}

@media screen and (max-width: 1024px) {
  .top-fnet-service__copy {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-service__copy {
    font-size: 1.5rem;
  }
}
.top-fnet-service__copy span {
  color: #e62c22;
  font-size: 2.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 1024px) {
  .top-fnet-service__copy span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-service__copy span {
    font-size: 1.7rem;
  }
}
.top-fnet-service__list {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media screen and (max-width: 599px) {
  .top-fnet-service__list {
    grid-template-columns: none;
    gap: 0px;
  }
}

.top-fnet-service__item-text {
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.8rem;
}

@media screen and (max-width: 1024px) {
  .top-fnet-service__item-text {
    margin-top: 15px;
    font-size: 1.6rem;
    text-align: left;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-service__item-text {
    line-height: 1.4;
    margin-bottom: 30px;
    text-align: center;
  }
}
.top-fnet-service__item-text span {
  color: #e62c22;
}

.top-fnet-benri {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  border-top: 3px solid #cee4eb;
  border-bottom: 3px solid #cee4eb;
}

@media screen and (max-width: 1024px) {
  .top-fnet-benri {
    padding: 60px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-benri {
    padding: 40px 0;
  }
}
.top-fnet-benri__title {
  margin-bottom: 100px;
}

@media screen and (max-width: 1024px) {
  .top-fnet-benri__title {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-benri__title {
    margin-bottom: 30px;
  }
}
.top-fnet-benri__title img {
  width: 100%;
  max-width: 377px;
}

@media screen and (max-width: 1400px) {
  .top-fnet-benri__title img {
    max-width: 340px;
  }
}
@media screen and (max-width: 1024px) {
  .top-fnet-benri__title img {
    max-width: 300px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-benri__title img {
    max-width: 240px;
  }
}
.top-fnet-benri__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

@media screen and (max-width: 599px) {
  .top-fnet-benri__list {
    display: block;
    margin-bottom: 40px;
  }
}
.top-fnet-benri__item {
  width: calc((100% - 90px) / 3);
  margin-left: 45px;
  background-color: #fff;
  position: relative;
}

.top-fnet-benri__item:first-child {
  margin-left: 0;
}

@media screen and (max-width: 1024px) {
  .top-fnet-benri__item {
    width: calc((100% - 30px) / 3);
    margin-left: 15px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-benri__item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
}
.top-fnet-benri__item dt {
  background-color: #5cb2bf;
  padding: 20px 10px 20px;
}

@media screen and (max-width: 1024px) {
  .top-fnet-benri__item dt {
    padding: 15px 10px 15px;
  }
}
.top-fnet-benri__item dt .top-fnet-benri__item__title {
  display: block;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  -o-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  background-color: #fff;
  max-width: 90%;
  width: 100%;
  margin: 0 auto 15px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.4rem;
  font-weight: 600;
  color: #010101;
  line-height: 1.8;
}

@media screen and (max-width: 1024px) {
  .top-fnet-benri__item dt .top-fnet-benri__item__title {
    max-width: 100%;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-benri__item dt .top-fnet-benri__item__title {
    max-width: 90%;
    font-size: 2rem;
  }
}
.top-fnet-benri__item dt .top-fnet-benri__item__title__em {
  color: #e72422;
}

.top-fnet-benri__item dt .top-fnet-benri__item__text {
  color: #fff;
  line-height: 1.5;
  font-weight: bold;
  font-size: 2rem;
  display: block;
}

.top-fnet-benri__item dt:after {
  display: none;
}

@media screen and (max-width: 1024px) {
  .top-fnet-benri__item dt .top-fnet-benri__item__text {
    font-size: 1.6rem;
  }
}
.top-fnet-benri__item dd {
  padding: 20px 25px 55px;
  text-align: justify;
  font-weight: bold;
  font-size: 1.6rem;
  display: block;
}

@media screen and (max-width: 1024px) {
  .top-fnet-benri__item dd {
    padding: 15px 18px 25px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-benri__item dd {
    line-height: 1.4;
    text-align: left;
  }
}
.top-fnet-about {
  padding: 80px 0 0;
  max-width: 1200px;
  margin: 0 auto 100px;
}

@media screen and (max-width: 1400px) {
  .top-fnet-about {
    margin: 0 auto 120px;
  }
}
@media screen and (max-width: 1024px) {
  .top-fnet-about {
    padding: 60px 0 0;
    margin: 0 auto 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-about {
    padding: 40px 0 0;
    margin: 0 auto 40px;
  }
}
.top-fnet-about__title {
  margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
  .top-fnet-about__title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-about__title {
    margin-bottom: 30px;
  }
}
.top-fnet-about__title img {
  width: 100%;
  max-width: 455px;
}

@media screen and (max-width: 1400px) {
  .top-fnet-about__title img {
    max-width: 420px;
  }
}
@media screen and (max-width: 1024px) {
  .top-fnet-about__title img {
    max-width: 370px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-about__title img {
    max-width: 270px;
  }
}
.top-fnet-about__notice {
  text-align: left;
  font-weight: bold;
}

.top-fnet-about__notice a {
  color: #0b60d3 !important;
  text-decoration: underline;
}

.top-fnet-about-item {
  background-color: #fff;
  min-height: 220px;
  margin-bottom: 20px;
  padding: 45px 355px 50px 50px;
  background-image: url(../img/top/fnet_illust02.png);
  background-size: 145px auto;
  background-repeat: no-repeat;
  background-position: 90% 50%;
}

@media screen and (max-width: 1024px) {
  .top-fnet-about-item {
    padding: 35px 255px 30px 30px;
    background-size: 125px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-about-item {
    padding: 25px 30px 140px;
    background-position: 50% 90%;
    background-size: 115px auto;
  }
}
.top-fnet-about-item--02 {
  background-size: 249px auto;
  background-image: url(../img/top/fnet_illust03.png);
  background-position: 95% 50%;
}

@media screen and (max-width: 1024px) {
  .top-fnet-about-item--02 {
    background-size: 200px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-about-item--02 {
    background-position: 50% 88%;
  }
}
.top-fnet-about-item--03 {
  background-size: 266px auto;
  background-image: url(../img/top/fnet_illust04.png);
  background-position: 97% 50%;
}

@media screen and (max-width: 1024px) {
  .top-fnet-about-item--03 {
    background-size: 200px auto;
    background-position: 96% 50%;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-about-item--03 {
    background-position: 50% 88%;
  }
}
.top-fnet-about-item--04 {
  background-size: 201px auto;
  background-image: url(../img/top/fnet_illust05.png);
  background-position: 94% 50%;
}

@media screen and (max-width: 1024px) {
  .top-fnet-about-item--04 {
    background-size: 180px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-about-item--04 {
    background-position: 50% 90%;
  }
}
.top-fnet-about-item--05 {
  background-size: 224px auto;
  background-image: url(../img/top/fnet_illust06.png);
  background-position: 95% 50%;
}

@media screen and (max-width: 1024px) {
  .top-fnet-about-item--05 {
    background-size: 184px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-about-item--05 {
    background-position: 50% 86%;
  }
}
.top-fnet-about-item--06 {
  background-size: 232px auto;
  background-image: url(../img/top/fnet_illust07.png);
  background-position: 95% 50%;
}

@media screen and (max-width: 1024px) {
  .top-fnet-about-item--06 {
    background-size: 190px auto;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-about-item--06 {
    background-position: 50% 93%;
    background-size: 170px auto;
  }
}
.top-fnet-about-item__text {
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.9;
  text-align: left;
}

.top-fnet-about-item__text span {
  color: #e62c22;
}

@media screen and (max-width: 1024px) {
  .top-fnet-about-item__text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-about-item__text {
    line-height: 1.7;
    font-size: 1.5rem;
  }
}
.top-fnet-about-item__zisseki {
  margin-top: 20px;
  max-width: 463px;
}

.top-fnet-goods {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 30px 30px 50px;
  background-color: #f8b800;
}

@media screen and (max-width: 1024px) {
  .top-fnet-goods {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-goods {
    padding: 30px 10px 40px;
  }
}
.top-fnet-goods__title img {
  margin-top: -175px;
  width: 100%;
  max-width: 566px;
}

@media screen and (max-width: 1400px) {
  .top-fnet-goods__title img {
    margin-top: -158px;
    max-width: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .top-fnet-goods__title img {
    margin-top: -148px;
    max-width: 450px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-goods__title img {
    margin-top: -115px;
  }
}
.top-fnet-goods__copy {
  margin-bottom: 10px;
}

.top-fnet-goods__copy img {
  width: 100%;
  max-width: 670px;
}

@media screen and (max-width: 1024px) {
  .top-fnet-goods__copy img {
    max-width: 560px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-goods__copy img {
    margin-top: -20px;
  }
}
.top-fnet-goods__period {
  display: inline-block;
  background-color: #fff;
  padding: 8px 45px;
  border-radius: 200px;
  font-size: 2.2rem;
  font-weight: 900;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
}

.top-fnet-goods__period span {
  color: #e62c22;
}

@media screen and (max-width: 1024px) {
  .top-fnet-goods__period {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-goods__period {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}
.top-fnet-links {
  max-width: 1200px;
  margin: 80px auto 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .top-fnet-links {
    margin: 60px auto 0px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-links {
    margin: 30px auto 0px;
  }
}
.top-fnet-links__item {
  width: calc((100% - 10px) / 2);
  margin-left: 10px;
  margin-bottom: 10px;
}

.top-fnet-links__item:nth-child(2n+1) {
  margin-left: 0;
}

@media screen and (max-width: 599px) {
  .top-fnet-links__item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 8px;
  }
}
.top-fnet-links__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 40px;
  height: 80px;
  font-size: 1.9rem;
  font-weight: bold;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000 !important;
  line-height: 1.4;
  position: relative;
}

@media screen and (min-width: 1025px) {
  .top-fnet-links__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .top-fnet-links__item a {
    height: 70px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-links__item a {
    font-size: 1.6rem;
    height: 50px;
  }
}
.top-fnet-links__item a::before {
  margin-top: -5px;
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 1024px) {
  .top-fnet-links__item a::before {
    right: 15px;
  }
}
.top-fnet-links__btn {
  max-width: 600px;
  margin: 0 auto;
}

.top-fnet-links__btn.last {
  margin-top: 120px;
}

.top-fnet-links__btn a {
  display: block;
  width: 100%;
  padding: 10px 10px 10px 50px;
  height: 110px;
  font-size: 2.6rem;
  font-weight: 900;
  background-color: #e62c22;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff !important;
  line-height: 1.4;
  position: relative;
}

@media screen and (min-width: 1025px) {
  .top-fnet-links__btn a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .top-fnet-links__btn a {
    font-size: 2.5rem;
  }
  .top-fnet-links__btn.last {
    margin-top: 60px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-links__btn a {
    font-size: 1.6rem;
    height: 80px;
  }
  .top-fnet-links__btn.last {
    margin-top: 40px;
  }
}
.top-fnet-links__btn a::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  width: 90px;
  height: 122px;
  background-image: url(../img/top/funeco04.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {
  .top-fnet-links__btn a::before {
    width: 80px;
    height: 110px;
    top: -10px;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-links__btn a::before {
    width: 55px;
    height: 100px;
    left: 5px;
    top: -5px;
  }
}
.top-fnet-links__btn a::after {
  margin-top: -5px;
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 599px) {
  .top-fnet-links__btn a::after {
    right: 15px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.top-corona {
  position: relative;
}

.top-corona::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 30px;
  display: block;
}

@media screen and (max-width: 1024px) {
  .top-corona {
    padding: 0 30px 0 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-corona {
    padding: 0 20px 0 20px;
  }
}
.top-corona__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 120px 0;
}

@media screen and (max-width: 1024px) {
  .top-corona__inner {
    padding: 60px 0 60px 0;
  }
}
@media screen and (max-width: 599px) {
  .top-corona__inner {
    padding: 40px 0 40px 0;
  }
}
.top-corona__title {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 40px;
}

@media screen and (max-width: 1024px) {
  .top-corona__title {
    max-width: 600px;
  }
}
@media screen and (max-width: 599px) {
  .top-corona__title {
    margin-bottom: 20px;
  }
}
.top-corona__copy {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .top-corona__copy {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-corona__copy {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.top-corona__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.top-corona__list__item {
  width: calc((100% - 36px) / 4);
}

.top-corona__list__item:not(:nth-child(4n)) {
  margin-right: 12px;
}

@media screen and (max-width: 599px) {
  .top-corona__list__item {
    width: calc((100% - 12px) / 2);
    margin-bottom: 12px;
  }
  .top-corona__list__item:not(:nth-child(4n)) {
    margin-right: 0px;
  }
  .top-corona__list__item:not(:nth-child(2n)) {
    margin-right: 12px;
  }
}
.top-fnet-about__btn {
  max-width: 600px;
  margin: 0 auto;
  display: block;
  width: 100%;
  padding: 10px 10px 10px 10px;
  height: 80px;
  font-size: 2.6rem;
  font-weight: 900;
  background-color: #4EA0C2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff !important;
  line-height: 1.4;
  position: relative;
}

@media screen and (min-width: 1025px) {
  .top-fnet-about__btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .top-fnet-about__btn {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 599px) {
  .top-fnet-about__btn {
    font-size: 1.6rem;
    height: 60px;
  }
}
.top-fnet-about__btn::after {
  margin-top: -5px;
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media screen and (max-width: 599px) {
  .top-fnet-about__btn::after {
    right: 15px;
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}
.top-fnet-about__btn.active::after {
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

@media screen and (max-width: 599px) {
  .top-fnet-about__btn.active::after {
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
  }
}
.arrow01 {
  max-width: 600px;
  width: 100%;
  margin: 0px auto 120px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .arrow01 {
    max-width: 520px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .arrow01 {
    margin-top: -20px;
    margin-bottom: 30px;
    max-width: 450px;
  }
}
@media screen and (max-width: 599px) {
  .arrow01 {
    margin-top: -20px;
    margin-bottom: 30px;
    max-width: 80%;
  }
}

.modal-login__wrap {
  padding: 30px;
}
@media screen and (max-width: 599px) {
  .modal-login__wrap {
    padding: 30px 20px;
  }
}

.modal-login__remarks {
  font-weight: 400;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .modal-login__remarks {
    font-size: 1.4rem;
  }
}
.modal-login__remarks .em {
  position: relative;
  z-index: auto;
  background: linear-gradient(transparent 5%, #eef92b 0%);
  display: inline;
}

.modal-login__lead {
  background-color: #fffeee;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  text-align: center;
}

.modal-login__lead__title {
  font-size: 1.7rem;
  color: #dd0000;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width: 599px) {
  .modal-login__lead__title {
    font-size: 1.5rem;
  }
}

.modal-login__lead__text {
  font-weight: 400;
  color: #000;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .modal-login__lead__text {
    font-size: 1.4rem;
  }
}
.modal-login__lead__text .em {
  text-decoration: underline;
}

.modal-login__btn-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .modal-login__btn-list {
    gap: 5px;
  }
}

.modal-login__btn {
  background-color: #0000ad;
  color: #fff;
  text-align: center;
  position: relative;
  display: block;
  font-weight: 500;
  padding: 20px;
  transition: 0.3s ease;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .modal-login__btn {
    padding: 10px 30px 10px 10px;
    font-size: 1.4rem;
  }
}
.modal-login__btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
  border-right: 0;
}
.modal-login__btn.green {
  background-color: #e60012;
}
.modal-login__btn .em {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 5px;
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width: 599px) {
  .modal-login__btn .em {
    font-size: 1.5rem;
    margin: 0 3px;
  }
}
.modal-login__btn:hover,
.modal-login__btn a:visited, .modal-login__btn:active {
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .modal-login__btn:hover {
    opacity: 0.7;
  }
}/*# sourceMappingURL=style.css.map */