@charset "UTF-8";
/* ブレイクポイント参考

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;
  }
}
/* 1500以上 */
@media screen and (max-width: 1500px) {
  .only1500 {
    display: none !important;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    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: 1400px) {
  .w1400 {
    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;
  }
}
/*
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;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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%;
  image-rendering: -webkit-optimize-contrast;
}

li {
  list-style: none;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

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

	body設定

----------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #222;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.6;
  font-size: 1.4rem;
  word-break: break-all;
  text-justify: inter-character;
  overflow-x: hidden;
  font-weight: 500;
  /*font-feature-settings: "palt" 1;*/
}
@media screen and (max-width: 599px) {
  body {
    font-size: 1.3rem;
  }
}
body.modal-scrooll-stop {
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  body {
    font-weight: 400;
  }
}

a {
  text-decoration: none;
}

.color {
  background-color: #000;
  color: #fff;
}

* {
  max-height: 999999px;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}

/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

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

button {
  transition: 0.3s;
  cursor: pointer;
}

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

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

.mb45 {
  margin-bottom: 45px;
}
@media screen and (max-width: 900px) {
  .mb45 {
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 599px) {
  .mb45 {
    margin-bottom: 25px;
  }
}

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

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

.mb80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 900px) {
  .mb80 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 40px;
  }
}

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

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

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

.scroll-hint-icon::before {
  background-image: url(../img/common/icon_scroll.svg) !important;
  background-size: 100% auto;
}
.scroll-hint-icon::after {
  display: none !important;
}

.tel-link {
  color: #000 !important;
  text-decoration: none !important;
  cursor: auto !important;
}

@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -webkit-print-color-adjust: exact;
  }
  /*　------- ↓その他参考例　---------
  .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 {
  background-color: #b6d56a !important;
  background-image: url(../img/common/bg_bias.webp);
  background-repeat: repeat;
  background-size: 23px;
}

.bg-slider-left {
  width: calc((100% - 700px) / 2);
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .bg-slider-left {
    display: none;
  }
}
.bg-slider-left div {
  line-height: 0.1;
}

.bg-slider-right {
  width: calc((100% - 700px) / 2);
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .bg-slider-right {
    display: none;
  }
}
.bg-slider-right div {
  line-height: 0.1;
}

.contents {
  margin: 0 auto;
  width: 100%;
  min-height: 100vh;
  max-width: 700px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 900px) {
  .contents {
    margin-top: 0;
  }
}

.sec-inner {
  padding: 80px 60px 100px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .sec-inner {
    padding: 50px 30px 50px;
  }
}

.header {
  padding: 35px 60px 30px;
  border-bottom: 12px solid #b6d56a;
}
@media screen and (max-width: 599px) {
  .header {
    padding: 20px 30px 15px;
  }
}
.header__title {
  line-height: 0.1;
}
.header__title__link {
  display: block;
}
@media screen and (min-width: 1025px) {
  .header__title__link:hover {
    transform: translateY(3px);
  }
}

.menu-btn-wrapper {
  padding-top: 20px;
  width: 60px;
  height: auto;
  position: fixed;
  top: 0;
  left: calc(50% + 350px - 80px);
  transition: 0.2s;
  z-index: 10;
  transform: translateY(-100%);
}
@media screen and (max-width: 900px) {
  .menu-btn-wrapper {
    left: auto;
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .menu-btn-wrapper {
    padding-top: 10px;
    right: 10px;
    width: 50px;
  }
}
.menu-btn-wrapper.on {
  transform: translateY(0);
}
.menu-btn-wrapper .menu-btn {
  width: 60px;
  height: 60px;
  background-color: #000;
  border: none;
  border-radius: 50%;
  display: block;
  transition: 0.2s;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 599px) {
  .menu-btn-wrapper .menu-btn {
    width: 50px;
    height: 50px;
  }
}
.menu-btn-wrapper .menu-btn::before {
  content: "";
  margin: 0 auto;
  width: 40%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
  right: 0;
  transition: 0.2s;
}
.menu-btn-wrapper .menu-btn::after {
  content: "";
  margin: 0 auto;
  width: 40%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: calc(50% - 4px);
  left: 0;
  right: 0;
  transition: 0.2s;
}
.menu-btn-wrapper .menu-btn.white {
  background-color: #fff;
}
.menu-btn-wrapper .menu-btn.white::before {
  background-color: #000;
  top: calc(50% - 1px);
}
.menu-btn-wrapper .menu-btn.white::after {
  bottom: calc(50% - 1px);
  background-color: #000;
}
@media screen and (min-width: 1025px) {
  .menu-btn-wrapper .menu-btn:hover {
    background-color: #79a;
  }
}
.menu-btn-wrapper .search-btn {
  margin-top: 10px;
  width: 60px;
  font-size: 12px;
  line-height: 1;
  color: #000;
  font-weight: 700;
  letter-spacing: normal;
  text-align: center;
  display: block;
  position: relative;
}
@media screen and (max-width: 599px) {
  .menu-btn-wrapper .search-btn {
    margin-top: 5px;
    width: 50px;
    font-size: 10px;
  }
}
.menu-btn-wrapper .search-btn.white {
  color: #fff;
}
.menu-btn-wrapper .search-btn.white .search-btn__icon {
  background-color: #fff;
  background-image: url(../img/common/icon_search_black.svg);
}
@media screen and (min-width: 1025px) {
  .menu-btn-wrapper .search-btn:hover {
    color: #79a;
  }
  .menu-btn-wrapper .search-btn:hover .search-btn__icon {
    background-color: #79a;
  }
}
.menu-btn-wrapper .search-btn__icon {
  margin-bottom: 7px;
  width: 60px;
  height: 60px;
  background-color: #000;
  background-image: url(../img/common/icon_search.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 36% auto;
  border-radius: 50%;
  display: block;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .menu-btn-wrapper .search-btn__icon {
    margin-bottom: 5px;
    width: 50px;
    height: 50px;
  }
}

.menu-box {
  margin: 0 auto;
  width: 700px;
  max-width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  overflow: hidden;
  transition: 0.4s;
}
.menu-box.on {
  height: 100vh;
}
.menu-box__inner {
  padding: 80px 50px 120px;
  width: 700px;
  min-height: 90vh;
}
@media screen and (max-width: 599px) {
  .menu-box__inner {
    padding: 70px 8vw 100px;
  }
}
.menu-box__inner__list__item {
  margin-top: 55px;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item {
    margin-top: 40px;
  }
}
.menu-box__inner__list__item:first-child {
  margin-top: 0;
}
.menu-box__inner__list__item__link {
  padding-left: 42px;
  display: block;
  position: relative;
}
.menu-box__inner__list__item__link::before {
  content: "";
  top: 7px;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #b6d56a;
  border-radius: 50%;
  position: absolute;
  transition: 0.2s;
}
.menu-box__inner__list__item__link::after {
  content: "";
  border-width: 4px 0 4px 7px;
  border-style: solid;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 14px;
  left: 9px;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item__link {
    padding-left: 30px;
  }
  .menu-box__inner__list__item__link::before {
    top: 5px;
    width: 18px;
    height: 18px;
  }
  .menu-box__inner__list__item__link::after {
    border-width: 3px 0 3px 6px;
    top: 11px;
    left: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .menu-box__inner__list__item__link:hover {
    transform: translateX(5px);
  }
  .menu-box__inner__list__item__link:hover::before {
    background-color: #789;
  }
}
.menu-box__inner__list__item__link__en {
  width: 230px;
  line-height: 0.1;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item__link__en {
    width: 180px;
  }
}
.menu-box__inner__list__item__link__jp {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  font-weight: 900;
  display: block;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item__link__jp {
    margin-top: 12px;
    font-size: 18px;
  }
}
.menu-box__inner__list__item__link__jp.mt10 {
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item__link__jp.mt10 {
    margin-top: 6px;
  }
}

.footer {
  padding: 80px 20px 60px;
  background-color: #b6d56a;
}
@media screen and (max-width: 599px) {
  .footer {
    padding: 50px 20px 40px;
  }
}
.footer__sns {
  margin: 45px auto 45px;
  width: 100%;
  max-width: 330px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 599px) {
  .footer__sns {
    margin: 50px auto 40px;
    max-width: 275px;
  }
}
.footer__sns__item {
  width: 60px;
}
@media screen and (max-width: 599px) {
  .footer__sns__item {
    width: 50px;
  }
}
.footer__sns__item__link {
  width: 100%;
  height: 60px;
  background-color: #808080;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 50% 50%;
  border-radius: 50%;
  display: block;
}
@media screen and (max-width: 599px) {
  .footer__sns__item__link {
    height: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .footer__sns__item__link:hover {
    background-color: #000;
    transform: translateY(3px);
  }
}
.footer__sns__item__link.web {
  background-image: url(../img/common/icon_web.svg);
}
.footer__sns__item__link.insta {
  background-image: url(../img/common/icon_insta.svg);
}
.footer__sns__item__link.x {
  background-image: url(../img/common/icon_x.svg);
}
.footer__sns__item__link.tiktok {
  background-image: url(../img/common/icon_tiktok.svg);
}
.footer__links {
  padding-left: 0.06em;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  color: #000;
}
.footer__links__link {
  color: #000;
}
@media screen and (min-width: 1025px) {
  .footer__links__link:hover {
    color: #333;
  }
}
.footer__links02 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  color: #000;
  letter-spacing: 0;
}
@media screen and (max-width: 599px) {
  .footer__links02 {
    margin-bottom: 15px;
    font-size: 4.5vw;
  }
}
.footer__links02__link {
  color: #000;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .footer__links02__link:hover {
    color: #333;
    text-decoration: none;
  }
}
.footer__copyright {
  margin-top: 45px;
  font-size: 14px;
  line-height: 1;
  color: #000;
  letter-spacing: normal;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .footer__copyright {
    margin-top: 20px;
    font-size: 11px;
  }
}
.footer__copyright.dami {
  margin-top: -20px;
}
@media screen and (max-width: 599px) {
  .footer__copyright.dami {
    margin-top: -10px;
  }
}

.topicpath {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .topicpath {
    margin-top: 12px;
  }
}
.topicpath__item {
  max-width: 40em;
  font-size: 16px;
  line-height: 1;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
@media screen and (max-width: 599px) {
  .topicpath__item {
    max-width: 25em;
    font-size: 12px;
  }
}
.topicpath__item::before {
  content: "＞";
  margin: 0 2px 0 8px;
  color: #000;
  display: inline-block;
  vertical-align: -10%;
}
@media screen and (max-width: 1024px) {
  .topicpath__item::before {
    margin: 0 0 0 8px;
    vertical-align: 0%;
  }
}
@media screen and (max-width: 599px) {
  .topicpath__item::before {
    margin: 0 0 0 5px;
    vertical-align: 0%;
  }
}
.topicpath__item:first-child::before {
  display: none;
}
.topicpath__item__link {
  color: #000;
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .topicpath__item__link:hover {
    color: #b6d56a;
    transform: translateY(2px);
  }
}

.text-base {
  font-size: 20px;
  line-height: 2;
  color: #000;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .text-base {
    font-size: 17px;
    line-height: 1.77;
  }
}
.text-base.right {
  text-align: right;
}

.text-caution {
  margin-top: 5px;
  padding-left: 1em;
  font-size: 20px;
  line-height: 1.6;
  color: #789;
  text-indent: -1em;
}
@media screen and (max-width: 599px) {
  .text-caution {
    font-size: 15px;
  }
}

.copy-bold {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 1.7;
  color: #b6d56a;
  font-weight: 700;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .copy-bold {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
  }
}

.detail-list__item {
  padding: 25px 0;
  border-bottom: 1px solid #999;
}
.detail-list__item:first-child {
  border-top: 1px solid #999;
}
@media screen and (max-width: 599px) {
  .detail-list__item {
    padding: 15px 0;
  }
}
.detail-list__item__title {
  font-size: 22px;
  line-height: 1.5;
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .detail-list__item__title {
    font-size: 16px;
  }
}
.detail-list__item__text {
  font-size: 20px;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 599px) {
  .detail-list__item__text {
    font-size: 15px;
  }
}

.tag-list {
  margin-top: -10px;
  margin-left: -10px;
  width: calc(100% + 10px);
}
.tag-list__item {
  margin-top: 10px;
  margin-left: 10px;
  padding: 10px 12px 8px;
  font-size: 16px;
  line-height: 1;
  color: #000;
  letter-spacing: 0;
  background-color: #ddd;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .tag-list__item {
    padding: 10px 10px 8px;
    font-size: 14px;
  }
}

.list-base__item {
  margin-top: 15px;
  padding-left: 22px;
  font-size: 20px;
  line-height: 1.8;
  color: #000;
  text-align: justify;
  position: relative;
}
.list-base__item::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #b6d56a;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 2px;
}
@media screen and (max-width: 599px) {
  .list-base__item {
    margin-top: 13px;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.65;
  }
  .list-base__item::before {
    width: 10px;
    height: 10px;
    top: 9px;
    left: 1px;
  }
}
.list-base__item:first-child {
  margin-top: 0;
}

.file-list__item {
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .file-list__item {
    margin-top: 5px;
  }
}
.file-list__item:first-child {
  margin-top: 0;
}
.file-list__item__link {
  padding: 31px 90px 29px 80px;
  font-size: 19px;
  line-height: 1.3;
  color: #000;
  background-color: #f3f3f3;
  display: block;
  position: relative;
  background-repeat: no-repeat;
  background-size: 36px;
  background-position: 25px 50%;
}
.file-list__item__link::before {
  content: "";
  margin: auto 0;
  width: 0;
  height: 0;
  border-width: 6px 0 6px 10px;
  border-style: solid;
  border-color: transparent transparent transparent #b6d56a;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .file-list__item__link {
    padding: 21px 40px 19px 50px;
    font-size: 16px;
    background-size: 24px;
    background-position: 13px 50%;
    border-radius: 3px;
  }
  .file-list__item__link::before {
    width: 7px;
    right: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .file-list__item__link:hover {
    color: #fff;
    background-color: #b6d56a;
    transform: translateX(5px);
  }
  .file-list__item__link:hover::before {
    border-color: transparent transparent transparent #fff;
  }
}
.file-list__item__link.pdf {
  background-image: url(../img/common/icon_pdf.svg);
}
.file-list__item__link.word {
  background-image: url(../img/common/icon_word.svg);
}
.file-list__item__link.xls {
  background-image: url(../img/common/icon_xls.svg);
}
.file-list__item__link.site {
  background-image: url(../img/common/icon_site.svg);
}

.table-base {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
  vertical-align: baseline;
}
.table-base thead th {
  padding: 15px 10px;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  background-color: #b6d56a;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .table-base thead th {
    padding: 6px;
    font-size: 15px;
  }
}
.table-base tbody th,
.table-base tbody td {
  padding: 20px 15px 18px;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #ddd;
  vertical-align: middle;
  text-align: left;
  overflow-wrap: break-word;
  word-break: break-all;
}
@media screen and (max-width: 599px) {
  .table-base tbody th,
  .table-base tbody td {
    padding: 11px 10px 10px;
    font-size: 15px;
    font-weight: 400;
  }
}
.table-base tbody th {
  color: #5c9e06;
  text-align: center;
  vertical-align: middle;
  background-color: #f3f3f3;
}

.btn-base {
  margin: 0 auto;
  padding-left: 0.06em;
  max-width: 320px;
  width: 100%;
  height: 70px;
  font-size: 22px;
  line-height: 71px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: #333;
  position: relative;
  display: block;
  border: 0;
}
@media screen and (max-width: 599px) {
  .btn-base {
    max-width: 250px;
    height: 60px;
    font-size: 19px;
    line-height: 61px;
  }
}
.btn-base::before {
  content: "";
  margin: 0 auto;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  border: 2px solid #fff;
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.btn-base::after {
  content: "";
  border-width: 8px 0 8px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: calc(50% - 8px);
  right: 25px;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .btn-base::after {
    border-width: 7px 0 7px 10px;
    top: calc(50% - 7px);
    right: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .btn-base:hover {
    color: #000;
    background-color: #fff;
    transform: translateY(3px);
  }
  .btn-base:hover::before {
    border: 2px solid #000;
  }
  .btn-base:hover::after {
    border-color: transparent transparent transparent #000;
  }
}
.btn-base.back::after {
  content: "";
  border-width: 8px 12px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  top: calc(50% - 8px);
  right: auto;
  left: 25px;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .btn-base.back::after {
    border-width: 7px 10px 7px 0;
    top: calc(50% - 7px);
    left: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .btn-base.form-ov:hover {
    background-color: #666;
    color: #fff;
  }
  .btn-base.form-ov:hover::before {
    border: 2px solid #fff;
  }
  .btn-base.form-ov:hover::after {
    border-color: transparent transparent transparent #fff;
  }
}

.btn-visit {
  margin: 0 auto;
  padding-left: 0.06em;
  max-width: 320px;
  width: 100%;
  height: 70px;
  font-size: 22px;
  line-height: 67px;
  color: #000;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
  border: 2px solid #333;
  box-shadow: 7px 7px 0 0 #333;
  position: relative;
  z-index: 2;
  display: block;
}
@media screen and (max-width: 599px) {
  .btn-visit {
    max-width: 250px;
    height: 60px;
    font-size: 19px;
    line-height: 57px;
    box-shadow: 5px 5px 0 0 #333;
  }
}
.btn-visit::before {
  content: "";
  border-width: 0 0 16px 16px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
  position: absolute;
  right: 8px;
  bottom: 8px;
  transition: 0.2s;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .btn-visit::before {
    border-width: 0 0 14px 14px;
    right: 7px;
    bottom: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .btn-visit:hover {
    color: #fff;
    background-color: #333;
    transform: translateY(3px);
    box-shadow: none;
  }
  .btn-visit:hover::before {
    border-color: transparent transparent #fff transparent;
  }
}

.tel-link {
  color: #000;
  cursor: auto;
}

.pager {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .pager {
    margin-top: 30px;
  }
}
.pager__item {
  margin: 0 5px;
  height: 60px;
  font-size: 22px;
  line-height: 61px;
  color: #b6d56a;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .pager__item {
    margin: 0 3px;
    height: 40px;
    font-size: 17px;
    line-height: 41px;
  }
}
@media screen and (max-width: 320px) {
  .pager__item {
    margin: 0 1px;
    height: 36px;
    font-size: 15px;
    line-height: 37px;
  }
}
.pager__item__link {
  width: 60px;
  height: 60px;
  font-size: 24px;
  line-height: 61px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
  background-color: #b6d56a;
  border-radius: 50%;
  display: block;
}
@media screen and (max-width: 599px) {
  .pager__item__link {
    width: 40px;
    height: 40px;
    font-size: 17px;
    line-height: 41px;
  }
}
@media screen and (max-width: 320px) {
  .pager__item__link {
    width: 36px;
    height: 36px;
    font-size: 15px;
    line-height: 37px;
  }
}
.pager__item__link.now {
  background-color: #000;
}
.pager__item__link.turn {
  font-size: 22px;
  line-height: 57px;
  color: #b6d56a;
  background-color: #fff;
  border: 2px solid #b6d56a;
}
@media screen and (max-width: 599px) {
  .pager__item__link.turn {
    font-size: 16px;
    line-height: 37px;
  }
}
@media screen and (max-width: 320px) {
  .pager__item__link.turn {
    font-size: 14px;
    line-height: 33px;
  }
}
@media screen and (min-width: 1025px) {
  .pager__item__link:hover {
    opacity: 0.7;
    transform: translateY(3px);
  }
}

.title-en {
  margin-bottom: 60px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .title-en {
    margin-bottom: 40px;
  }
}
.title-en__jp {
  margin-top: 20px;
  font-size: 24px;
  line-height: 1;
  color: #000;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 599px) {
  .title-en__jp {
    margin-top: 12px;
    font-size: 18px;
  }
}
.title-en__jp--privacy {
  margin-top: 6px;
}
@media screen and (max-width: 599px) {
  .title-en__jp--privacy {
    margin-top: 4px;
  }
}

.sec-title01 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .sec-title01 {
    margin-bottom: 16px;
    font-size: 24px;
  }
}

.title-circle {
  margin-bottom: 50px;
  margin-left: -20px;
  padding-left: 58px;
  font-size: 25px;
  line-height: 1.5;
  color: #000;
  font-weight: 700;
  position: relative;
}
.title-circle::before {
  content: "";
  width: 46px;
  height: 46px;
  background-color: #b6d56a;
  background-image: url(../img/common/bg_bias.webp);
  background-repeat: repeat;
  background-size: 13px auto;
  background-position: 50% 50%;
  border-radius: 50%;
  position: absolute;
  top: -6px;
  left: 0;
}
@media screen and (max-width: 599px) {
  .title-circle {
    margin: 0 auto 35px;
    padding: 26px 30px 22px;
    font-size: 20px;
    text-align: justify;
    background-color: #f3f3f3;
  }
  .title-circle::before {
    width: 100%;
    height: 4px;
    background-size: 9px auto;
    border-radius: 0;
    top: 0;
    left: 0;
  }
  .title-circle::after {
    content: "";
    margin: 0 auto;
    width: 0;
    height: 0;
    border-width: 15px 10px 0 10px;
    border-style: solid;
    border-color: #f3f3f3 transparent transparent transparent;
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
  }
}

.title-line {
  margin-bottom: 25px;
  padding-left: 42px;
  padding-bottom: 16px;
  font-size: 22px;
  line-height: 1.3;
  color: #000;
  font-weight: 700;
  border-bottom: 1px dotted #bbb;
  position: relative;
}
.title-line::before {
  content: "";
  width: 28px;
  height: 28px;
  border: 10px solid #b6d56a;
  position: absolute;
  top: -2px;
  left: 0;
}
@media screen and (max-width: 599px) {
  .title-line {
    margin-bottom: 10px;
    padding-left: 30px;
    padding-bottom: 12px;
    font-size: 20px;
  }
  .title-line::before {
    content: "";
    width: 21px;
    height: 21px;
    border: 7px solid #b6d56a;
    top: 2px;
  }
}

.title-obi {
  margin-bottom: 25px;
  padding: 15px 120px 12px 20px;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  background-color: #b6d56a;
  position: relative;
}
.title-obi::before {
  content: "";
  width: 100px;
  height: 100%;
  background-image: url(../img/common/bg_bias.webp);
  background-repeat: repeat;
  background-size: 13px auto;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 599px) {
  .title-obi {
    margin-bottom: 10px;
    padding: 12px 70px 9px 15px;
    font-size: 18px;
  }
  .title-obi::before {
    width: 60px;
  }
}

.title-bold {
  margin-bottom: 25px;
  font-size: 22px;
  line-height: 1.3;
  color: #5c9e06;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .title-bold {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

.title-square {
  margin-bottom: 25px;
  padding-left: 42px;
  font-size: 20px;
  line-height: 1.3;
  color: #000;
  font-weight: 700;
  position: relative;
}
.title-square::before {
  content: "";
  width: 28px;
  height: 28px;
  border: 10px solid #b6d56a;
  position: absolute;
  top: -2px;
  left: 0;
}
@media screen and (max-width: 599px) {
  .title-square {
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 18px;
  }
  .title-square::before {
    content: "";
    width: 21px;
    height: 21px;
    border: 7px solid #b6d56a;
    top: 0px;
  }
}

.form-tbl {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .form-tbl {
    display: block;
    margin-bottom: 20px;
  }
}

.form-tbl__title {
  font-size: 22px;
  line-height: 1.5;
  color: #000;
  font-weight: 700;
  padding: 25px 0 0 0;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .form-tbl__title {
    padding: 20px 0 0 0;
    font-size: 16px;
  }
}

.form-tbl__data {
  font-size: 20px;
  line-height: 1.5;
  border-bottom: 1px solid #999;
  padding: 0px 0 25px;
}
@media screen and (max-width: 599px) {
  .form-tbl__data {
    font-size: 17px;
    padding: 0px 0 20px;
  }
}

.icon-must {
  background-color: #db3939;
  color: #fff;
  width: 42px;
  height: 24px;
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  display: block;
  position: absolute;
  top: 26px;
  right: 0;
}
@media screen and (max-width: 599px) {
  .icon-must {
    top: 16px;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
  }
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  width: 100%;
  border: 1px solid #999;
  background-color: #fff;
  padding: 18px;
  line-height: 1.4;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    padding: 12px 12px;
    font-size: 15px;
  }
}
input[type=text].w-type01,
input[type=tel].w-type01,
input[type=email].w-type01,
textarea.w-type01 {
  width: 200px;
}
@media screen and (max-width: 599px) {
  input[type=text].w-type01,
  input[type=tel].w-type01,
  input[type=email].w-type01,
  textarea.w-type01 {
    width: 150px;
  }
}
input[type=text].error,
input[type=tel].error,
input[type=email].error,
textarea.error {
  background-color: #fbebeb;
  border: 1px solid #db3939;
}

input[type=reset] {
  border: none;
}

input[type=file] {
  font-size: 1.2rem;
}
@media (prefers-color-scheme: dark) {
  input[type=file]::file-selector-button {
    background-color: #eee;
    color: #000 !important;
    border: 1px solid #666;
    border-radius: 3px;
  }
}

select {
  background-color: #fff;
  border: 1px solid #999;
  display: block;
  padding: 18px;
  font-size: 20px;
  line-height: 1;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
  background-image: url(../img/common/select-arrow.webp);
  background-size: 12px 8px;
  background-repeat: no-repeat;
  background-position: right 8px top 50%;
}
@media screen and (max-width: 599px) {
  select {
    padding: 12px 12px;
    font-size: 15px;
  }
}
select.w-type01 {
  width: 280px;
}
@media screen and (max-width: 599px) {
  select.w-type01 {
    width: 200px;
  }
}
select.w-type02 {
  width: 180px;
  margin-left: 15px;
}
select.error {
  background-color: #fbebeb;
  border: 1px solid #db3939;
}

.form-list01 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.form-list01__item {
  width: calc((100% - 30px) / 3);
  margin-bottom: 15px;
}
.form-list01__item:not(:nth-child(3n)) {
  margin-right: 15px;
}
@media screen and (max-width: 599px) {
  .form-list01__item {
    width: calc((100% - 10px) / 2);
    margin-bottom: 10px;
  }
  .form-list01__item:not(:nth-child(3n)) {
    margin-right: 0px;
  }
  .form-list01__item:not(:nth-child(2n)) {
    margin-right: 10px;
  }
}
.form-list01.cl02 .form-list01__item {
  width: calc((100% - 15px) / 2);
}
.form-list01.cl02 .form-list01__item:not(:nth-child(3n)) {
  margin-right: 0px;
}
.form-list01.cl02 .form-list01__item:not(:nth-child(2n)) {
  margin-right: 15px;
}
@media screen and (max-width: 599px) {
  .form-list01.cl02 .form-list01__item {
    width: 100%;
  }
  .form-list01.cl02 .form-list01__item:not(:nth-child(2n)) {
    margin-right: 0px;
  }
}

.input-radio01,
.input-checkbox01 {
  display: none;
}
.input-radio01:checked + .radio01,
.input-checkbox01:checked + .radio01 {
  background-color: #5c9e06;
  color: #fff;
}
.input-radio01:checked + .radio01::before,
.input-checkbox01:checked + .radio01::before {
  background-color: #fff;
}
.input-radio01:checked + .radio01::after,
.input-checkbox01:checked + .radio01::after {
  background-color: #5c9e06;
  width: 7px;
  height: 7px;
  left: 14px;
  border-radius: 100%;
}
.input-radio01:checked + .checkbox01,
.input-checkbox01:checked + .checkbox01 {
  background-color: #5c9e06;
  color: #fff;
}
.input-radio01:checked + .checkbox01::before,
.input-checkbox01:checked + .checkbox01::before {
  background-color: #fff;
}
.input-radio01:checked + .checkbox01::after,
.input-checkbox01:checked + .checkbox01::after {
  left: 16px;
  width: 7px;
  height: 7px;
  background-color: #5c9e06;
  left: 17px;
  bottom: 0px;
}

.checkbox01,
.radio01 {
  background-color: #dddddd;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 15px 15px 15px 34px;
  position: relative;
}
.checkbox01::before, .checkbox01::after,
.radio01::before,
.radio01::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.radio01::before {
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  left: 10px;
}

.checkbox01 {
  padding-left: 36px;
}
.checkbox01::before {
  background-color: #fff;
  width: 15px;
  height: 15px;
  left: 13px;
}

.input-checkbox02 {
  display: none;
}
.input-checkbox02:checked + .checkbox02::before {
  background-color: #fff;
}
.input-checkbox02:checked + .checkbox02::after {
  background-color: #5c9e06;
}

.checkbox02 {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0px 0px 0px 24px;
  position: relative;
  font-size: 1.5rem;
}
.checkbox02::before, .checkbox02::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.checkbox02::before {
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  left: 0;
}
.checkbox02::after {
  width: 7px;
  height: 7px;
  background-color: #dce2e1;
  left: 4px;
}

.form-error-box {
  background-color: #fff;
  color: #db3939;
  font-weight: bold;
  padding: 15px 20px;
  margin: 40px 0 40px 0;
  line-height: 1.5;
  background-color: #fbebeb;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .form-error-box {
    font-size: 16px;
  }
}

.form-error-text {
  color: #db3939;
  font-weight: bold;
  margin-bottom: 5px;
  width: 100%;
}

.form-fix__btn {
  background-color: #ddd;
  color: #444;
  font-size: 1.5rem;
  display: block;
  text-align: center;
  font-weight: 600;
  max-width: 60%;
  margin: 20px auto 0;
  padding: 10px;
  border-radius: 60px;
}
@media screen and (max-width: 1024px) {
  .form-fix__btn {
    max-width: 280px;
  }
}

.form-send {
  margin: 0 auto 20px;
  padding: 80px 60px;
}
@media screen and (max-width: 599px) {
  .form-send {
    padding: 40px 30px 30px;
  }
}
.form-send__title {
  font-size: 2.8rem;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .form-send__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .form-send__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.form-send__data {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 2rem;
}
@media screen and (max-width: 599px) {
  .form-send__data {
    margin-bottom: 30px;
    text-align: left;
    font-size: 1.5rem;
  }
}

.form-send__contact {
  background-color: #e6e6e6;
  padding: 20px 30px;
}
@media screen and (max-width: 599px) {
  .form-send__contact {
    padding: 20px 20px;
  }
}
.form-send__contact__title {
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .form-send__contact__title {
    margin-bottom: 5px;
  }
}
.form-send__contact__tel {
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .form-send__contact__tel {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .form-send__contact__tel__link {
    text-decoration: underline;
  }
}
@media screen and (max-width: 599px) {
  .form-send__contact__mail {
    font-size: 1.4rem;
  }
}
.form-send__contact__mail__link {
  text-decoration: underline;
}

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

.form-lead02 {
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .form-lead02 {
    margin-bottom: 30px;
  }
}

.form-lead__list {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .form-lead__list {
    margin-bottom: 10px;
  }
}
.form-lead__list__item {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .form-lead__list__item {
    font-size: 1.2rem;
  }
}

.form-selected {
  background-color: #e6e6e6;
  padding: 20px 25px;
}
@media screen and (max-width: 599px) {
  .form-selected {
    padding: 10px 15px;
  }
}

.form-file__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .form-file__list {
    display: block;
  }
}
.form-file__list__item {
  width: calc((100% - 10px) / 2);
  margin-bottom: 10px;
  background-color: #e6e6e6;
  padding: 15px 10px;
}
.form-file__list__item:not(:nth-child(2n)) {
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .form-file__list__item {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 5px;
  }
  .form-file__list__item:not(:nth-child(2n)) {
    margin-right: 0px;
  }
}

.form-file__title {
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1;
}

.form-file__box {
  background-color: #fff;
  padding: 10px;
}

.form-area {
  background-color: #e6e6e6;
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .form-area {
    display: block;
    padding: 15px 15px 10px;
    margin-bottom: 20px;
  }
}
.form-area__item {
  width: calc((100% - 10px) / 2);
  display: flex;
  align-items: center;
}
.form-area__item:not(:nth-child(2n)) {
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .form-area__item {
    width: 100%;
    margin-bottom: 8px;
  }
  .form-area__item:not(:nth-child(2n)) {
    margin-right: 0px;
  }
}
@media screen and (max-width: 599px) {
  .form-area__title {
    width: 70px;
    display: block;
  }
}

.form-area__list02 {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #999;
}
@media screen and (max-width: 599px) {
  .form-area__list02 {
    display: block;
  }
}
.form-area__list02__title {
  width: 120px;
  background-color: #e6e6e6;
  border-bottom: 1px solid #999;
  padding: 25px 15px 10px;
}
@media screen and (max-width: 599px) {
  .form-area__list02__title {
    width: 100%;
    padding: 10px 15px 10px;
  }
}
.form-area__list02__data {
  width: calc(100% - 120px);
  border-bottom: 1px solid #999;
  padding: 20px 15px 10px;
}
@media screen and (max-width: 599px) {
  .form-area__list02__data:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .form-area__list02__data {
    width: 100%;
    padding: 0px 0px 10px;
  }
}
@media screen and (max-width: 599px) {
  .form-area__list02 {
    width: 100%;
  }
}

.form-city__list {
  display: flex;
  flex-wrap: wrap;
}
.form-city__list__item {
  width: calc((100% - 10px) / 2);
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.form-city__list__item:not(:nth-child(2n)) {
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .form-city__list__item {
    width: 100%;
    margin-bottom: 0px;
    padding: 15px 10px 15px 10px;
  }
  .form-city__list__item:not(:nth-child(2n)) {
    margin-right: 0px;
  }
  .form-city__list__item:not(:last-child) {
    border-bottom: 1px solid #999;
  }
}
.form-city__list.cl03 .form-city__list__item {
  width: calc((100% - 20px) / 3);
}
.form-city__list.cl03 .form-city__list__item:not(:nth-child(2n)) {
  margin-right: 0px;
}
.form-city__list.cl03 .form-city__list__item:not(:nth-child(3n)) {
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .form-city__list.cl03 .form-city__list__item {
    width: calc((100% - 10px) / 2);
  }
  .form-city__list.cl03 .form-city__list__item:not(:nth-child(3n)) {
    margin-right: 0px;
  }
  .form-city__list.cl03 .form-city__list__item:not(:nth-child(2n)) {
    margin-right: 10px;
  }
}

.form-post__link {
  text-decoration: underline;
  display: inline-block;
  margin-top: 5px;
}
@media screen and (max-width: 599px) {
  .form-post__link {
    font-size: 15px;
  }
}

.form-post__btn {
  background-color: #4d4d4d;
  color: #fff;
  display: inline-block;
  height: 65px;
  line-height: 65px;
  padding: 0px 15px;
  transition: 0.3s;
  border: 0;
  font-size: 16px;
}
@media screen and (max-width: 599px) {
  .form-post__btn {
    font-size: 1.4rem;
    padding: 0px 5px;
    height: 48px;
    line-height: 48px;
  }
}
.form-post__btn:hover {
  background-color: #5c9e06;
}

.conf-img {
  display: flex;
  flex-wrap: wrap;
}
.conf-img__item {
  width: calc((100% - 40px) / 5);
  margin-bottom: 10px;
}
.conf-img__item:not(:nth-child(5n)) {
  margin-right: 10px;
}
@media screen and (max-width: 599px) {
  .conf-img__item {
    width: calc((100% - 30px) / 4);
    margin-bottom: 10px;
  }
  .conf-img__item:not(:nth-child(5n)) {
    margin-right: 0px;
  }
  .conf-img__item:not(:nth-child(4n)) {
    margin-right: 10px;
  }
}

.form-tbl__notes {
  text-indent: -1em;
  padding-left: 1em;
  margin: 10px 0 16px;
  font-size: 20px;
}
@media screen and (max-width: 599px) {
  .form-tbl__notes {
    font-size: 15px;
    margin: 6px 0 6px;
  }
}

.form-tbl__notes02 {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .form-tbl__notes02 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}

.form-privacy {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .form-privacy {
    font-size: 15px;
    text-align: left;
  }
}
.form-privacy__link {
  text-decoration: underline;
}
.form-privacy__link:hover {
  text-decoration: none;
}

.form-privacy__list {
  font-size: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 599px) {
  .form-privacy__list {
    font-size: 15px;
  }
}
.form-privacy__list__item {
  text-indent: -1em;
  padding-left: 1em;
}

.btn-base__fix {
  background-color: #999;
  display: block;
  max-width: 240px;
  margin: 30px auto;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 599px) {
  .btn-base__fix {
    padding: 10px 10px;
    max-width: 200px;
    margin-top: 20px;
    font-size: 16px;
  }
}
.btn-base__fix::after {
  content: "";
  border-width: 6px 10px 6px 0px;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  top: calc(50% - 8px);
  left: 25px;
}
@media screen and (max-width: 599px) {
  .btn-base__fix::after {
    border-width: 5px 8px 5px 0px;
    top: calc(50% - 7px);
    left: 25px;
  }
}
.btn-base__fix:hover {
  background-color: #bbb;
  transform: translateY(3px);
}

/*--------------------------------------------------------
_wysiwyg
----------------------------------------------------------*/
.wysiwyg {
  font-size: 20px;
  line-height: 2;
  color: #000;
  text-align: justify;
  /*各テンプレートを囲むbox【必須】*/
  /*本文テキスト・写真回り込み処理*/
  /*背景ありの処理*/
  /*ボタン*/
  /*写真の処理*/
  /*youtube*/
  /*区切り線*/
  /*以下テンプレート外*/
}
@media screen and (max-width: 599px) {
  .wysiwyg {
    font-size: 17px;
    line-height: 1.77;
  }
}
.wysiwyg a:not([class]) {
  color: #b6d56a;
  text-decoration: underline;
}
.wysiwyg a:not([class]):hover {
  text-decoration: none;
}
.wysiwyg img:not([class]) {
  width: auto;
  max-width: 100%;
  height: auto;
}
.wysiwyg .box {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box {
    margin-bottom: 30px;
  }
}
.wysiwyg .box:last-child {
  margin-bottom: 0;
}
.wysiwyg .box .title-line, .wysiwyg .box .title-obi {
  margin-bottom: -30px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box .title-line, .wysiwyg .box .title-obi {
    margin-bottom: -15px;
  }
}
.wysiwyg .box .title-bold {
  margin-bottom: -35px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box .title-bold {
    margin-bottom: -18px;
  }
}
.wysiwyg .box .copy-mincho, .wysiwyg .box .copy-bold {
  margin-bottom: -38px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box .copy-mincho, .wysiwyg .box .copy-bold {
    margin-bottom: -20px;
  }
}
.wysiwyg .text {
  font-size: 20px;
  line-height: 2;
  color: #000;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .wysiwyg .text {
    font-size: 17px;
    line-height: 1.77;
  }
}
.wysiwyg .img-right {
  margin: 10px 0 20px 20px;
  width: auto;
  max-width: 40%;
  float: right;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-right {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-right img {
    display: block;
    margin: 0 auto;
  }
}
.wysiwyg .img-left {
  margin: 10px 20px 20px 0;
  width: auto;
  max-width: 40%;
  float: left;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-left {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-left img {
    display: block;
    margin: 0 auto;
  }
}
.wysiwyg .box-gray {
  padding: 35px 40px;
  background-color: #f3f3f3;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box-gray {
    padding: 24px 25px 25px;
  }
}
.wysiwyg .box-green {
  padding: 35px 40px;
  background-color: rgba(182, 213, 106, 0.1);
}
@media screen and (max-width: 599px) {
  .wysiwyg .box-green {
    padding: 24px 25px 25px;
  }
}
.wysiwyg .box-red {
  padding: 35px 40px;
  background-color: #ffeef3;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box-red {
    padding: 24px 25px 25px;
  }
}
.wysiwyg .btn-wrapper {
  text-align: center;
}
.wysiwyg .btn-wrapper .btn-base {
  margin: 0 auto;
  padding: 25px 60px;
  min-width: 320px;
  max-width: 100%;
  width: auto;
  height: auto;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: #333;
  position: relative;
  display: inline-block;
  border: 0;
}
@media screen and (max-width: 599px) {
  .wysiwyg .btn-wrapper .btn-base {
    padding: 20px 40px;
    min-width: 250px;
    max-width: 100%;
    font-size: 18px;
  }
}
.wysiwyg .btn-wrapper .btn-base::before {
  content: "";
  margin: 0 auto;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 1px solid #fff;
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  transition: 0.2s;
}
.wysiwyg .btn-wrapper .btn-base::after {
  content: "";
  border-width: 8px 0 8px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: calc(50% - 8px);
  right: 25px;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .wysiwyg .btn-wrapper .btn-base::after {
    border-width: 7px 0 7px 10px;
    top: calc(50% - 7px);
    right: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .wysiwyg .btn-wrapper .btn-base:hover {
    color: #000;
    background-color: #b6d56a;
    transform: translateY(3px);
  }
  .wysiwyg .btn-wrapper .btn-base:hover::before {
    border: 1px solid #000;
  }
  .wysiwyg .btn-wrapper .btn-base:hover::after {
    border-color: transparent transparent transparent #000;
  }
}
.wysiwyg .photo-3 {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.wysiwyg .photo-3::after {
  content: none;
}
.wysiwyg .photo-3 li {
  margin-left: 20px;
  width: calc((100% - 40px) / 3);
  text-align: center;
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-3 li {
    margin-left: 4px;
    width: calc((100% - 8px) / 3);
  }
}
.wysiwyg .photo-3 li:first-child {
  margin-left: 0;
}
.wysiwyg .photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.wysiwyg .photo-2::after {
  content: none;
}
.wysiwyg .photo-2 li {
  width: calc((100% - 20px) / 2);
  text-align: center;
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-2 li {
    width: calc((100% - 4px) / 2);
  }
}
.wysiwyg .photo-2 li img {
  width: 100%;
}
.wysiwyg .photo-1 {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.wysiwyg .photo-1 img {
  width: 100%;
}
.wysiwyg .caption {
  display: block;
  margin-top: 10px;
  color: #000;
  font-size: 16px;
  line-height: 1.3e;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .wysiwyg .caption {
    margin-top: 5px;
    font-size: 13px;
  }
}
.wysiwyg .youtube-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  position: relative;
}
.wysiwyg .youtube-wrapper::before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
.wysiwyg .youtube-wrapper iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.wysiwyg .line {
  border-top: 1px solid #ccc;
}
.wysiwyg .left {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.wysiwyg .center {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.wysiwyg .right {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
.wysiwyg h1:not([class]) {
  font-size: 240%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.wysiwyg h2:not([class]) {
  font-size: 180%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  border-bottom: none;
}
.wysiwyg h3:not([class]) {
  font-size: 140%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.wysiwyg h4:not([class]) {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg h5:not([class]) {
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg h6:not([class]) {
  font-size: 82%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg ul:not([class]) {
  padding-left: 40px;
  list-style-type: disc;
}
.wysiwyg ol:not([class]) {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
.wysiwyg blockquote {
  padding-left: 1em;
}
.wysiwyg table:not([class]) {
  font-size: 100%;
  border-collapse: collapse;
}
.wysiwyg hr {
  display: block;
}
.wysiwyg em {
  font-style: italic !important;
}
.wysiwyg strong {
  font-weight: bold !important;
}
.wysiwyg em strong, .wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}

.btn-back {
  margin: 50px -60px -120px;
  padding: 60px 60px 120px;
  background-color: #f3f3f3;
}
@media screen and (max-width: 599px) {
  .btn-back {
    margin: 40px -30px -70px;
    padding: 35px 30px 70px;
  }
}
@media screen and (max-width: 599px) {
  .btn-back .btn-base {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .btn-back .btn-base:hover {
    color: #000;
    background-color: #b6d56a;
    transform: translateY(3px);
  }
  .btn-back .btn-base:hover::before {
    border: 1px solid #000;
  }
  .btn-back .btn-base:hover::after {
    border-color: transparent #000 transparent transparent;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

/*
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*/
.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: -50px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .slick-dots {
    bottom: -30px;
  }
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 0 0 20px;
  padding: 0;
}
@media screen and (max-width: 599px) {
  .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 0 0 15px;
  }
}
.slick-dots li:first-child {
  margin-left: 0;
}
.slick-dots li.slick-active button {
  background-color: #000;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #999;
  border: none;
  border-radius: 50%;
  transition: 0.5s;
}
@media screen and (max-width: 599px) {
  .slick-dots li button {
    width: 12px;
    height: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .slick-dots li button:hover {
    background-color: #000;
  }
}

/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 40px;
}
@media screen and (max-width: 599px) {
  .remodal-wrapper {
    padding: 10px;
  }
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 30px 20px 20px;
  transform: translate3d(0, 0, 0);
  text-align: left;
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal {
  max-width: 800px;
  padding: 0;
  box-sizing: border-box;
}

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 32px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

.top-junbi {
  width: 100%;
  min-height: calc(100vh - 196px - 140px);
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .top-junbi {
    min-height: calc(100vh - 116px - 91px);
    font-size: 16px;
  }
}

.top-main {
  margin: 0;
}
.top-main div {
  line-height: 0.1;
}

.top-bnrs-list {
  margin: 20px 0 20px !important;
}
@media screen and (max-width: 599px) {
  .top-bnrs-list {
    margin: 10px 0 10px !important;
  }
}
.top-bnrs-list__item {
  padding: 0 10px;
}
@media screen and (max-width: 599px) {
  .top-bnrs-list__item {
    padding: 0 8px;
  }
}
.top-bnrs-list .slick-dots {
  position: absolute;
  bottom: -30px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .top-bnrs-list .slick-dots {
    bottom: -25px;
  }
}
.top-bnrs-list .slick-dots li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 0 0 10px;
  padding: 0;
}
@media screen and (max-width: 599px) {
  .top-bnrs-list .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 0 0 7px;
  }
}
.top-bnrs-list .slick-dots li:first-child {
  margin-left: 0;
}
.top-bnrs-list .slick-dots li.slick-active button {
  background-color: #000;
}
.top-bnrs-list .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #b6d56a;
  border: none;
  border-radius: 50%;
  transition: 0.5s;
  aspect-ratio: 10/10;
}
@media screen and (min-width: 1025px) {
  .top-bnrs-list .slick-dots li button:hover {
    background-color: #000;
  }
}

.top-movie {
  margin-bottom: -20px;
  padding: 40px 40px 0;
  line-height: 0.1;
}
@media screen and (max-width: 599px) {
  .top-movie {
    margin-bottom: -10px;
    padding: 20px 20px 0;
  }
}
.top-movie video {
  width: 100%;
}

.top-movie02 {
  line-height: 0.1;
}
.top-movie02 video {
  width: 100%;
}

.top-event {
  padding: 0 60px 100px;
}
@media screen and (max-width: 599px) {
  .top-event {
    padding: 0 30px 60px;
  }
}
.top-event__btn {
  margin-top: 40px;
}

.top-news {
  padding: 0 60px 100px;
}
@media screen and (max-width: 599px) {
  .top-news {
    padding: 0 30px 60px;
  }
}
.top-news__btn {
  margin-top: 40px;
}

.top-about {
  padding: 80px 60px 100px;
  background-color: #f3f3f3;
}
@media screen and (max-width: 599px) {
  .top-about {
    padding: 45px 30px 60px;
  }
}
.top-about__list__item {
  margin-top: 30px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-about__list__item {
    margin-top: 20px;
  }
}
.top-about__list__item:first-child {
  margin-top: 0;
}
.top-about__list__item::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #b6d56a;
  background-image: url(../img/common/bg_bias.webp);
  background-repeat: repeat;
  background-size: 23px auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .top-about__list__item::before {
    background-size: 12px auto;
  }
}
.top-about__list__item__inner {
  padding: 40px 45px 60px;
}
@media screen and (max-width: 599px) {
  .top-about__list__item__inner {
    padding: 25px 25px 40px;
  }
}
.top-about__list__item__inner__title {
  font-size: 18px;
  line-height: 1;
  color: #b6d56a;
  font-family: "Arial", sans-serif !important;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .top-about__list__item__inner__title {
    font-size: 14px;
  }
}
.top-about__list__item__inner__title .number {
  font-weight: 700;
}
.top-about__list__item__inner__copy {
  margin-top: 10px;
  font-size: 25px;
  line-height: 1.5;
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .top-about__list__item__inner__copy {
    font-size: 19px;
    letter-spacing: normal;
  }
}
.top-about__list__item__inner .text-base {
  margin-top: 5px;
}

.top-faq {
  padding: 80px 60px 100px;
}
@media screen and (max-width: 599px) {
  .top-faq {
    padding: 45px 30px 60px;
  }
}
.top-faq__list__item {
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .top-faq__list__item {
    margin-top: 5px;
  }
}
.top-faq__list__item:first-child {
  margin-top: 0;
}
.top-faq__list__item__q {
  padding: 20px 95px;
  font-size: 20px;
  line-height: 1.5;
  color: #000;
  background-color: #f3f3f3;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
.top-faq__list__item__q::before {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #abc;
  position: absolute;
  right: 20px;
  top: calc(50% - 1px);
}
.top-faq__list__item__q::after {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #abc;
  position: absolute;
  right: 20px;
  top: calc(50% - 1px);
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .top-faq__list__item__q {
    padding: 16px 36px 14px 55px;
    font-size: 17px;
    text-align: justify;
  }
  .top-faq__list__item__q::before {
    width: 16px;
    height: 2px;
    right: 10px;
  }
  .top-faq__list__item__q::after {
    width: 16px;
    height: 2px;
    right: 10px;
  }
}
.top-faq__list__item__q.close::after {
  transform: rotate(90deg);
}
@media screen and (min-width: 1025px) {
  .top-faq__list__item__q:hover {
    background-color: #e6e6e6;
  }
}
.top-faq__list__item__q__icon {
  width: 70px;
  height: 100%;
  background-color: #b6d56a;
  background-image: url(../img/common/q.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .top-faq__list__item__q__icon {
    width: 40px;
  }
}
.top-faq__list__item__a {
  padding: 20px 0 30px;
  font-size: 18px;
  line-height: 2;
  color: #000;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .top-faq__list__item__a {
    padding: 15px 0 20px;
    font-size: 16px;
    line-height: 1.8;
  }
}
.top-faq__list__item__list {
  margin-top: -10px;
  margin-bottom: 30px;
  padding: 25px 40px 30px;
  background-color: rgba(182, 213, 106, 0.15);
}
@media screen and (max-width: 599px) {
  .top-faq__list__item__list {
    margin-bottom: 20px;
    padding: 15px 20px 20px;
  }
}
.top-faq__list__item__list__item {
  margin-top: 10px;
  padding-left: 1em;
  font-size: 17px;
  line-height: 1.6;
  color: #000;
  position: relative;
}
.top-faq__list__item__list__item::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #b6d56a;
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 599px) {
  .top-faq__list__item__list__item {
    margin-top: 5px;
    font-size: 16px;
  }
  .top-faq__list__item__list__item::before {
    width: 6px;
    height: 6px;
    top: 8px;
  }
}

.top-bnrs {
  padding: 60px;
  background-color: #e6e6e6;
}
@media screen and (max-width: 599px) {
  .top-bnrs {
    padding: 25px 10px 22px;
  }
}
.top-bnrs__text {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .top-bnrs__text {
    font-size: 16px;
  }
}
.top-bnrs__link {
  width: 100%;
  height: 100px;
  font-size: 24px;
  line-height: 101px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: #789;
  position: relative;
  display: block;
}
.top-bnrs__link::before {
  content: "";
  margin: auto auto;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.top-bnrs__link::after {
  content: "";
  margin: auto;
  border-width: 8px 0 8px 14px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 35px;
}
@media screen and (max-width: 599px) {
  .top-bnrs__link {
    padding-right: 10px;
    height: 70px;
    font-size: 16px;
    line-height: 71px;
  }
  .top-bnrs__link::before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
  .top-bnrs__link::after {
    border-width: 4px 0 4px 7px;
    right: 18px;
  }
}
@media screen and (max-width: 320px) {
  .top-bnrs__link {
    font-size: 13px;
  }
}
@media screen and (min-width: 1025px) {
  .top-bnrs__link:hover {
    background-color: #000;
    transform: translateY(3px);
  }
}

.top-map {
  margin: 30px 0 80px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-map {
    margin: 20px 0 60px;
  }
}
.top-map__link {
  display: block;
  position: absolute;
  background-color: transparent;
  border: none;
}
@media screen and (min-width: 1025px) {
  .top-map__link:hover {
    transform: translateY(3px);
  }
}
.top-map__link.hokkaido {
  width: 25%;
  top: 6.94%;
  left: 41.55%;
}
.top-map__link.tohoku {
  width: 20.689%;
  top: 53.36%;
  right: 0;
}
.top-map__link.kanto {
  width: 18.448%;
  top: 70.06%;
  right: 6.2%;
}
.top-map__link.chubu {
  width: 18.275%;
  top: 35.357%;
  left: 38.965%;
}
.top-map__link.kansai {
  width: 19.827%;
  bottom: 8.8937%;
  left: 51.8965%;
}
.top-map__link.chugoku {
  width: 23.62%;
  top: 49.24%;
  left: 19.137%;
}
.top-map__link.shikoku {
  width: 22.24%;
  bottom: 0%;
  left: 22.586%;
}
.top-map__link.kyushu {
  width: 20.589%;
  top: 62.255%;
  left: 0%;
}

.salon-search {
  padding: 70px 60px 120px;
}
@media screen and (max-width: 599px) {
  .salon-search {
    padding: 45px 30px 70px;
  }
}
.salon-search__list {
  margin-top: 25px;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .salon-search__list {
    margin-top: 20px;
    margin-bottom: 25px;
  }
}
.salon-search__list__item {
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .salon-search__list__item {
    margin-top: 5px;
  }
}
.salon-search__list__item:first-child {
  margin-top: 0;
}
.salon-search__features {
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px dotted #bbb;
}
@media screen and (max-width: 599px) {
  .salon-search__features {
    margin: 50px -30px 0;
    padding: 45px 30px 0;
  }
}

.salon-input {
  padding-left: 57px !important;
  width: 100%;
  height: 70px !important;
  font-size: 20px !important;
  color: #000 !important;
  background-color: #f3f3f3 !important;
  border: none !important;
  border-radius: 5px !important;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .salon-input {
    padding-left: 44px !important;
    width: 100%;
    height: 60px !important;
    font-size: 16px !important;
    border-radius: 3px !important;
  }
}
@media screen and (min-width: 1025px) {
  .salon-input:hover {
    background-color: #e6e6e6 !important;
  }
}
.salon-input--area {
  background-image: url(../img/common/icon_area.svg);
  background-size: 25px auto;
  background-position: 20px 20px;
}
@media screen and (max-width: 599px) {
  .salon-input--area {
    background-size: 20px auto;
    background-position: 14px 17px;
  }
}
.salon-input--scale {
  background-image: url(../img/common/icon_scale.svg);
  background-size: 27px auto;
  background-position: 19px 19px;
}
@media screen and (max-width: 599px) {
  .salon-input--scale {
    background-size: 21.6px auto;
    background-position: 13px 16px;
  }
}
.salon-input--keyword {
  background-image: url(../img/common/icon_keyword.svg);
  background-size: 29px auto;
  background-position: 18px 24px;
  cursor: auto;
}
@media screen and (max-width: 599px) {
  .salon-input--keyword {
    background-size: 23.2px auto;
    background-position: 13px 20px;
  }
}
@media screen and (min-width: 1025px) {
  .salon-input--keyword:hover {
    background-color: #f3f3f3 !important;
  }
}
.salon-input--tag {
  background-image: url(../img/common/icon_tag.svg);
  background-size: 30px auto;
  background-position: 19px 20px;
}
@media screen and (max-width: 599px) {
  .salon-input--tag {
    background-size: 24px auto;
    background-position: 13px 18px;
  }
}

.salon-select {
  padding-left: 20px !important;
  width: 100%;
  height: 70px !important;
  font-size: 18px !important;
  color: #000 !important;
  background-color: #f3f3f3 !important;
  border: none !important;
  border-radius: 5px !important;
  background-image: url(../img/common/select_arrow.svg);
  background-size: 24px auto;
  background-position: right 20px top 50%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .salon-select {
    padding-left: 15px !important;
    width: 100%;
    height: 60px !important;
    font-size: 16px !important;
    border-radius: 3px !important;
    background-size: 18px auto;
    background-position: right 15px top 50%;
  }
}

.input-hide {
  display: none;
}

.salon-label {
  padding-left: 45px;
  font-size: 18px;
  line-height: 30px;
  color: #000;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  display: block;
}
@media screen and (max-width: 900px) {
  .salon-label {
    padding-left: 40px;
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .salon-label {
    padding-left: 35px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (min-width: 1025px) {
  .salon-label:hover {
    color: #b6d56a;
  }
}
.salon-label::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: #eee;
  position: absolute;
  top: -3px;
  left: 0;
}
@media screen and (max-width: 599px) {
  .salon-label::before {
    top: -1px;
    width: 24px;
    height: 24px;
  }
}
.salon-label::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #333;
  position: absolute;
  top: 7px;
  left: 10px;
  transition: 0.5s;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .salon-label::after {
    width: 8px;
    height: 8px;
    top: 7px;
    left: 8px;
  }
}

input[type=checkbox].input-hide:checked + .salon-label::after {
  opacity: 1;
}

::-moz-placeholder {
  color: #bbb;
}

::placeholder {
  color: #bbb;
}

.salon-remodal {
  background-color: #fff;
}
.salon-remodal__title {
  padding-top: 95px;
  padding-left: 0.06em;
  width: 100%;
  height: 150px;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: #b6d56a;
}
@media screen and (max-width: 599px) {
  .salon-remodal__title {
    padding: 23px 0 20px;
    height: auto;
    font-size: 22px;
  }
}
.salon-remodal__title::before {
  content: "";
  margin: 0 auto;
  width: 60px;
  height: 60px;
  background-color: #fff;
  background-repeat: no-repeat;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 25px;
}
@media screen and (max-width: 599px) {
  .salon-remodal__title::before {
    width: 40px;
    height: 40px;
    top: 20px;
    display: none;
  }
}
.salon-remodal__title.area::before {
  background-image: url(../img/common/icon_area.svg);
  background-size: 41.67% auto;
  background-position: 50% 55%;
}
.salon-remodal__title.map::before {
  background-image: url(../img/common/icon_map.svg);
  background-size: 50% auto;
  background-position: 46% 50%;
}
.salon-remodal__title.scale::before {
  background-image: url(../img/common/icon_scale.svg);
  background-size: 42% auto;
  background-position: 50% 50%;
}
.salon-remodal__title.tag::before {
  background-image: url(../img/common/icon_tag.svg);
  background-size: 43.33% auto;
  background-position: 54% 54%;
}
.salon-remodal__inner {
  padding: 50px 70px 80px;
}
@media screen and (max-width: 900px) {
  .salon-remodal__inner {
    padding: 40px 50px 70px;
  }
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner {
    padding: 20px 25px 40px;
  }
}
.salon-remodal__inner__text {
  padding-left: 0.06em;
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__text {
    padding-left: 0;
    font-size: 15px;
    text-align: justify;
  }
}
.salon-remodal__inner__caution {
  margin-top: 10px;
  padding-left: 0.06em;
  font-size: 20px;
  line-height: 1.6;
  color: #789;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__caution {
    margin-top: 5px;
    padding-left: 0;
    font-size: 12px;
    text-align: justify;
  }
}
.salon-remodal__inner__area-list {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__area-list {
    margin-top: 15px;
  }
}
.salon-remodal__inner__area-list__item {
  width: calc((100% - 40px) / 2);
  position: relative;
}
.salon-remodal__inner__area-list__item:first-child::before {
  content: "";
  width: 40px;
  height: 70px;
  position: absolute;
  top: 0;
  right: -40px;
  background-image: url(../img/common/select_next.svg);
  background-position: 50% 50%;
  background-size: 57.5% auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__area-list__item {
    width: 100%;
  }
  .salon-remodal__inner__area-list__item:first-child {
    margin-bottom: 30px;
  }
  .salon-remodal__inner__area-list__item:first-child::before {
    margin: 0 auto;
    height: 30px;
    width: 30px;
    background-size: 65% auto;
    right: 0;
    left: 0;
    top: auto;
    bottom: -30px;
    transform: rotate(90deg);
  }
}
.salon-remodal__inner__area-list02 {
  margin-top: 10px;
  margin-left: -30px;
  display: block;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__area-list02 {
    margin-left: -20px;
  }
}
.salon-remodal__inner__area-list02__item {
  margin-top: 15px;
  margin-left: 30px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__area-list02__item {
    margin-top: 10px;
    margin-left: 20px;
  }
}
.salon-remodal__inner__scale {
  margin: 40px auto 0;
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__scale {
    margin-top: 15px;
  }
}
.salon-remodal__inner__features-list {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__features-list {
    margin-top: 0;
  }
}
.salon-remodal__inner__features-list__item {
  margin-top: 25px;
  width: 48%;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__features-list__item {
    margin-top: 15px;
    width: 100%;
  }
}
.salon-remodal__inner__map-list {
  margin: 10px auto 0;
  width: 100%;
  max-width: 580px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__map-list {
    margin-top: 10px;
  }
}
.salon-remodal__inner__map-list__item {
  margin-top: 10px;
  margin-left: 10px;
  width: calc((100% - 10px) / 2);
  position: relative;
}
.salon-remodal__inner__map-list__item:nth-child(2n-1) {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__map-list__item {
    margin-top: 5px;
    margin-left: 5px;
    width: calc((100% - 5px) / 2);
    position: relative;
  }
}
.salon-remodal__inner__map-list__item__link {
  padding-right: 0.5em;
  width: 100%;
  height: 60px;
  font-size: 18px;
  line-height: 61px;
  color: #333;
  font-weight: 700;
  text-align: center;
  background-color: #f3f3f3;
  background-image: url(../img/common/btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: right 20px top 50%;
  border-radius: 5px;
  display: block;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__map-list__item__link {
    height: 50px;
    font-size: 16px;
    line-height: 51px;
    background-size: 15px auto;
    background-position: right 13px top 50%;
    border-radius: 3px;
  }
}
@media screen and (max-width: 320px) {
  .salon-remodal__inner__map-list__item__link {
    font-size: 15px;
  }
}
@media screen and (min-width: 1025px) {
  .salon-remodal__inner__map-list__item__link:hover {
    background-color: #e6e6e6;
    transform: translateY(3px);
  }
}
.salon-remodal__inner__bnrs {
  margin: 20px auto 50px !important;
  max-width: 580px;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__bnrs {
    margin: 10px auto 45px !important;
  }
}
.salon-remodal__inner__bnrs__item {
  padding-bottom: 10px;
}
.salon-remodal__inner__bnrs__item__link {
  padding: 15px 45px 15px 15px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  background-color: #f3f3f3;
  background-image: url(../img/common/btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: right 20px top 50%;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__bnrs__item__link {
    padding: 20px 20px 30px 20px;
    background-size: 15px auto;
    background-position: right 15px bottom 15px;
  }
}
@media screen and (min-width: 1025px) {
  .salon-remodal__inner__bnrs__item__link:hover {
    transform: translateY(3px);
    background-color: #e6e6e6;
  }
}
.salon-remodal__inner__bnrs__item__bnr {
  width: 45%;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__bnrs__item__bnr {
    width: 100%;
  }
}
.salon-remodal__inner__bnrs__item__text {
  padding: 10px 10px 10px 30px;
  width: 55%;
  font-size: 17px;
  line-height: 1.7;
  color: #000;
  text-align: justify;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__bnrs__item__text {
    margin-top: 10px;
    padding: 0;
    width: 100%;
    font-size: 16px;
  }
}
.salon-remodal__inner__bnrs .slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__bnrs .slick-dots {
    bottom: -20px;
  }
}
.salon-remodal__inner__bnrs .slick-dots li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 0 0 10px;
  padding: 0;
}
@media screen and (max-width: 599px) {
  .salon-remodal__inner__bnrs .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 0 0 7px;
  }
}
.salon-remodal__inner__bnrs .slick-dots li:first-child {
  margin-left: 0;
}
.salon-remodal__inner__bnrs .slick-dots li.slick-active button {
  background-color: #000;
}
.salon-remodal__inner__bnrs .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #b6d56a;
  border: none;
  border-radius: 50%;
  transition: 0.5s;
  aspect-ratio: 10/10;
}
@media screen and (min-width: 1025px) {
  .salon-remodal__inner__bnrs .slick-dots li button:hover {
    background-color: #000;
  }
}
.salon-remodal .remodal-close-btn {
  margin: 40px auto 0;
  padding-left: 1.2em;
  width: 280px;
  height: 70px;
  font-size: 22px;
  line-height: 71px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1em;
  text-align: center;
  background-color: #333;
  border: none;
  border-radius: 5px;
  display: block;
  position: relative;
}
@media screen and (max-width: 599px) {
  .salon-remodal .remodal-close-btn {
    margin: 25px auto 0;
    width: 220px;
    height: 60px;
    font-size: 18px;
    line-height: 61px;
    border-radius: 3px;
  }
}
.salon-remodal .remodal-close-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 10px);
  left: 25px;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .salon-remodal .remodal-close-btn::before {
    width: 16px;
    height: 16px;
    border: 3px solid #fff;
    top: calc(50% - 8px);
    left: 20px;
  }
}
.salon-remodal .remodal-close-btn.close {
  letter-spacing: 0.3em;
}
.salon-remodal .remodal-close-btn.close::before {
  content: "";
  width: 4px;
  height: 26px;
  background-color: #fff;
  border: none;
  border-radius: 0;
  position: absolute;
  top: calc(50% - 13px);
  left: 35px;
  transform: rotate(45deg);
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .salon-remodal .remodal-close-btn.close::before {
    width: 3px;
    height: 20px;
    border: none;
    top: calc(50% - 10px);
    left: 28px;
  }
}
.salon-remodal .remodal-close-btn.close::after {
  content: "";
  width: 4px;
  height: 26px;
  background-color: #fff;
  border: none;
  border-radius: 0;
  position: absolute;
  top: calc(50% - 13px);
  left: 35px;
  transform: rotate(-45deg);
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .salon-remodal .remodal-close-btn.close::after {
    width: 3px;
    height: 20px;
    border: none;
    top: calc(50% - 10px);
    left: 28px;
  }
}
@media screen and (min-width: 1025px) {
  .salon-remodal .remodal-close-btn:hover {
    background-color: #789;
    transform: translateY(3px);
  }
}

.salon-results {
  padding: 70px 60px 120px;
  background-color: #f3f3f3;
  position: relative;
  /*
  &__btn{
      padding-left: 30px;
      font-size: 17px;
      line-height: 1;
      color: $cl-black;
      font-weight: 700;
      position: relative;
      display: block;
      &::before{
          content: "";
          top: -4px;
          left: 0;
          width: 22px;
          height: 22px;
          background-color: $cl-black;
          border-radius: 50%;
          position: absolute;
          transition: 0.2s;
      }
      &::after{
          content: "";
          border-width: 4px 0 4px 7px;
          border-style: solid;
          border-color: transparent transparent transparent #fff;
          position: absolute;
          top: 3px;
          left: 9px;
          transition: 0.2s;
      }
      @include mq(sp){
          padding-left: 26px;
          font-size: 16px;
          &::before{
              top: -2px;
              width: 20px;
              height: 20px;
          }
          &::after{
              border-width: 3px 0 3px 6px;
              top: 5px;
              left: 8px;
          }
      }
      &:hover{
          @include mq(pc){
              color: $cl-l-gray;
              transform: translateX( 3px );
              &::before{
                  background-color: $cl-l-gray;
              }
          }
      }
  }
  */
}
@media screen and (max-width: 599px) {
  .salon-results {
    padding: 45px 30px 70px;
  }
}
.salon-results__text {
  padding-left: 0.06em;
  font-size: 24px;
  line-height: 1;
  color: #000;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .salon-results__text {
    font-size: 19px;
  }
}
.salon-results__text .number {
  font-size: 1.5em;
  color: #ee66a3;
  vertical-align: -5%;
}
.salon-results__text__sub {
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .salon-results__text__sub {
    margin-top: 8px;
    font-size: 17px;
    display: block;
  }
}
.salon-results__conditions {
  margin-top: 25px;
  padding: 20px 10px 30px 40px;
  background-color: #e9e9e9;
}
@media screen and (max-width: 599px) {
  .salon-results__conditions {
    margin-top: 20px;
    padding: 15px 5px 20px 25px;
  }
}
.salon-results__conditions__item {
  margin-top: 10px;
  margin-right: 30px;
  padding-left: 1em;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  position: relative;
  display: inline-block;
}
.salon-results__conditions__item::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #b6d56a;
  position: absolute;
  top: 9px;
  left: 0;
}
@media screen and (max-width: 599px) {
  .salon-results__conditions__item {
    margin-top: 5px;
    margin-right: 20px;
    font-size: 15px;
  }
  .salon-results__conditions__item::before {
    width: 6px;
    height: 6px;
    top: 7px;
  }
}
.salon-results__btn-wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .salon-results__btn-wrapper {
    margin-top: 15px;
  }
}
.salon-results .btn-base {
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .salon-results .btn-base {
    margin-top: 15px;
  }
}
.salon-results__btn {
  padding-left: 18px;
  width: 200px;
  height: 40px;
  font-size: 17px;
  line-height: 42px;
  color: #000;
  font-weight: 700;
  text-align: center;
  background-color: #b6d56a;
  border-radius: 20px;
  position: relative;
  display: block;
}
.salon-results__btn::before {
  content: "";
  top: 9px;
  left: 9px;
  width: 22px;
  height: 22px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  transition: 0.2s;
}
.salon-results__btn::after {
  content: "";
  border-width: 4px 0 4px 7px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 16px;
  left: 18px;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  .salon-results__btn:hover {
    color: #fff;
    background-color: #789;
    transform: translateY(3px);
  }
  .salon-results__btn:hover::before {
    background-color: #fff;
  }
  .salon-results__btn:hover::after {
    border-color: transparent transparent transparent #789;
  }
}
.salon-results__list {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.salon-results__list__item {
  margin-top: 30px;
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 599px) {
  .salon-results__list__item {
    margin-top: 20px;
    width: 100%;
  }
}
.salon-results__list__item__link {
  height: 100%;
  background-color: #fff;
  display: block;
  position: relative;
}
.salon-results__list__item__link::before {
  content: "";
  border-width: 0 0 16px 16px;
  border-style: solid;
  border-color: transparent transparent #b6d56a transparent;
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: 0.2s;
  z-index: 2;
}
@media screen and (max-width: 599px) {
  .salon-results__list__item__link::before {
    border-width: 0 0 14px 14px;
    right: 7px;
    bottom: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .salon-results__list__item__link:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  }
}
.salon-results__list__item__link__photo {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.salon-results__list__item__link__photo::before {
  content: "";
  padding-top: 61.8%;
  display: block;
}
.salon-results__list__item__link__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.salon-results__list__item__link__inner {
  padding: 25px 25px 30px;
}
.salon-results__list__item__link__inner__name {
  font-size: 18px;
  line-height: 1.3;
  color: #000;
  font-weight: 700;
}
.salon-results__list__item__link__inner__area {
  margin-top: 6px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.salon-results__list__item__link__inner__area__item {
  font-size: 14px;
  line-height: 1.5;
  color: #789;
  letter-spacing: 0;
}
.salon-results__list__item__link__inner__area__item::after {
  content: "／";
  margin: 0;
  padding: 0;
}
.salon-results__list__item__link__inner__area__item:last-child::after {
  content: "";
  display: none;
}
.salon-results__list__item__link__inner__shop {
  margin-top: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.salon-results__list__item__link__inner__shop__item {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  letter-spacing: 0;
}
.salon-results__list__item__link__inner__shop__item::after {
  content: "／";
  margin: 0;
  padding: 0;
}
.salon-results__list__item__link__inner__shop__item:last-child::after {
  content: "";
  display: none;
}

.salon-hard {
  padding: 70px 60px 60px;
}
@media screen and (max-width: 599px) {
  .salon-hard {
    padding: 45px 30px 30px;
  }
}
.salon-hard__name {
  font-size: 28px;
  line-height: 1.5;
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .salon-hard__name {
    font-size: 22px;
  }
}
.salon-hard__address {
  font-size: 20px;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 599px) {
  .salon-hard__address {
    font-size: 15px;
  }
}
.salon-hard__logo-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.salon-hard__logo-list__item {
  margin-top: 10px;
  margin-left: 10px;
  width: calc((100% - 20px) / 3);
  position: relative;
}
.salon-hard__logo-list__item::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.salon-hard__logo-list__item:first-child {
  margin: 0 auto 0;
  width: 70%;
}
.salon-hard__logo-list__item:nth-child(3n-1) {
  margin-left: 0;
}
.salon-hard__logo-list__item img {
  margin: 0 auto;
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.salon-detail {
  background-color: #b6d56a;
}
.salon-detail__photos {
  width: 100%;
  height: 700px;
}
@media screen and (max-width: 700px) {
  .salon-detail__photos {
    height: 100vw;
  }
}
.salon-detail__photos__item {
  height: 100%;
  background-color: #e6e6e6;
}
.salon-detail__photos__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.salon-detail__photos div {
  height: 100%;
  line-height: 0.1;
}
.salon-detail__inner {
  padding: 100px 60px;
}
@media screen and (max-width: 599px) {
  .salon-detail__inner {
    padding: 70px 30px 60px;
  }
}
.salon-detail__inner .text-base {
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .salon-detail__inner .text-base {
    margin-bottom: 25px;
  }
}
.salon-detail__inner__btns {
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  .salon-detail__inner__btns {
    margin-top: 50px;
  }
}
.salon-detail__inner__btns__item {
  margin-top: 20px;
  text-align: center;
}
.salon-detail__inner__btns__item:first-child {
  margin-top: 0;
}

.salon-recruitment {
  padding: 80px 60px 100px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .salon-recruitment {
    padding: 50px 30px 50px;
  }
}

.salon-profile {
  padding: 80px 60px 100px;
  background-color: #e6e6e6;
}
@media screen and (max-width: 599px) {
  .salon-profile {
    padding: 50px 30px 50px;
  }
}
.salon-profile .tag-list {
  margin-top: 5px;
}
.salon-profile .tag-list__item {
  background-color: #fff;
}

.visit-salon {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 3px solid #000;
  line-height: 1.2;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .visit-salon {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .visit-salon {
    font-size: 18px;
    border-bottom: 2px solid #000;
  }
}

@media screen and (max-width: 599px) {
  .event-list {
    margin: 0 -30px;
  }
}
.event-list__item {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px dotted #bbb;
}
@media screen and (max-width: 599px) {
  .event-list__item {
    padding: 30px 30px 40px;
  }
}
.event-list__item:first-child {
  border-top: 1px dotted #bbb;
}
.event-list__item__photo {
  width: 230px;
}
@media screen and (max-width: 599px) {
  .event-list__item__photo {
    width: 100%;
  }
}
.event-list__item__inner {
  width: calc(100% - 230px - 30px);
}
@media screen and (max-width: 599px) {
  .event-list__item__inner {
    margin-top: 20px;
    width: 100%;
  }
}
.event-list__item__inner__area {
  font-size: 15px;
  color: #789;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .event-list__item__inner__area {
    font-size: 14px;
  }
}
.event-list__item__inner__name {
  margin-top: 6px;
  font-size: 22px;
  color: #000;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 599px) {
  .event-list__item__inner__name {
    margin-top: 4px;
    font-size: 20px;
    line-height: 1.45;
  }
}
.event-list__item__inner__date__item {
  margin-top: 4px;
  margin-right: 10px;
  font-size: 17px;
  line-height: 1.55;
  color: #789;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .event-list__item__inner__date__item {
    margin-top: 5px;
    margin-right: 10px;
    font-size: 16px;
  }
}
.event-list__item__inner__date__item:first-child {
  margin-right: 0;
}
.event-list__item__inner__detail {
  margin-top: 15px;
}
@media screen and (max-width: 599px) {
  .event-list__item__inner__detail {
    margin-top: 10px;
    padding: 18px;
    background-color: #f3f3f3;
  }
}
.event-list__item__inner__detail__item {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 599px) {
  .event-list__item__inner__detail__item {
    margin-top: 10px;
  }
  .event-list__item__inner__detail__item:first-child {
    margin-top: 0;
  }
}
.event-list__item__inner__detail__item__title {
  width: 70px;
  height: 22px;
  font-size: 15px;
  line-height: 23px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: #b6d56a;
}
@media screen and (max-width: 599px) {
  .event-list__item__inner__detail__item__title {
    width: 60px;
    height: 20px;
    font-size: 13px;
    line-height: 21px;
  }
}
.event-list__item__inner__detail__item__text {
  width: calc(100% - 70px - 12px);
  font-size: 18px;
  line-height: 1.2;
  color: #000;
}
@media screen and (max-width: 599px) {
  .event-list__item__inner__detail__item__text {
    padding-top: 2px;
    width: calc(100% - 60px - 10px);
    font-size: 15px;
  }
}
.event-list__item__inner__btn {
  margin-top: 24px;
  padding-left: 30px;
  font-size: 17px;
  line-height: 1;
  color: #000;
  font-weight: 700;
  position: relative;
  display: block;
}
.event-list__item__inner__btn::before {
  content: "";
  top: -4px;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  transition: 0.2s;
}
.event-list__item__inner__btn::after {
  content: "";
  border-width: 4px 0 4px 7px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 3px;
  left: 9px;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .event-list__item__inner__btn {
    margin-top: 20px;
    padding-left: 26px;
    font-size: 16px;
  }
  .event-list__item__inner__btn::before {
    top: -2px;
    width: 20px;
    height: 20px;
  }
  .event-list__item__inner__btn::after {
    border-width: 3px 0 3px 6px;
    top: 5px;
    left: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .event-list__item__inner__btn:hover {
    color: #789;
    transform: translateX(3px);
  }
  .event-list__item__inner__btn:hover::before {
    background-color: #789;
  }
}

@media screen and (max-width: 599px) {
  .news-list {
    margin: 0 -30px;
  }
}
.news-list__item {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px dotted #bbb;
}
@media screen and (max-width: 599px) {
  .news-list__item {
    padding: 20px;
    align-items: flex-start;
  }
}
.news-list__item:first-child {
  border-top: 1px dotted #bbb;
}
.news-list__item__photo {
  width: 230px;
}
@media screen and (max-width: 599px) {
  .news-list__item__photo {
    width: 40%;
  }
}
.news-list__item__inner {
  margin-bottom: 10px;
  width: calc(100% - 230px - 30px);
}
@media screen and (max-width: 599px) {
  .news-list__item__inner {
    width: calc(60% - 20px);
  }
}
.news-list__item__inner__text {
  width: 100%;
  font-size: 19px;
  line-height: 1.7;
  color: #000;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .news-list__item__inner__text {
    font-size: 16px;
    line-height: 1.5;
  }
}
.news-list__item__inner__btn {
  margin-top: 13px;
  padding-left: 30px;
  font-size: 17px;
  line-height: 1;
  color: #000;
  font-weight: 700;
  position: relative;
  display: block;
}
.news-list__item__inner__btn::before {
  content: "";
  top: -4px;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  transition: 0.2s;
}
.news-list__item__inner__btn::after {
  content: "";
  border-width: 4px 0 4px 7px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 3px;
  left: 9px;
  transition: 0.2s;
}
@media screen and (max-width: 599px) {
  .news-list__item__inner__btn {
    margin-top: 7px;
    padding-left: 26px;
    font-size: 16px;
  }
  .news-list__item__inner__btn::before {
    top: -2px;
    width: 20px;
    height: 20px;
  }
  .news-list__item__inner__btn::after {
    border-width: 3px 0 3px 6px;
    top: 5px;
    left: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .news-list__item__inner__btn:hover {
    color: #789;
    transform: translateX(3px);
  }
  .news-list__item__inner__btn:hover::before {
    background-color: #789;
  }
}

.privacy-list {
  margin-top: 70px;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .privacy-list {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.privacy-list__item {
  padding: 40px 0 37px;
  border-bottom: 1px dotted #bbb;
}
@media screen and (max-width: 599px) {
  .privacy-list__item {
    padding: 30px 0;
  }
}
.privacy-list__item:first-child {
  border-top: 1px dotted #bbb;
}
.privacy-list__item__title {
  margin-bottom: 20px;
  width: 100%;
  font-size: 22px;
  line-height: 1;
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .privacy-list__item__title {
    margin-bottom: 15px;
    font-size: 19px;
  }
}
.privacy-list__item__list__item {
  margin-top: 15px;
  padding-left: 22px;
  font-size: 20px;
  line-height: 1.8;
  color: #000;
  text-align: justify;
  position: relative;
}
.privacy-list__item__list__item::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #b6d56a;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 2px;
}
@media screen and (max-width: 599px) {
  .privacy-list__item__list__item {
    margin-top: 13px;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.65;
  }
  .privacy-list__item__list__item::before {
    width: 10px;
    height: 10px;
    top: 9px;
    left: 1px;
  }
}
.privacy-list__item__list__item:first-child {
  margin-top: 0;
}
.privacy-list__item__list-number {
  margin-top: 22px;
  padding: 34px 40px;
  background-color: #eee;
}
@media screen and (max-width: 599px) {
  .privacy-list__item__list-number {
    margin-top: 17px;
    padding: 26px 30px;
  }
}
.privacy-list__item__list-number__item {
  margin-top: 7px;
  padding-left: 2em;
  font-size: 20px;
  line-height: 1.8;
  color: #000;
  text-indent: -2em;
  text-align: justify;
  position: relative;
}
@media screen and (max-width: 599px) {
  .privacy-list__item__list-number__item {
    margin-top: 6px;
    font-size: 18px;
    line-height: 1.65;
  }
}
.privacy-list__item__list-number__item:first-child {
  margin-top: 0;
}
.privacy-list__item__contact {
  margin-top: 22px;
  padding: 34px 40px;
  font-size: 20px;
  line-height: 1.8;
  color: #000;
  text-align: left;
  background-color: #eee;
}
@media screen and (max-width: 599px) {
  .privacy-list__item__contact {
    margin-top: 17px;
    padding: 26px 30px;
    font-size: 18px;
    line-height: 1.65;
  }
}
.privacy-list__item__contact__link {
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .privacy-list__item__contact__link:hover {
    color: #789;
  }
}/*# sourceMappingURL=style.css.map */