@charset "UTF-8";

/* ==========================================================================
    common
============================================================================= */
html {
  font-size: 62.5%;
  font-family: 'Noto Sans JP', sans-serif;
}

body {
  font-size: 1.6rem;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

/* ==========================================================================
    header
============================================================================= */
.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 2em;
}

.l-header__logo {
  margin-right: 1em;
}

@media screen and (max-width: 767.98px) {
  .l-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 1em;
  }

  .l-header__logo {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .l-header__logo+a {
    max-width: 70%;
  }
}

/* ==========================================================================
    navi
============================================================================= */
.l-nav {
  position: relative;
}

.l-nav__lst {
  background-color: #1565c0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-nav__lst li {
  cursor: pointer;
}

.l-nav__lst li.is-inactive,
.l-nav .menu>li.is-inactive {
  background-color: #bdbdbd;
  cursor: default;
}

.l-nav__lst li.is-inactive .txt,
.l-nav .menu>li.is-inactive .txt {
  pointer-events: none;
  color: #cfcfcf;
}

.l-nav__lst li.is-inactive:hover,
.l-nav .menu>li.is-inactive:hover {
  background-color: #bdbdbd;
}

.l-nav .menu>li.is-inactive + li.is-inactive {
  border-top: solid 1px #cfcfcf;
}


.l-nav__itm {
  position: relative;
  -ms-flex-preferred-size: calc(100% / 6);
  flex-basis: calc(100% / 6);
  text-align: center;
}

.l-nav__itm:hover {
  background-color: #0d47a1;
}

.l-nav__itm .txt {
  color: #fff;
  display: block;
  font-size: clamp(1.2rem, 1.33vw, 1.8rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 20px 0;
}

.l-nav__itm span.txt:hover {
  cursor: default;
}

.l-nav .menu {
  display: none;
}

.l-nav__tgl {
  border: solid 2px #1565c0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  width: 30px;
  height: 30px;
  padding: 7px;
  top: 55px;
  right: 10px;
  z-index: 100;
}

.l-nav__tgl span {
  background-color: #1565c0;
  width: 25px;
  height: 2px;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.l-nav__tgl span:nth-of-type(1) {
  top: 15px;
}

.l-nav__tgl span:nth-of-type(3) {
  bottom: 15px;
}

.l-nav.is-active .l-nav__tgl span {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.l-nav.is-active .l-nav__tgl span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}

.l-nav.is-active .l-nav__tgl span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}

.l-nav.is-active .l-nav__tgl span:nth-of-type(3) {
  opacity: 0;
}

.l-nav__bg {
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 100;
}

@media screen and (min-width: 992px) {
  .l-nav__tgl {
    display: none;
  }

  .l-nav__itm .fas {
    display: none;
  }

  .l-nav__itm:hover .menu {
    display: block;
  }

  .l-nav .menu {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
  }

  .l-nav .menu>li {
    background-color: #0d47a1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
  }

  .l-nav .menu>li .txt {
    font-size: 1.4rem;
  }

  .l-nav .menu>li .txt span {
    display: inline-block;
  }

  .l-nav .menu>li:hover {
    background-color: #3f51b5;
  }

  .l-nav .menu>li.grayed,
  .l-nav .menu>li.grayed:hover {
    cursor: initial;
    background-color: #999;
  }
}

@media screen and (max-width: 991.98px) {
  .l-nav__lst {
    display: block;
    contain: paint;
    height: 100vh;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    will-change: transform;
    width: 80%;
    z-index: 100;
  }

  .l-nav__lst::-webkit-scrollbar {
    width: 0;
  }

  .l-nav__lst::-webkit-scrollbar-track {
    background-color: #1e88e5;
  }

  .l-nav__lst::-webkit-scrollbar-thumb {
    background-color: #01579b;
  }

  .l-nav__lst li {
    border-bottom: 1px dotted #42a5f5;
  }

  .l-nav .menu>li.is-inactive {
    border-bottom: 0;
  }

  .l-nav__itm .txt {
    text-align: left;
    padding-left: 20px;
    text-transform: uppercase;
  }

  .l-nav__itm span.txt {
    position: relative;
  }

  .l-nav__itm span.txt::after {
    position: absolute;
    /* font-family: "Font Awesome 5 Free"; */
    /* content: '\f107'; */
    /* font-weight: bold;
    color: #fff; */
    right: 20px;
    content: "";
    background: url(../../assets/images/ico_breadcrumb-down.png);
    aspect-ratio: 1 / 1;
    display: inline-block;
    max-width: 12px;
    margin: 5px 7px 1px;
    width: 100%;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
  }

  .l-nav__itm .grayed span.txt::after {
    content: none;
  }

  .l-nav__itm:hover {
    background-color: #01579b;
  }

  .l-nav .menu .txt {
    padding-left: 40px;
  }

  .l-nav.is-active .l-nav__lst {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .l-nav.is-active .l-nav__bg {
    visibility: visible;
    opacity: 0.6;
  }

  .l-nav__itm.is-open span.txt::after {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .l-nav__itm.is-open .menu {
    background-color: #1976d2;
    display: block;
  }

  .l-nav__itm.is-open .menu>li.grayed,
  .l-nav__itm.is-open .menu>li.grayed:hover {
    cursor: initial;
    background-color: #999;
  }
}

/* ==========================================================================
    container
============================================================================= */
.l-container {
  max-width: 1000px;
  margin: 0 auto;
}

.l-inner {
  max-width: 880px;
  margin: 0 auto;
}

section {
  margin-bottom: 80px;
}

.map iframe {
  width: 100%;
}

@media screen and (max-width: 1198.98px) {
  .l-container {
    padding: 0 15px;
  }
}

@media screen and (max-width: 767.98px) {
  section {
    margin-bottom: 40px;
  }
}

/* ==========================================================================
    column layout
============================================================================= */
.l-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: wrap;
  -ms-flex: wrap;
  flex: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-column.col-2>* {
  -ms-flex-preferred-size: calc(50% - 5px);
  flex-basis: calc(50% - 5px);
}

.l-column.col-3>* {
  -ms-flex-preferred-size: calc(33.333% - 16.666px);
  flex-basis: calc(33.333% - 16.666px);
}

.l-column.col-4>* {
  -ms-flex-preferred-size: calc(25% - 11.25px);
  flex-basis: calc(25% - 11.25px);
}

.l-column.col-5>* {
  -ms-flex-preferred-size: calc(20% - 12px);
  flex-basis: calc(20% - 12px);
}

@media screen and (min-width: 768px) {
  .l-column.col-2>* {
    -ms-flex-preferred-size: calc(50% - 15px);
    flex-basis: calc(50% - 15px);
  }

  .l-column.col-3>* {
    -ms-flex-preferred-size: calc(33.333% - 15px);
    flex-basis: calc(33.333% - 15px);
  }

  .l-column.col-4>* {
    -ms-flex-preferred-size: calc(25% - 15px);
    flex-basis: calc(25% - 15px);
  }
}

@media screen and (max-width: 767.98px) {
  .l-column .figure {
    text-align: center;
    margin-bottom: 20px;
  }

  .l-column.col-2,
  .l-column.col-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .l-column.col-2>*,
  .l-column.col-3>* {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }

  .l-column.col-4>* {
    -ms-flex-preferred-size: calc(50% - 10px);
    flex-basis: calc(50% - 10px);
  }

  .l-column.col-5>* {
    -ms-flex-preferred-size: calc(33.333% - 16.666px);
    flex-basis: calc(33.333% - 16.666px);
  }
}

/* ==========================================================================
    footer
============================================================================= */
.l-footer {
  background-color: #0d47a1;
  color: #fff;
  margin-top: auto;
  text-align: center;
}

.l-footer__logo {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1em;
}

.l-footer__logo span {
  display: inline-block;
}

.l-footer__top {
  padding: 30px 0;
}

.l-footer__bottom {
  background-color: #000;
  font-size: 1.3rem;
  line-height: 35px;
  padding: 10px 0;
}

.l-footer__bottom a {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 767.98px) {
  .l-footer__logo {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 375.98px) {
  .l-footer__bottom {
    text-align: left;
  }
}

/* ==========================================================================
    pagetop
============================================================================= */
#pageTop {
  position: fixed;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#pageTop a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1565c0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  font-weight: bold;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  width: 35px;
  height: 35px;
  text-decoration: none;
  z-index: 999;
  img{
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
}

#pageTop.is-active {
  opacity: 1;
}

/* ==========================================================================
    headline
============================================================================= */
.headline {
  background-color: #f1f1f1;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  padding: 10px 0;
  text-align: center;
}

.headline span {
  display: inline-block;
}

.headline-2 {
  border-bottom: 2px solid #888;
  color: #474747;
  font-size: 2.5rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1em;
  padding: 5px 0;
}

.headline-2::before {
  /* font-family: "Font Awesome 5 Free";
  content: "\f433";
  font-weight: bold;
  display: inline-block;
  color: #999;
  margin-right: 10px; */
    content: '';
    background: url(../../assets/images/ico_ball.png);
    aspect-ratio: 1 / 1;
    display: inline-block;
    max-width: 25px;
    margin: 0px 6px 0 0;
    width: 100%;
    object-fit: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
}

.headline-3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 767.98px) {
  .headline {
    font-size: 2.4rem;
  }

  .headline-2 {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
    banner
============================================================================= */
.bnr {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.bnr:hover {
  opacity: 0.7;
}

/* ==========================================================================
    table
============================================================================= */
.tbl {
  border: 1px solid #cfcfcf;
  border-bottom: 0;
  text-align: justify;
  text-justify: auto;
  width: 100%;
}

.tbl tr {
  border-bottom: 1px solid #cfcfcf;
}

.tbl th,
.tbl td {
  line-height: 1.75;
  padding: 15px 0;
  vertical-align: middle;
}

.tbl th {
  background-color: #f9f9f9;
  color: #666;
  text-align: center;
}

.tbl td {
  line-height: 2;
  padding: 15px 20px;
}

.tbl a {
  color: #039;
}

.tbl a:hover {
  text-decoration: underline;
}

.tbl-2 {
  border-bottom: 1px #999 solid;
  width: 100%;
}

.tbl-2 tr {
  border-top: 1px #999 solid;
}

.tbl-2 th,
.tbl-2 td {
  padding: 10px 5px;
}

.tbl-2 th {
  min-width: 3em;
}

.tbl-2 td:nth-child(3) {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .tbl th {
    border-right: 1px solid #cfcfcf;
    width: 20%;
  }

  .tbl td {
    padding: 15px 30px;
  }
}

@media screen and (max-width: 767.98px) {
  .tbl th {
    border-bottom: 1px solid #cfcfcf;
  }

  .tbl th,
  .tbl td {
    display: block;
  }
}

/* ==========================================================================
    breadcrumb
============================================================================= */
.breadcrumb {
  margin: 15px 0;
  padding-left: 2em;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li:after {
  /* font-family: "Font Awesome 5 Free";
  content: '\f0da';
  font-weight: bold;
  padding: 0 6px;
  color: #c0c0c0; */
  content: '';
  background: url(../../assets/images/ico_breadcrumb-right.png);
  aspect-ratio: 1 / 1;
  display: inline-block;
  max-width: 10px;
  margin: 0px 7px 1px 11px;
  width: 100%;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

.breadcrumb li .txt {
  color: #666;
  font-size: 1.4rem;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

.breadcrumb li:last-child:after {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .breadcrumb {
    background-color: #1565c0;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 1em;
  }

  .breadcrumb li:after {
    color: #fff;
  }

  .breadcrumb li .txt {
    color: #fff;
  }
}

/* ==========================================================================
    list
============================================================================= */
.lst-disc>li {
  padding-left: 0.8em;
  position: relative;
}

.lst-disc>li:first-child {
  margin-top: 0;
}

.lst-disc>li::before {
  border-radius: 50%;
  background-color: #333;
  content: "";
  display: block;
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 6px;
  height: 6px;
}

.lst-disc>li .disc>li:first-child {
  margin-top: 1em;
}

.lst-disc>li .disc>li::before {
  background-color: transparent;
  border: 1px solid #0d47a1;
}

.lst-order {
  counter-reset: item;
}

.lst-order>li {
  line-height: 1.6;
  margin-top: 1em;
  padding-left: 1.5em;
  position: relative;
}

.lst-order>li:first-child {
  margin-top: 0;
}

.lst-order>li::before {
  counter-increment: item;
  content: counter(item) '.';
  display: inline-block;
  line-height: 20px;
  margin-right: 6px;
  position: absolute;
  left: 0;
  top: 0.1em;
  text-align: center;
}



/* ==========================================================================
    button
============================================================================= */
.btn-entry {
  color: #fff;
  font-weight: bold;
  display: block;
  padding: 25px 3%;
  border-radius: 12px;
  background: #c00;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn-entry .txt {
  font-size: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-entry .fas {
  color: #c00;
  display: inline-block;
  font-size: 2.6rem;
  width: 1em;
  height: 1em;
  padding: 5px;
  margin-top: 0.25em;
  margin-left: 0.5em;
  border-radius: 50%;
  background: #fff;
  -webkit-transform: scale(0.9, 0.9);
  transform: scale(0.9, 0.9);
  text-align: center;
  line-height: 1;
}
.btn-entry .ico-btn{
  transform: rotate(270deg);
  aspect-ratio: 1/1;
  max-width: 20px;
  width: 100%;
  height: auto;
  margin-left: 30px;
}
.btn-entry:hover {
  opacity: 0.8;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

.btn-close {
  background-color: #eee;
  border-radius: 12px;
  color: #333;
  display: block;
  font-size: 2rem;
  padding: 25px 3%;
  pointer-events: none;
  text-align: center;
}

.btn-close .fas {
  margin-left: 1em;
}

.close-entry {
  font-size: 2rem;
  text-align: center;
}

.btn-kumi-group {
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn-kumi {
  background-color: #b6dcff;
  width: 200px;
  color: #333;
  text-align: center;
  text-decoration: none;
  border-radius: 7px;
  padding: 20px 0;
}

.btn-kumi:hover {
  background-color: #94b7e3;
}

.grayed.btn-kumi,
.grayed.btn-kumi:hover {
  cursor: initial;
  background-color: #999;
}

.btn-kumi .txt b {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}

.btn-anchor-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-anchor {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e1e1e1;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #666;
  -ms-flex-preferred-size: calc(33.33% - 10px);
  flex-basis: calc(33.33% - 10px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
}

.btn-anchor:hover {
  background-color: #999;
}

@media screen and (max-width: 767.98px) {
  .btn-entry {
    padding: 25px 1.5%;
  }

  .btn-entry .txt {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .btn-entry .fas {
    font-size: 1.8rem;
  }

  .btn-close .txt {
    font-size: 1.4rem;
  }

  .btn-kumi {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}

/* ==========================================================================
    accordion
============================================================================= */
.accordion-wrp.is-active .accordion-cont {
  height: auto;
  margin-bottom: 35px;
  padding: 20px;
}

.accordion-hdg {
  cursor: pointer;
  margin-bottom: 15px;
  position: relative;
  padding-left: 1.8em;
}

.accordion-hdg::before {
  /* font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: bold; */
  position: absolute;
  left: 0;
  content: "";
  background: url(../../assets/images/ico_breadcrumb-down-gr.png);
  aspect-ratio: 1 / 1;
  display: inline-block;
  max-width: 12px;
  margin:11px 7px 1px;
  width: 100%;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}
.accordion-wrp.is-active .accordion-hdg::before {
  transform: rotate(180deg);
}

.accordion-cont {
  background-color: #f2f2f2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0.5em;
  height: 0;
  margin: 0 20px;
  overflow: hidden;
  padding: 0 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* ==========================================================================
    text
============================================================================= */
.underline {
  border-bottom: 1px solid #666;
}

.underline-double {
  border-bottom: 4px double #666;
}

.c-red {
  color: #c00;
}

.lnk {
  color: #039;
}

.lnk:hover {
  text-decoration: underline;
}

.txt.note {
  padding-left: 1.25em;
  position: relative;
}

.txt.note::before {
  content: "※";
  position: absolute;
  left: 0;
}

/* ==========================================================================
    font-size
============================================================================= */
.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.ta-l {
  text-align: left !important;
}

.fs-12 {
  font-size: 1.2rem !important;
}

.fs-14 {
  font-size: 1.2rem !important;
}

.fs-16 {
  font-size: 1.4rem !important;
}

.fs-20 {
  font-size: 1.4rem !important;
}

.fs-22 {
  font-size: 1.8rem !important;
}

.fs-24 {
  font-size: 1.8rem !important;
}

.fs-26 {
  font-size: 2rem !important;
}

.fs-28 {
  font-size: 2rem !important;
}

.fs-30 {
  font-size: 2.2rem !important;
}

.fs-40 {
  font-size: 3.2rem !important;
}

.fw-bold {
  font-weight: bold !important;
}

.fw-normal {
  font-weight: normal !important;
}

@media screen and (min-width: 768px) {
  .fs-12 {
    font-size: 1.2rem !important;
  }

  .fs-14 {
    font-size: 1.4rem !important;
  }

  .fs-16 {
    font-size: 1.6rem !important;
  }

  .fs-18 {
    font-size: 1.8rem !important;
  }

  .fs-20 {
    font-size: 2rem !important;
  }

  .fs-26 {
    font-size: 2.6rem !important;
  }

  .fs-28 {
    font-size: 2.8rem !important;
  }

  .fs-30 {
    font-size: 3rem !important;
  }

  .fs-40 {
    font-size: 4rem !important;
  }
}

/* ==========================================================================
    float
============================================================================= */
@media screen and (min-width: 768px) {
  .fl-l {
    float: left !important;
    margin-right: 40px;
    margin-bottom: 40px;
  }

  .fl-r {
    float: right !important;
    margin-left: 40px;
    margin-bottom: 40px;
  }

  .clearfix:after {
    content: "";
    display: block;
    clear: both;
  }

  .clear {
    clear: both;
  }
}

/* ==========================================================================
    device
============================================================================= */
@media screen and (min-width: 768px) {
  .sp-none {
    display: block !important;
  }

  .pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 767.98px) {
  .sp-none {
    display: none !important;
  }

  .pc-none {
    display: block !important;
  }
}

/* ==========================================================================
    ajust
============================================================================= */
.mt-0 {
  margin-top: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mr-35 {
  margin-right: 35px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mr-45 {
  margin-right: 45px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mr-55 {
  margin-right: 55px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mr-65 {
  margin-right: 65px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.ml-65 {
  margin-left: 65px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mr-70 {
  margin-right: 70px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mr-75 {
  margin-right: 75px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.ml-75 {
  margin-left: 75px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mr-85 {
  margin-right: 85px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.ml-85 {
  margin-left: 85px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mr-95 {
  margin-right: 95px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.ml-95 {
  margin-left: 95px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}
