@charset "UTF-8";
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
input,
textarea,
p,
th,
td {
  margin: 0;
  padding: 0;
  font-weight: normal;
}


img {
  border: 0;
  vertical-align: middle;
}

code,
em,
strong,
th {
  font-style: normal;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/*===============================================
	li
===============================================*/
li {
  list-style: outside none none;
}

/*===============================================
	box-sizing
===============================================*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*===============================================
	cFix
===============================================*/
/*Opera Fix*/
body:before {
  content: "";
  height: 100%;
  float: left;
  width: 0;
  margin-top: -32767px;
}

main {
  display: block;
}

/*cFix*/
.cFix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* IE-mac */
* html .cFix {
  height: 1%;
}

.cFix {
  display: block;
}

img {
  max-width: 100%;
}

/*===============================================
	a,text
===============================================*/
a:hover,
a:hover img {
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
}

a,
a img {
  text-decoration: none;
  border: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/*=============================================== 
	base
===============================================*/
html {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
      text-size-adjust: 100%;
  color: #4f545a;
  font-family: "Noto Sans JP", "Yu Gothic", HiraKakuProN-W3, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, Meiryo, Osaka, "MS UI Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: calc(var(--vw)/144);
  font-style: normal;
  font-weight: 400;
}

html {
  height: 100%;
  width: 100%;
}

html {
  font-size: calc(100vw * 8 / 375);
}

@media (min-width: 768px) {
  html {
    font-size: calc(100vw * 7 / 768);
  }
}

@media (min-width: 1240px) {
  html {
    font-size: calc(100vw *10 / 1240);
  }
}

@media (min-width: 1440px) {
  html {
    font-size: calc(100vw * 10 / 1440);
  }
}

@media (min-width: 1680px) {
  html {
    font-size: calc(100vw * 9 / 1440);
  }
}

/*===============================================
	font
===============================================*/
body {
  font-family: '游ゴシック','Yu Gothic',YuGothic,'Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','ヒラギノ角ゴ W3','メイリオ','ＭＳ Ｐゴシック',sans-serif;
  font-size: clamp(0.5rem, calc(1rem + 0.625vw), 1.4rem);
  letter-spacing: 1px;
  line-height: 2em;
  color: #231815;
  background: white;
  -webkit-text-size-adjust: 100%;
}

/*@media screen and (min-width:1450px) {
	body {
		font-size: 1.6rem;
	}
}
@media screen and (min-width:1800px) {
	body {
		font-size: 1.7rem;
	}
}*/
/*input,textarea,select{font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif; font-size:1.2rem;}*/
/* for IE6 */
* html body {
  font-family: "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

* html input,
* html textarea {
  font-family: "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

/* --responsive------------------------------------------- */
/*=============================================== 
	wrapper
===============================================*/
.content {
  padding: 0;
  overflow: hidden;
}

section {
  overflow: hidden;
  width: 100%;
  padding-top: 90px;
  padding-bottom: 50px;
}

/*=============================================== 
	page
===============================================*/

/*/////////////////////////////////////////////////////////////////////////////////////////////

	リスト

/////////////////////////////////////////////////////////////////////////////////////////////*/

.num li {
  list-style: decimal;
  margin-left: 1em;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////

	テーブル

/////////////////////////////////////////////////////////////////////////////////////////////*/

/*/////////////////////////////////////////////////////////////////////////////////////////////

	flex

/////////////////////////////////////////////////////////////////////////////////////////////*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flexRev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flexCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flexitemCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: auto;
  margin-top: auto;
}

/*===独自のスタイル===*/
body {
  background-color: #fdfaf1;
  -webkit-transition: 1s;
  transition: 1s;
}

.Antique {
  font-family: 'Shippori Antique B1', sans-serif;
}

.BgBeige {
  background-color: #fdfaf1;
}

.radius20 {
  border-radius: 20px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

nav {
  display: block;
}

nav ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

::selection {
  background: #ff6060;
  color: #373331;
}

.box {
  width: 10vw;
  height: 1px;
  margin: 0 auto;
  position: relative;
  display: block;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .box {
    width: 40vw;
  }
}

.box__line {
  position: absolute;
}

.box__line {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#81c11b), color-stop(#f2d515), to(#00a300));
  background: -webkit-linear-gradient(left, transparent, #81c11b, #f2d515, #00a300);
  background: linear-gradient(to right, transparent, #81c11b, #f2d515, #00a300);
  -webkit-animation: animate1 1.3s linear infinite;
          animation: animate1 1.3s linear infinite;
}

@keyframes animate1 {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.WaterAnimation {
  position: relative;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

/* ripples2 */
.ripples2 {
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-animation: ripples2 2s infinite;
          animation: ripples2 2s infinite;
}

.is-animation .ripples2 {
  opacity: 0;
}

@keyframes ripples2 {
  0% {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 162, 0, 0.5);
  }
  100% {
    width: 600px;
    height: 600px;
    border: 10px solid rgba(108, 192, 229, 0);
  }
}

/* START OF USEFUL CODE */
header {
  position: absolute;
  overflow: visible;
  z-index: 100;
  background-color: transparent;
  width: 100%;
  /*height: 5rem;*/
  padding: 4rem 2rem;
}

header span.menu-control-open,
header span.menu-control-close,
header nav,
header a {
  font-weight: bold;
  text-transform: uppercase;
  /*color: #4f545a;*/
}

header span.menu-control-open,
header span.menu-control-close,
header nav a {
  font-size: 2.2rem;
}

header span.menu-control-open,
header span.menu-control-close {
  display: block;
  cursor: pointer;
}

header span.menu-control-open {
  position: relative;
  font-size: 1.5rem;
  line-height: 150%;
  float: right;
  margin-top: 5px;
  letter-spacing: .2em;
}

header span.menu-control-open svg {
  position: absolute;
  top: -12px;
  left: 12px;
}

header span.menu-control-open svg line, header span.menu-control-open svg circle {
  fill: none;
  stroke: #ffffff;
  stroke-width: 3;
}

header span.menu-control-close {
  font-size: 1.5rem;
  text-align: right;
  margin-bottom: 8rem;
  margin-top: 5px;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #00a300;
  color: #fff;
  height: 100vh;
  width: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /* Unnecessary styles for the menu footer */
}

.menu a {
  -webkit-transform: translate3d(-300px, 0, 0);
          transform: translate3d(-300px, 0, 0);
  -webkit-transition: -webkit-transform 0.15s ease-in;
  transition: -webkit-transform 0.15s ease-in;
  transition: transform 0.15s ease-in;
  transition: transform 0.15s ease-in, -webkit-transform 0.15s ease-in;
  color: #fff;
  margin-bottom: 1.8em;
}

.menu .menu-inner {
  position: relative;
  height: 100%;
  width: 80vw;
  padding: 2.5rem 2rem 4rem 5rem;
}

.menu .version {
  position: absolute;
  z-index: 10000;
  bottom: 1.5rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
}

.menu .version {
  right: 1.5rem;
}

.menu--active {
  height: 100vh;
  overflow: hidden;
}

.menu--active nav a {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 500ms ease-out;
  transition: -webkit-transform 500ms ease-out;
  transition: transform 500ms ease-out;
  transition: transform 500ms ease-out, -webkit-transform 500ms ease-out;
  /* Handles items within the slide-out to give them the delayed slide-in */
}

.menu--active nav a:first-child {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.menu--active nav a:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.menu--active nav a:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.menu--active nav a:last-child {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

@media screen and (max-width: 640px) {
  .menu .menu-inner {
    width: 64vw;
  }
  .menu--active .menu {
    width: 64%;
  }
}

@media screen and (min-width: 641px) {
  .menu--active .menu {
    width: 64%;
  }
  .menu--active .menu .menu-inner {
    width: 64vw;
  }
}

@media screen and (min-width: 768px) {
  .menu--active .menu {
    width: 40%;
  }
  .menu--active .menu .menu-inner {
    width: 40vw;
  }
}

.menu .menu-inner ul .Phone a,
.menu .menu-inner ul .apply a {
  font-size: 2.2rem;
  line-height: 2.4rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: none;
          transform: none;
  margin-bottom: 2.6rem;
}

.menu .menu-inner ul .Phone a:before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 2rem;
}

.menu .menu-inner ul .apply a:before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 2rem;
}

.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 2px solid #00a300;
  color: #00a300;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.btn:hover, .btn:focus {
  color: #fff;
  outline: 0;
}

.fifth {
  border-color: #00a300;
  border-radius: 2em;
  color: #00a300;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
  display: inline-block;
}

.fifth:after {
  content: '';
  position: absolute;
  display: block;
  border-radius: 2em;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 100%;
  background: #00a300;
  z-index: -1;
  -webkit-transition: width 150ms ease-in-out;
  transition: width 150ms ease-in-out;
}

.fifth:hover {
  color: #fff !important;
}

.fifth:hover:after {
  width: 101%;
}

.fifth a {
  display: inline-block;
  color: #00a300;
  padding: 0.8em 1em;
}

@media screen and (max-width: 767px) {
  .fifth a {
    font-size: 14px;
  }
}

.fifth a:hover {
  color: #fff;
  opacity: 1;
}

.space-around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

img {
  width: 100%;
}

.blur {
  position: relative;
}

.blur:before {
  content: "";
  display: block;
  position: absolute;
  background: inherit;
  -webkit-filter: blur(15px);
          filter: blur(15px);
  top: -15px;
  right: -15px;
  bottom: -15px;
  left: -15px;
  /*z-index: -1;*/
  -webkit-animation: blurfadeIn 3s;
          animation: blurfadeIn 3s;
}

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

#TopMain {
  margin-top: 8vw;
}

#Header {
  position: fixed;
  -webkit-transition: .5s;
  transition: .5s;
  top: 0;
}

#Header.is-animation {
  top: 0 !important;
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  padding: 2.4rem 2rem 1.6rem;
}

#Header .box {
  position: absolute;
  left: 0;
  width: 10vw;
  height: 1px;
  margin: 0 auto;
  /* position: relative; */
  /* display: block; */
  overflow: hidden;
  right: 0;
  top: 10.6vw;
}

@media screen and (max-width: 768px) {
  #Header .box {
    top: 8vw;
  }
}

@media screen and (max-width: 767px) {
  #Header .box {
    top: 140px;
  }
}

#TopLogo img.shape-box-img {
  width: 100%;
}

#TopLogo.shape-box-logo {
  position: relative;
  /*left: 0;*/
  /*right: 0;*/
  /*top: 20px;*/
  z-index: 1000;
  margin: 0 auto 2rem auto;
  padding-top: 2rem;
  width: 15vw;
  max-width: 200px;
  min-width: 150px;
  opacity: 1;
  -webkit-animation: bigfade 1.8s 1 alternate;
          animation: bigfade 1.8s 1 alternate;
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  -webkit-transition: .5s;
  transition: .5s;
}

@media screen and (max-width: 767px) {
  #TopLogo.shape-box-logo {
    width: 10vw;
  }
}

@keyframes bigfade {
  0% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  30% {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*CTA*/
.PdfDl {
  background-image: url("../img/common/bg_cta.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media screen and (max-width: 920px) {
  .PdfDl {
    background-attachment: unset;
  }
}

.PdfDl__Inner {
  position: relative;
  width: 50%;
  min-width: 600px;
  margin: auto;
  -webkit-box-shadow: 10px 10px 40px -20px #fff;
  box-shadow: 10px 10px 40px -20px #fff;
  padding: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: justify;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .PdfDl__Inner {
    min-width: 560px;
  }
}

.PdfDl__Inner p {
  line-height: 1.4;
}

.PdfDl__Inner p.Tel {
  font-weight: bold;
}

.PdfDl__Inner p.Tel a {
  font-size: 2.3rem;
  color: #008600;
}

.Btt {
  width: 100%;
  margin-top: 2em;
  text-align: center;
}

.Btt a.button {
  width: 70%;
  max-width: 300px;
  display: inline-block;
  padding: .75rem 1.25rem;
  border-radius: 10rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .15rem;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  font-size: 1.1em;
}

@media screen and (max-width: 920px) {
  .Btt a.button {
    width: 90%;
    max-width: 90%;
  }
}

.Btt a.button:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #38a811;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius: 10rem;
  z-index: -1;
}

.Btt a.button:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #008600;
  border-radius: 10rem;
  z-index: -2;
}

.Btt a.button:hover {
  color: #fff;
}

.Btt a.button:hover:before {
  width: 100%;
}

@keyframes bg {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0) translateX(-5%);
            transform: scaleX(0) translateX(-5%);
  }
  30% {
    -webkit-transform: scaleX(1) translateX(0);
            transform: scaleX(1) translateX(0);
  }
  100% {
    -webkit-transform: scaleX(1) translateX(0);
            transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}

#footerBg {
  background: #F5F5F6;
  width: 100%;
}

#footerBg .footer {
  margin: 0 auto;
  width: 100%;
  max-width: 1450px;
  padding: 50px 7.8vw 30px 7.8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-flow: nowrap;
      flex-flow: nowrap;
}

@media screen and (max-width: 767px) {
  #footerBg .footer {
    display: block;
  }
}

#footerBg .footer .Navi01 {
  width: 20vw;
  max-width: 190px;
}

#footerBg .footer .Navi01 .logo {
  width: 7vw;
  max-width: 50px;
}

#footerBg .footer .Navi01 .logo img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  #footerBg .footer .Navi01 {
    margin-bottom: 20px;
  }
}

#footerBg .footer .Navi02 {
  max-width: 450px;
}

@media screen and (max-width: 767px) {
  #footerBg .footer .Navi02 {
    width: 100%;
  }
}

#footerBg .footer .Navi02 a {
  color: #017001;
}

@media screen and (max-width: 767px) {
  #footerBg .footer .Navi03 {
    width: 100%;
    margin-top: 40px;
  }
}

#footerBg .footer .Navi03 a {
  color: #017001;
}

#footerBg .footer li {
  padding-left: 10px;
  position: relative;
  font-size: 14px;
}

#footerBg .footer li::before {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: transparent transparent transparent #878787;
  -webkit-border-image: none;
       -o-border-image: none;
          border-image: none;
  border-style: solid;
  border-width: 5px;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  top: .8em;
  width: 0;
}

@media screen and (max-width: 767px) {
  #footerBg .footer li {
    font-size: 20px;
  }
}

#footerBg .footer a {
  color: #000;
}

.back-top {
  position: fixed;
  background: #e1e1e1;
  right: 0;
  bottom: 4.3em;
  z-index: 30;
}

.back-top a {
  display: block;
  height: 66px;
  width: 66px;
  position: relative;
}

.back-top a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12.5px 20px 12.5px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.copyBox {
  background: #00a300;
}

.copyBox #copy {
  color: #FFFFFF;
  text-align: center;
  font-size: .9rem;
  padding: 2em 0;
}

.copyBox #copy a {
  color: white;
}

.fromBottomIn {
  -webkit-transition: opacity 1.0s ease, -webkit-transform 1.0s ease;
  transition: opacity 1.0s ease, -webkit-transform 1.0s ease;
  transition: transform 1.0s ease, opacity 1.0s ease;
  transition: transform 1.0s ease, opacity 1.0s ease, -webkit-transform 1.0s ease;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1.0;
}

.fromBottomOut {
  -webkit-transition: opacity 1.0s ease, -webkit-transform 1.0s ease;
  transition: opacity 1.0s ease, -webkit-transform 1.0s ease;
  transition: transform 1.0s ease, opacity 1.0s ease;
  transition: transform 1.0s ease, opacity 1.0s ease, -webkit-transform 1.0s ease;
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
  opacity: 0.0;
}

h1,
h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  h1,
  h2 {
    font-size: 2.3rem;
  }
}

h3 {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 2.5rem !important;
  }
}

h4 {
  width: 100%;
  font-size: 1.6em;
  padding: 10px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: bold;
  color: #01374d;
  background: #eaf3fd;
}

.round_back_w {
  padding-top: 0;
}

.BgWhite {
  background-color: #fff;
}

_::-webkit-full-page-media, _:future {
  background-attachment: unset;
}

/*各背景の画像*/

.conte {
  width: 100%;
  margin-bottom: 50px;
}

.conte .inner {
  width: 100%;
  max-width: calc(1200px + ((100vw - 1200px) / 2));
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .conte .inner {
    max-width: 90%;
  }
}

.conte .inner__inner {
  padding: 0 4%;
}

@media screen and (max-width: 767px) {
  .HalfBox30,
  .HalfBox40,
  .HalfBox48,
  .HalfBox50,
  .HalfBox65,
  .HalfBox70 {
    width: 100% !important;
  }
}

_::-webkit-full-page-media, _:future {
  background-attachment: unset;
}

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

/*style*/
.sp {
  display: none !important;
}

.pc {
  display: block;
}

/*===============================================
	font-size
===============================================*/

.f10 {
  font-size: 1.0rem !important;
}

.f12 {
  font-size: 1.2rem !important;
}

.f13 {
  font-size: 1.3rem !important;
}

.f14 {
  font-size: 1.4rem !important;
}

.f18 {
  font-size: 1.8rem !important;
}

.f20 {
  font-size: 2rem !important;
  line-height: 1.5;
}

.f22 {
  font-size: 2.2rem !important;
  line-height: 1.5;
}

.f23 {
  font-size: 2.3rem !important;
  line-height: 1.5;
}

/*===============================================
	float
===============================================*/
.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

/*===============================================
	margine
===============================================*/
.mt0 {
  margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

.mAuto {
  margin: auto !important;
}

/*===============================================
	padding
===============================================*/

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

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

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

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

.pb100 {
  padding-bottom: 100px !important;
}

/*===============================================
	HalfBox
===============================================*/

.HalfBox16 {
  width: 16%;
}

.HalfBox20 {
  width: 20%;
}

.HalfBox30 {
  width: 30%;
}

.HalfBox33 {
  width: 33%;
}

.HalfBox40 {
  width: 40%;
}

.HalfBox48 {
  width: 48%;
}

.HalfBox50 {
  width: 50%;
}

.HalfBox65 {
  width: 65%;
}

.HalfBox70 {
  width: 70%;
}

/*===============================================
	align
===============================================*/

.center {
  text-align: center !important;
  margin: 0 auto !important;
}

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

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

/*===============================================
	color
===============================================*/

.Orange {
  color: #f19300;
}

/*responsive*/
/********max-width:640px************/
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  body {
    font-size: 2.0rem;
    -webkit-text-size-adjust: 100%;
  }
  /*=============================================== 
	上書き
===============================================*/
  /*=============================================== 
	フォントサイズ
===============================================*/
  html {
    font-size: 80.0%;
  }
  body {
    font-size: 1.6rem;
    -webkit-text-size-adjust: 100%;
  }
  /*===============================================*/
  /*=============================================== 
	基本コンテンツ
===============================================*/
  #page {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    border: none;
  }
  img {
    width: 100%;
  }
  /*=============================================== 
	wrapper
===============================================*/
  #wrapper {
    background: #fff;
    width: 100%;
    margin: 0;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  /*=============================================== 
	独自
===============================================*/
}

/********980px〜1200px************/
@media screen and (min-width: 981px) {
  .drawer-overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .drawer-open .drawer-overlay {
    display: block;
  }
}

/********max-width:980px************/
@media screen and (max-width: 980px) {
  .drawer-open {
    overflow: hidden !important;
  }
  .drawer-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    overflow: hidden;
    width: 16.25rem;
    height: 100%;
    color: #222;
    background-color: #fff;
  }
  .drawer-overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .drawer-open .drawer-overlay {
    display: block;
  }
  .drawer--top .drawer-nav {
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 100%;
    -webkit-transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .drawer--top.drawer-open .drawer-nav {
    top: 100px;
  }
  .drawer--top.drawer-open .drawer-nav .free {
    padding: 40px 40px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

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