/* Reset */
/*-----------------------------------------------*/
html {
  min-height: 100%;
  height: auto !important;
  height: 100%;
  width: auto !important;
  width: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  overflow: auto;
}

body {
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  vertical-align: baseline;
  color: #000000;
  box-sizing: padding-box;
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:root {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

h2, h3, h4, h5, h6 {
  line-height: 1.6;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0px;
}

a {
  text-decoration: none;
  color: #000000;
  -webkit-tap-highlight-color: transparent;
  transition: all .25s ease-out;
}
a.decoration {
  text-decoration: underline;
}
a.decoration:visited, a.decoration:focus, a.decoration:active {
  text-decoration: underline;
  outline: 0;
}
a:hover, a:visited, a:focus, a:active {
  text-decoration: none;
  color: #000000;
  outline: 0;
}

/* clearfix */
/*-----------------------------------------------*/
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

* html .clearfix {
  zoom: 1;
}

*:first-child + html .clearfix {
  zoom: 1;
}

/* section text margin style */
/*-----------------------------------------------*/
p {
  margin: 0 0 1em;
}

ol.decimal li {
  list-style-type: decimal;
  margin-left: 23px;
  padding: 0 0 10px 10px;
}

ul.square li {
  list-style-type: square;
  margin-left: 20px;
  padding: 0 0 10px 0px;
}

ul.disc li {
  list-style-type: disc;
  margin-left: 20px;
}

.centerize {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: all .25s ease-out;
  /*a &:hover {
  	filter:alpha(opacity=80);
  	-moz-opacity: 0.8;
  	opacity: 0.8;
  }*/
}
img .centerize {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

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

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

.rightBox {
  float: right !important;
}

.leftBox {
  float: left !important;
}

.clear {
  clear: both;
}

.bold {
  font-weight: bold !important;
}

.noline {
  border: none !important;
}

.hide {
  display: none !important;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

@media screen and (max-width: 767px) {
  .onlyPc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .onlySp {
    display: none;
  }

  .center-pc {
    text-align: center;
  }
}
/* ----------------------------------------
	header
---------------------------------------- */
header#masthead {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0);
  transition: all .25s ease-out;
}
@media screen and (min-width: 768px) {
  header#masthead {
    position: fixed;
    height: 100px;
  }
}
header#masthead .inner {
  position: relative;
  margin: 0 auto;
  width: min(100%, 1500px);
}
header#masthead .heading {
  position: absolute;
  top: 3px;
  left: 3%;
  font-size: 1.0rem;
  transition: all .25s ease-out;
}
@media screen and (min-width: 768px) {
  header#masthead .heading {
    top: 5px;
    left: 20px;
    font-size: 1.2rem;
  }
}
header#masthead .site_title {
  position: absolute;
  top: 25px;
  left: 3%;
  z-index: 14;
}
@media screen and (min-width: 768px) {
  header#masthead .site_title {
    top: 30px;
    left: 20px;
    z-index: 99;
  }
}
header#masthead .site_title img.logo {
  display: inline-block;
  width: 180px;
}
@media screen and (min-width: 768px) {
  header#masthead .site_title img.logo {
    width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  header#masthead .site_title img.logo {
    width: 360px;
  }
}
@media screen and (min-width: 768px) {
  header#masthead h1.site_title img.logo {
    width: 200px;
  }
}
@media screen and (min-width: 768px) {
  header#masthead.fixed {
    height: 65px;
    background: rgba(255, 255, 255, 0.9);
  }
  header#masthead.fixed .heading {
    top: 3px;
    font-size: 1.0rem;
  }
  header#masthead.fixed .site_title {
    top: 25px;
  }
  header#masthead.fixed .site_title img.logo {
    width: 200px;
  }
}

/* ------.masthead_contact------------ */
.masthead_contact {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .masthead_contact {
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .masthead_contact {
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    width: auto;
  }
}
.masthead_contact li {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .masthead_contact li {
    padding-left: 5px;
  }
}
@media screen and (max-width: 767px) {
  .masthead_contact li {
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3);
  }
}
.masthead_contact li i {
  position: relative;
  margin-right: 5px;
  font-size: 3.0rem;
}
@media screen and (min-width: 768px) {
  .masthead_contact li i {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
  .masthead_contact li i {
    margin: 0;
  }
}
.masthead_contact li.tel {
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .masthead_contact li.tel {
    padding-top: 10px;
  }
}
.masthead_contact li.tel a {
  display: block;
  color: #053657;
}
@media screen and (max-width: 767px) {
  .masthead_contact li.tel a {
    padding-top: 17px;
    width: 100%;
    height: 65px;
    background: #FFD400;
  }
}
@media screen and (min-width: 768px) {
  .masthead_contact li.tel a {
    pointer-events: none;
    height: 50px;
  }
}
.masthead_contact li.tel a i {
  top: -2px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .masthead_contact li.tel a i {
    font-size: 2.0rem;
  }
}
@media screen and (max-width: 767px) {
  .masthead_contact li.tel a i {
    top: 0;
  }
}
.masthead_contact li.tel a span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .masthead_contact li.tel a span {
    font-size: 2.8vw;
  }
}
@media screen and (min-width: 768px) {
  .masthead_contact li.tel a span {
    font-size: 3.0rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .masthead_contact li.tel a span {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .masthead_contact li.tel a span {
    display: none;
  }
}
.masthead_contact li.tel a small {
  display: block;
  padding-top: 5px;
  font-size: .9rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .masthead_contact li.tel a small {
    font-size: 1.0rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .masthead_contact li.tel a small {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .masthead_contact li.tel a small {
    display: none;
  }
}
.masthead_contact li.form a, .masthead_contact li.line a {
  display: block;
  padding-top: 15px;
  width: 100%;
  height: 65px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  background: #053657;
}
@media screen and (min-width: 768px) {
  .masthead_contact li.form a, .masthead_contact li.line a {
    width: 200px;
    height: 50px;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .masthead_contact li.form a, .masthead_contact li.line a {
    width: 160px;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .masthead_contact li.form a, .masthead_contact li.line a {
    width: 50px;
  }
}
.masthead_contact li.form a i, .masthead_contact li.line a i {
  top: 2px;
  font-size: 3.25rem;
}
@media screen and (min-width: 768px) {
  .masthead_contact li.form a i, .masthead_contact li.line a i {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .masthead_contact li.form a i, .masthead_contact li.line a i {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .masthead_contact li.form a span, .masthead_contact li.line a span {
    font-size: 2vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .masthead_contact li.form a span, .masthead_contact li.line a span {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .masthead_contact li.form a span, .masthead_contact li.line a span {
    display: none;
  }
}
.masthead_contact li.form a:hover, .masthead_contact li.line a:hover {
  background: #001726;
}
.masthead_contact li.line a {
  background: #00B900;
}
.masthead_contact li.line a img.icon {
  display: inline-block;
  margin-right: 5px;
  width: 26px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .masthead_contact li.line a img.icon {
    margin: 0;
  }
}
@media screen and (max-width: 480px) {
  .masthead_contact li.line a img.icon {
    margin: 0;
  }
}
.masthead_contact li.line a:hover {
  background: #007c00;
}
@media screen and (min-width: 768px) {
  .fixed .masthead_contact {
    top: 12px;
  }
  .fixed .masthead_contact li {
    padding-left: 10px;
  }
  .fixed .masthead_contact li i {
    font-size: 1.6rem;
  }
  .fixed .masthead_contact li.tel {
    padding-top: 4px;
  }
  .fixed .masthead_contact li.tel a span {
    font-size: 2.4rem;
  }
  .fixed .masthead_contact li.tel a small {
    font-size: 0.8rem;
    opacity: 0;
  }
  .fixed .masthead_contact li.form a, .fixed .masthead_contact li.line a {
    padding-top: 7px;
    width: 36px;
    height: 36px;
  }
  .fixed .masthead_contact li.form a i, .fixed .masthead_contact li.line a i {
    top: 2px;
    margin: 0;
  }
  .fixed .masthead_contact li.form a img.icon, .fixed .masthead_contact li.line a img.icon {
    top: 0;
    margin: 0;
    width: 24px;
  }
  .fixed .masthead_contact li.form a span, .fixed .masthead_contact li.line a span {
    display: none;
  }
}

/* Edit 2023.03.27 */
.masthead_contact li.menu .navbar-toggler {
  position: relative;
  display: block;
  background: #45b3cc;
  border-radius: 0;
  width: 100%;
  height: 65px;
}
.masthead_contact li.menu .navbar-toggler::before {
  position: absolute;
  content: "\f0c9";
  font-family: FontAwesome;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 3.25rem;
}
@media screen and (min-width: 768px) {
  .masthead_contact li.tel {
    order: 1;
  }
  .masthead_contact li.form {
    order: 2;
  }
  .masthead_contact li.menu {
    display: none;
  }
}


/* ----------------------------------------
	#visual
---------------------------------------- */
#visual {
  position: relative;
  margin: -60px auto 0;
}
@media screen and (max-width: 767px) {
  #visual {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  #visual {
    margin-bottom: -50px;
  }
}
#visual .textArea {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  #visual .textArea {
    top: 14%;
  }
}
@media screen and (min-width: 901px) and (max-width: 1024px) {
  #visual .textArea {
    top: 20%;
  }
}
#visual .textArea .comment {
  margin-bottom: .5em;
  padding-left: 4%;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.4;
  color: #053657;
  text-shadow: #FFD400 2px 0px 2px, #FFD400 -2px 0px 2px, #FFD400 0px -2px 2px, #FFD400 -2px 0px 2px, #FFD400 2px 2px 2px, #FFD400 -2px 2px 2px, #FFD400 2px -2px 2px, #FFD400 -2px -2px 2px, #FFD400 1px 2px 2px, #FFD400 -1px 2px 2px, #FFD400 1px -2px 2px, #FFD400 -1px -2px 2px, #FFD400 2px 1px 2px, #FFD400 -2px 1px 2px, #FFD400 2px -1px 2px, #FFD400 -2px -1px 2px, #FFD400 1px 1px 2px, #FFD400 -1px 1px 2px, #FFD400 1px -1px 2px, #FFD400 -1px -1px 2px;
}
@media screen and (min-width: 768px) {
  #visual .textArea .comment {
    padding-left: 6.8%;
    font-size: 2.8vw;
  }
}
#visual .textArea .comment em {
  font-size: 3.0rem;
  color: #D10000;
}
@media screen and (min-width: 768px) {
  #visual .textArea .comment em {
    font-size: 4.0vw;
  }
}
#visual .textArea .comment span {
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  #visual .textArea .comment span {
    font-size: 4.2vw;
  }
}
#visual .textArea .logo {
  padding-left: 4%;
  width: 80%;
}
@media screen and (min-width: 768px) {
  #visual .textArea .logo {
    margin-bottom: 1em;
    padding-left: 6.8%;
    width: 58%;
  }
}
#visual .textArea .logo img {
  width: 100%;
}
#visual img.bg {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------
	#content
---------------------------------------- */
#content {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
#content .inner {
  position: relative;
  margin: 0 auto;
  padding: 0 5%;
  width: min(100%, 1100px);
}
@media screen and (min-width: 768px) {
  #content .inner {
    padding: 0 20px;
  }
}
#content section,
#content div.section {
  position: relative;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  #content section,
  #content div.section {
    padding: 80px 0;
  }
}
#content section section,
#content section div.section,
#content div.section section,
#content div.section div.section {
  padding-bottom: 0;
}
#content .head {
  padding-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #053657;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #content .head {
    padding-bottom: 40px;
    font-size: 3.8rem;
  }
}
#content .head span {
  display: inline;
  padding: 0 10px;
  background: linear-gradient(transparent 50%, #FFD400 50%);
}
#content .head span.pink {
  background: linear-gradient(transparent 50%, #E85298 50%);
}
#content .linkBtn a {
  display: block;
  margin: 0 auto;
  width: 250px;
  height: 50px;
  padding-top: 11px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  background: #053657;
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
}
#content .linkBtn a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f105';
  padding-left: 8px;
}
#content .linkBtn a:hover {
  background: #001726;
}
#content .linkBtn.large a {
  padding-top: 16px;
  width: 300px;
  height: 60px;
  background: #45B3CC;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}
@media screen and (min-width: 768px) {
  #content .linkBtn.large a {
    width: 400px;
    height: 70px;
    font-size: 2.2rem;
    border-radius: 35px;
    -moz-border-radius: 35px;
    -webkit-border-radius: 35px;
  }
}
#content .linkBtn.large a:hover {
  background: #001726;
}
@media screen and (min-width: 768px) {
  #content .flex-pc {
    display: flex;
    justify-content: space-between;
  }
}
#content .fs18 {
  font-size: 1.8rem;
}
#content .fs20 {
  font-size: 2.0rem;
}
#content .red {
  color: #D10000;
}
#content .navy {
  color: #053657;
}
#content .yellow {
  color: #FFD400;
}
#content .green {
  color: #00B900;
}
#content .yellow-bg {
  background: #FFF9DE;
}

/* ----------------------------------------
	.contactWrap
---------------------------------------- */
.contactWrap {
  text-align: center;
  background: #FFF9DE;
}
@media screen and (min-width: 768px) {
  .contactWrap .head {
    padding-bottom: 20px !important;
  }
}
.contactWrap .tel {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contactWrap .tel {
    display: flex;
    justify-content: center;
    flex-flow: row-reverse;
    align-items: center;
    width: 100%;
  }
}
.contactWrap .tel img.fukuzo {
  margin: 0 auto 10px;
  width: 150px;
}
@media screen and (min-width: 768px) {
  .contactWrap .tel img.fukuzo {
    width: 200px;
  }
}
.contactWrap .tel a {
  display: block;
  color: #053657;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contactWrap .tel a {
    margin: 0 auto 10px;
    padding-top: 10px;
    width: min(100%, 300px);
    height: 60px;
    background: #FFD400;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
  }
}
@media screen and (min-width: 768px) {
  .contactWrap .tel a {
    pointer-events: none;
    width: auto;
  }
}
.contactWrap .tel a i {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  font-size: 1.9rem;
  top: -2px;
}
@media screen and (min-width: 768px) {
  .contactWrap .tel a i {
    margin-right: 5px;
    font-size: 3.4rem;
  }
}
.contactWrap .tel a span {
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contactWrap .tel a span {
    font-size: 5.0rem;
  }
}
.contactWrap .tel a small {
  display: block;
  padding-top: 5px;
  font-size: 1.1rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .contactWrap .tel a small {
    padding-top: 10px;
    font-size: 1.4rem;
  }
}
.contactWrap ul.contactBtn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contactWrap ul.contactBtn li {
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contactWrap ul.contactBtn li {
    width: 100%;
  }
}
.contactWrap ul.contactBtn li a {
  display: block;
  padding-top: 18px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .contactWrap ul.contactBtn li a {
    margin: 0 auto;
    width: min(100%, 300px);
    height: 60px;
  }
}
@media screen and (min-width: 768px) {
  .contactWrap ul.contactBtn li a {
    margin: 0 10px;
    padding-top: 30px;
    width: 400px;
    height: 100px;
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
  }
}
.contactWrap ul.contactBtn li i, .contactWrap ul.contactBtn li img.icon {
  display: inline-block;
  position: relative;
  margin-right: 5px;
  font-size: 2.0rem;
}
@media screen and (min-width: 768px) {
  .contactWrap ul.contactBtn li i, .contactWrap ul.contactBtn li img.icon {
    margin-right: 10px;
    font-size: 3.0rem;
  }
}
.contactWrap ul.contactBtn li.form a, .contactWrap ul.contactBtn li.line a {
  background: #053657;
}
.contactWrap ul.contactBtn li.form a:hover, .contactWrap ul.contactBtn li.line a:hover {
  background: #001726;
}
.contactWrap ul.contactBtn li.form a i, .contactWrap ul.contactBtn li.line a i {
  top: 2px;
}
@media screen and (min-width: 768px) {
  .contactWrap ul.contactBtn li.form a span, .contactWrap ul.contactBtn li.line a span {
    font-size: 2.6rem;
  }
}
.contactWrap ul.contactBtn li.line a {
  background: #00B900;
}
.contactWrap ul.contactBtn li.line a img.icon {
  width: 28px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .contactWrap ul.contactBtn li.line a img.icon {
    top: -3px;
    width: 40px;
  }
}
.contactWrap ul.contactBtn li.line a:hover {
  background: #007c00;
}

/* ----------------------------------------
	#lead
---------------------------------------- */
#lead .map {
  padding-top: 20px;
}
#lead .map iframe {
  width: 100%;
  height: 250px;
}
@media screen and (min-width: 768px) {
  #lead .map iframe {
    height: 300px;
  }
}

/* ----------------------------------------
	#check
---------------------------------------- */
#check {
  background: #053657;
}
#check .head {
  color: #FFFFFF;
}
#check .checkList {
  position: relative;
  margin: 45px auto 0;
  padding: 20px 10px 10px;
  width: min(100%, 780px);
  background: #45B3CC;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (min-width: 768px) {
  #check .checkList {
    margin: 0 auto;
    padding: 38px 20px 20px;
  }
}
#check .checkList img.binder {
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  #check .checkList img.binder {
    top: 10px;
    width: 200px;
  }
}
#check .checkList img.photo {
  position: absolute;
  top: -65px;
  right: -30px;
  width: 140px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  #check .checkList img.photo {
    top: -40px;
    right: -80px;
    width: 300px;
  }
}
#check .checkList ul {
  padding: 40px 10px 20px;
  background: #FFFFFF;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  #check .checkList ul {
    padding: 80px 30px 30px;
  }
}
#check .checkList ul li {
  position: relative;
  margin-bottom: 8px;
  padding: 0 0 8px 32px;
  border-bottom: 1px dashed #999999;
}
@media screen and (min-width: 768px) {
  #check .checkList ul li {
    font-size: 1.7rem;
  }
}
#check .checkList ul li span {
  color: #E85298;
}
#check .checkList ul li::before {
  position: absolute;
  top: -2px;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2.2rem;
  content: '\f14a';
  color: #E85298;
}
#check .checkList ul li:first-child {
  padding-top: 8px;
  border-top: 1px dashed #999999;
}
#check .checkList ul li:first-child::before {
  top: 6px;
}
#check img.check-warning {
  width: min(100%, 800px);
}

/* ----------------------------------------
	#warning
---------------------------------------- */
#warning .head img.icon {
  margin: 0 auto 10px;
  width: 60px;
}
@media screen and (min-width: 768px) {
  #warning .head img.icon {
    width: 100px;
  }
}
#warning .flex-pc {
  align-items: center;
}
@media screen and (min-width: 768px) {
  #warning .flex-pc .textArea {
    width: -webkit-calc(100% - 250px);
    width: calc(100% - 250px);
  }
}
@media screen and (min-width: 768px) {
  #warning .flex-pc .img {
    width: 230px;
  }
}
#warning .flex-pc .img img {
  margin: 0 auto;
  width: 180px;
}
@media screen and (min-width: 768px) {
  #warning .flex-pc .img img {
    margin: 0;
    width: 100%;
  }
}

/* ----------------------------------------
	#support
---------------------------------------- */
#support {
  background: #FFD400;
}
#support .head img.icon {
  margin: 0 auto 10px;
  width: 60px;
}
@media screen and (min-width: 768px) {
  #support .head img.icon {
    width: 100px;
  }
}

/* ----------------------------------------
	#plan
---------------------------------------- */
#plan ul.planList li {
  margin-bottom: 20px;
  padding: 10px 10px 20px;
  background: #FFD400;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (min-width: 768px) {
  #plan ul.planList li {
    margin-bottom: 30px;
    padding: 10px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#plan ul.planList li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #plan ul.planList li .img {
    width: 50%;
  }
}
#plan ul.planList li .textArea {
  padding-top: 15px;
}
@media screen and (min-width: 768px) {
  #plan ul.planList li .textArea {
    width: 50%;
    padding: 0 0 0 20px;
  }
}

/* ----------------------------------------
	#reason
---------------------------------------- */
#reason {
  background: #45B3CC;
}
#reason ul.reasonList {
  margin: 0 auto;
  width: min(100%, 900px);
}
#reason ul.reasonList section {
  padding: 10px 0 0;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  #reason ul.reasonList section {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #reason ul.reasonList section.reverse {
    flex-flow: row-reverse;
  }
}
@media screen and (max-width: 767px) {
  #reason ul.reasonList section .textArea {
    margin: 0 auto;
    width: min(100%, 500px);
  }
}
@media screen and (min-width: 768px) {
  #reason ul.reasonList section .textArea {
    padding: 0 20px;
    width: 60%;
  }
}
#reason ul.reasonList section .textArea .point {
  display: inline-block;
  margin-bottom: 15px;
  padding-right: 50px;
  font-family: "Lato", sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: .1rem;
  color: #F9ECAB;
  border-bottom: 2px solid #F9ECAB;
}
@media screen and (min-width: 768px) {
  #reason ul.reasonList section .textArea .point {
    font-size: 2.8rem;
  }
}
#reason ul.reasonList section .textArea .point span {
  padding-left: 3px;
  font-size: 4.0rem;
}
@media screen and (min-width: 768px) {
  #reason ul.reasonList section .textArea .point span {
    font-size: 3.0rem;
  }
}
#reason ul.reasonList section .textArea h3 {
  padding-bottom: 10px;
  font-size: 2.0rem;
  font-weight: bold;
  color: #F9ECAB;
}
@media screen and (min-width: 768px) {
  #reason ul.reasonList section .textArea h3 {
    font-size: 2.6rem;
  }
}
#reason ul.reasonList section .img {
  margin: 0 auto;
  width: min(100%, 300px);
}
@media screen and (min-width: 768px) {
  #reason ul.reasonList section .img {
    margin: 0;
    width: 40%;
  }
}

/* ----------------------------------------
	#process
---------------------------------------- */
#process {
  background: #FFF9DE;
}
#process ul.processList {
  margin: 0 auto;
  width: min(100%, 960px);
}
#process ul.processList li section {
  padding: 0 0 15px;
}
@media screen and (min-width: 768px) {
  #process ul.processList li section {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  #process ul.processList li:nth-child(even) section {
    padding-left: 200px;
  }
}
@media screen and (max-width: 767px) {
  #process ul.processList .textArea {
    margin: 0 auto;
    width: min(100%, 400px);
  }
}
@media screen and (min-width: 768px) {
  #process ul.processList .textArea {
    width: -webkit-calc(100% - 250px);
    width: calc(100% - 250px);
  }
}
#process ul.processList .textArea h3 {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #45B3CC;
}
@media screen and (min-width: 768px) {
  #process ul.processList .textArea h3 {
    font-size: 2.2rem;
  }
}
#process ul.processList .textArea h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: " ";
  width: 80px;
  height: 2px;
  background: #45B3CC;
}
#process ul.processList .img {
  position: relative;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  #process ul.processList .img {
    margin: 0;
    width: 220px;
  }
}
#process ul.processList .img img.photo {
  position: relative;
  margin: 0 auto;
  z-index: 3;
}
#process ul.processList .img img.line {
  position: absolute;
  bottom: -80px;
  right: -50px;
  width: 100px;
  z-index: 2;
}
#process ul.processList .img img.line.reverse {
  transform: scale(-1, 1);
  right: auto;
  left: -50px;
}
@media screen and (max-width: 767px) {
  #process ul.processList .img img.line {
    display: none;
  }
}

/* ----------------------------------------
	#voice
---------------------------------------- */
#voice {
  background: #45B3CC;
}
#voice p.lead {
  font-size: 1.5rem;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  #voice p.lead {
    font-size: 1.6rem;
  }
}
#voice img.fukuzo {
  float: right;
  padding-left: 3%;
  width: 180px;
}
@media screen and (min-width: 768px) {
  #voice img.fukuzo {
    padding-left: 10px;
    width: 250px;
  }
}
#voice ul.voiceList {
  padding: 10px;
  background: #FFD400;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (min-width: 768px) {
  #voice ul.voiceList {
    padding: 20px;
  }
}
#voice ul.voiceList li {
  margin-bottom: 15px;
  padding: 10px;
  background: #FFFFFF;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (min-width: 768px) {
  #voice ul.voiceList li {
    margin-bottom: 20px;
    padding: 20px;
  }
}
#voice ul.voiceList li:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------
	#case
---------------------------------------- */
#case {
  background: #FFD400;
}
#case ul.caseList {
  margin: 0 auto 30px;
  width: min(100%, 1000px);
}
@media screen and (min-width: 768px) {
  #case ul.caseList {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
#case ul.caseList li {
  position: relative;
  margin: 0 auto 15px;
  width: min(100%, 450px);
  background: #FFFFFF;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border: 2px solid #053657;
}
@media screen and (min-width: 768px) {
  #case ul.caseList li {
    margin-bottom: 30px;
    padding-bottom: 70px;
    width: 48%;
    border: 4px solid #053657;
  }
}
#case ul.caseList li .photo {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  overflow: hidden;
}
#case ul.caseList li .photo .title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 10px;
  color: #053657;
  background: #FFD400;
}
#case ul.caseList li .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#case ul.caseList li .textArea {
  padding: 10px 10px 20px;
  background: #FFFFFF;
  border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 768px) {
  #case ul.caseList li .textArea {
    padding: 10px 20px 20px;
  }
}
#case ul.caseList li .textArea .detail {
  padding-bottom: 10px;
  display: flex;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  #case ul.caseList li .textArea .detail {
    font-size: 1.5rem;
  }
}
#case ul.caseList li .textArea .detail dt {
  padding: 5px 10px;
  width: 60px;
  text-align: center;
  background: #F9ECAB;
}
#case ul.caseList li .textArea .detail dd {
  padding: 5px 10px;
  width: -webkit-calc(50% - 60px);
  width: calc(50% - 60px);
  background: #EEEEEE;
}
#case ul.caseList li .textArea .comment {
  padding-bottom: 15px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  #case ul.caseList li .textArea .linkBtn {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

/* ----------------------------------------
	#greeting
---------------------------------------- */
#greeting .inner img {
  margin: 0 auto 15px;
  width: min(100%, 300px);
}
@media screen and (min-width: 768px) {
  #greeting .inner img {
    float: left;
    width: 440px;
    padding: 8px 20px 20px 0;
  }
}
#greeting .inner .name {
  text-align: right;
}

/* ----------------------------------------
	#cities
---------------------------------------- */
#cities {
  background: #FFF9DE;
}
#cities .areaHead {
  position: relative;
  margin-bottom: 30px;
}
#cities .areaHead .textArea {
  position: absolute;
  top: 35%;
  -webkit-transform: translateY(-35%);
  transform: translateY(-35%);
  left: 5%;
  color: #053657;
}
#cities .areaHead .textArea h2 {
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  #cities .areaHead .textArea h2 {
    font-size: 3.2vw;
  }
}
#cities .areaHead .textArea h2 em {
  font-size: 2.1rem;
  color: #D10000;
}
@media screen and (min-width: 768px) {
  #cities .areaHead .textArea h2 em {
    font-size: 4.0vw;
  }
}
#cities .citiesWrap p {
  margin: 0;
}
#cities .citiesWrap strong {
  display: block;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-weight: bold;
  color: #053657;
  border-bottom: 1px solid #053657;
}
#cities .citiesWrap ul {
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}
#cities .citiesWrap ul li {
  margin-bottom: 5px;
  padding-right: 10px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  #cities .citiesWrap ul li {
    margin-bottom: 8px;
    padding-right: 16px;
  }
}
#cities .citiesWrap ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f058';
  padding-right: 5px;
  color: #45B3CC;
}

/* ----------------------------------------
	ul.areaList
---------------------------------------- */
ul.areaList {
  padding-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  ul.areaList {
    padding-bottom: 80px;
  }
}
ul.areaList li {
  margin-bottom: 10px;
  padding: 0 5px;
}
@media screen and (min-width: 768px) {
  ul.areaList li {
    margin-bottom: 18px;
    padding: 0 8px;
  }
}
ul.areaList li a {
  display: block;
  padding: 5px 15px;
  font-size: 1.5rem;
  color: #FFFFFF;
  background: #45B3CC;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
@media screen and (min-width: 768px) {
  ul.areaList li a {
    font-size: 1.6rem;
  }
}
ul.areaList li a:hover {
  background: #053657;
}
ul.areaList li a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f138';
  padding-left: 5px;
  display: inline-block;
  text-decoration: none;
}

/* ----------------------------------------
	#mastfoot
---------------------------------------- */
#mastfoot .inner {
  margin: 0 auto;
  padding: 0 0 60px;
  color: #053657;
  text-align: center;
  background: #45B3CC;
}
@media screen and (min-width: 768px) {
  #mastfoot .inner {
    padding: 30px 20px;
  }
}
#mastfoot .inner .sitemap ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #mastfoot .inner .sitemap ul {
    border-top: 1px solid #FFFFFF;
  }
}
@media screen and (min-width: 768px) {
  #mastfoot .inner .sitemap ul {
    padding: 20px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  #mastfoot .inner .sitemap ul li {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  #mastfoot .inner .sitemap ul li {
    padding-bottom: 10px;
  }
}
#mastfoot .inner .sitemap ul li a {
  display: block;
  padding: 15px 0;
  font-size: 1.3rem;
  line-height: 1;
  color: #053657;
  white-space: nowrap;
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (min-width: 768px) {
  #mastfoot .inner .sitemap ul li a {
    padding: 0 15px;
    border-right: 1px solid #053657;
    border-bottom: none;
  }
}
#mastfoot .inner .sitemap ul li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #mastfoot .inner .sitemap ul li:nth-child(odd) a {
    border-right: 1px solid #FFFFFF;
  }
}
#mastfoot .inner .sitemap ul li:last-child a {
  border-right: none;
}
#mastfoot .inner small {
  font-size: 1.1rem;
}
#mastfoot #pagetop {
  width: 60px;
  height: 60px;
  transition: all .25s ease-out;
}
@media screen and (max-width: 767px) {
  #mastfoot #pagetop {
    position: relative;
    top: -20px;
    margin: 0 auto -20px;
  }
}
@media screen and (min-width: 768px) {
  #mastfoot #pagetop {
    position: fixed;
    bottom: -80px;
    right: 20px;
  }
  #mastfoot #pagetop.fixed {
    bottom: 30px;
  }
}
#mastfoot #pagetop a {
  width: 100%;
  height: 100%;
  background: #45B3CC;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: all .1s ease-out;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  #mastfoot #pagetop a {
    background: #053657;
  }
}
#mastfoot #pagetop a i {
  font-size: 2.4rem;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  #mastfoot #pagetop a:hover {
    background: #001726;
  }
}

/* Edit2022.12 */
#breadcrumbs {
  background: transparent!important;
}
#breadcrumbs .container {
  margin: 0 auto;
  padding: 0 5%;
  width: min(100%, 1100px);
  max-width: none;
}
@media screen and (min-width: 767px) {
  #breadcrumbs {
    margin-top: 100px;
  }
  #breadcrumbs .container {
    padding: 0 20px;
  }
}

/* Edit2023.04 */
#voice .swiper-voice {
  background: #FFD400;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
#voice .swiper-voice .swiper-button-next:after,
#voice .swiper-voice .swiper-button-prev:after {
  font-family: FontAwesome;
  color: rgba(5, 54, 87, .6);
  font-size: 3rem;
}
#voice .swiper-voice .swiper-button-next {
  right: 2rem;
}
#voice .swiper-voice .swiper-button-next:after {
  content:"\f0a9";
}
#voice .swiper-voice .swiper-button-prev {
  left: 2rem;
}
#voice .swiper-voice .swiper-button-prev:after {
  content:"\f0a8";
}
#voice .swiper-voice .swiper-slide {
  display: flex;
  height: auto;
  padding: 10px;
  width: calc(100% - 20px)!important;
}
#voice .swiper-voice .swiper-slide div {
  background: #FFFFFF;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  #voice .swiper-voice .swiper-button-next {
    right: 1rem;
  }
  #voice .swiper-voice .swiper-button-prev {
    left: 1rem;
  }
  #voice .swiper-voice .swiper-slide {
    height: auto!important;
    padding: 20px 20px 0;
    width: calc(100% - 40px)!important;
  }
  #voice .swiper-voice .swiper-slide:last-of-type {
    padding-bottom: 20px;
  }
  #voice .swiper-voice .swiper-slide div {
    padding: 20px;
  }
}
