@charset "UTF-8";
html,body { height: 100%;}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;}
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 {  border-collapse: collapse; border-spacing: 0;}
*,*::before,*::after {  -webkit-box-sizing: border-box; box-sizing: border-box;}
em {  font-style: normal;}
html {  font-size: 45.5%;}

@media screen and (min-width: 751px) {
  html {
    font-size: 62.5%;
  }
}
body {
  overflow-x: hidden;
  min-width: 320px;
  font-family: 'Noto Sans JP', "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
    "ＭＳ Ｐゴシック", Osaka, sans-serif, arial, verdana;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.4;
  background-color: #fff;
  text-align: center;
}
[tabindex="-1"]:focus {
  outline: none;
}
a {
  color: #214dd2;
  text-decoration: none;
}
a:visited {
  color: #214dd2;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.wrapper {
  overflow: hidden;
}
.app-erase-display,
.app-show-display,
[class^="ua-device-"],
[class^="local-erase-display-"] {
  display: none;
}
[class*="appView--"],
[class*="userDevice--"],
[class*="parameterDisplay--"] {
  display: none;
}
@media screen and (max-width: 750px) {
  .sp-none {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  .pc-none {
    display: none;
  }
}

.col-org {
  color: #fe5614;
}

/*ーーーーーーーーーー
animation
ーーーーーーーーーーー*/

/*1.フェードインアニメーションの指定*/
.scrollanime {
  opacity: 0;
} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/*2.上下の動きを指定*/
.updown {
  transform: translateY(-30px);
}
.downup {
  transform: translateY(30px);
}

/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
} /*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(200px);
}
.slide-left {
  transform: translateX(-200px);
}


/*ーーーーーーーーーー
矢印
ーーーーーーーーーーー*/
.more-btn {
    position: relative;
    display: inline-block;
    padding: 0 0 8rem;
    text-align: center;
    color: #333;
    font-weight: 500;
    transition: all .2s linear;
}
.more-btn-txt {
    color: #fe5614;
}
.more-btn-arrow {
  position: absolute;
  top: 2em;
  left: 50%;
  transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  animation: 1s arrow-animation infinite;
  width: 0;
  height: 1em;
  border: 0.5px solid #fe5614;
  -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all .2s linear;
}
.more-btn-arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: -1px;
  top: 100%;
  left: -2px;
  width: 1px;
  height: 10px;
  border-top: 10px solid #fe5614;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
}
.more-btn:hover ,
.more-btn:hover * {
    text-decoration: none;
}
.more-btn:hover .more-btn-arrow {
    height: 2em;
}
/* 矢印が伸びるアニメーション
@keyframes arrow-animation {
  0% {
    height: 1em;
  }
  66% {
    height: 2em;
  }
} */
/*ーーーーーーーーーー
.header
ーーーーーーーーーーー*/
#head_wrap {
  top: -100px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  line-height: 1;
  z-index: 999;
  height: 50px;
  text-decoration: none;
}

#head_wrap a {
  text-decoration: none;
}

#head_wrap .inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #fff;
  border-bottom: 1px solid #eee;
}

#head_wrap .inner:after {
  content: "";
  clear: both;
  display: block;
}

#head_wrap .logo {
  float: left;
  display: inline-block;
  width: 25%;
  max-width: 170px;
  vertical-align: middle;
  padding: 10px;
}
#head_wrap .logo-link {
  display: block;
}

#global-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  letter-spacing: normal;
  display: block;
}

#global-nav ul {
  list-style: none;
  font-size: 14px;
  margin-right: 10px;
  display: inline-flex;
}

@media (max-width: 640px) {
  #global-nav ul {
    display: block;
    margin-right: 0px;
  }
}

#global-nav ul li {
  padding: 26px 10px;
}

#global-nav ul li.active {
  border-bottom: 5px solid #fe5614;
}

#global-nav ul li:last-child {
  border-right: none;
}

@media (max-width: 640px) {
  #global-nav ul li {
    border-right: none;
  }
}

#global-nav ul li a {
  padding: 0 5px;
  padding: 2px;
  transition: all 0.6s ease 0s;
  box-sizing: border-box;
  font-weight: bold;
  color: #333;
}

#global-nav ul li:last-child a {
  color: #fff;
  background-color: #fe5614;
  border-radius: 2rem;
  padding: 0.5rem 1.8rem !important;
}

/* Fixed */
#head_wrap.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  height: 100px;
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
  z-index: 9999;
}

#head_wrap.fixed .logo {
  font-size: 36px;
  color: #333;
}

#head_wrap.fixed #global-nav ul li a {
  color: #333;
  padding: 0 5px;
}
#head_wrap.fixed #global-nav ul li:last-child a {
  color: #fff;
}

/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 12px;
  top: 14px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}

#nav-toggle div {
  position: relative;
}

@media (max-width: 640px) {
  #head_wrap {
    top: 0;
    position: fixed;
    margin-top: 0;
    width: 100%;
    padding: 0;
    /* Fixed reset */
  }

  #head_wrap .inner {
    width: 100%;
    padding: 0;
  }
  #head_wrap .fixed {
    padding-top: 0;
    background: transparent;
  }
  #mobile-head {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 56px;
    z-index: 999;
    position: relative;
  }
  #head_wrap.fixed .logo,
  #head_wrap .logo {
    width: 40%;
    max-width: 130px;
  }
  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -500px;
    background: #fff;
    width: 100%;
    text-align: center;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  #global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 14px;
    margin: 20px 0;
  }
  #global-nav ul li {
    float: none;
    position: static;
    padding: 10px 10px;
  }
  #head_wrap #global-nav ul li a,
  #head_wrap.fixed #global-nav ul li a {
    min-width: 50%;
    display: inline-block;
    padding: 5px 0;
  }
  #global-nav ul li:last-child a {
    padding: 10px 10px !important;
  }

  #nav-toggle {
    display: block;
  }
  /* #nav-toggle 切り替えアニメーション */
  #nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fe5614;
    left: 0;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 0;
  }
  #nav-toggle span:nth-child(2) {
    top: 11px;
  }
  #nav-toggle span:nth-child(3) {
    top: 22px;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  /* #global-nav スライドアニメーション */
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 0 0;
    background: #fff;
    overflow: auto;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
}

#menu1,
#menu2,
#menu3,
#menu4,
#menu5 {
  margin-top: 500px;
  padding-top: 130px;
}

#menu5 {
  padding-bottom: 100vh;
}

/*ーーーーーーーーーー
.footer
ーーーーーーーーーーー*/
footer {
  padding: 10rem 0 0;
}
.footer-logo img {
  max-width: 100px;
}
.footer-c-name {
    font-weight: 900;
    padding: 0 0 2rem;
    font-size: 2rem;
}
.footer-c-name a {
  color: #333 !important;
}
.footer-c-name:first-letter {
    color: #fe5614;
}
.footer-sitemap {
  padding: 1rem 0 3rem;
}
.footer-sitemap li {
  display: inline-block;
  padding: 2rem 1rem;
  font-size: 1.8rem;
}
.footer-sitemap li a {
  color: #333;
}
small.ft-cr__txt {
  color: #666;
  margin: 5rem 0 0 0;
}

@media (max-width: 640px) {
.footer-logo img {
  max-width: 80px;
}
}


/* ��������������������������������������������������
�@�����`
���������������������������������������������������@*/
.custom-shape-divider-top-1616505365 svg {
  position: relative;
  display: block;
  width: calc(166% + 1.3px);
  height: 8rem;
  transform: rotateY(180deg);
}

.custom-shape-divider-top-1616505365 .shape-fill {
  fill: #ffffff;
}

.custom-shape-divider-bottom-1616505717 svg {
  position: relative;
  display: block;
  width: calc(166% + 1.3px);
  height: 8rem;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1616505717 .shape-fill-b {
  fill: #f6f6f6;
}
/* wid */

.wid10 {
  width: 10%;
}
.wid20 {
  width: 20%;
}
.wid30 {
  width: 30%;
}
.wid40 {
  width: 40%;
}
.wid50 {
  width: 50%;
}
.wid60 {
  width: 60%;
}
.wid70 {
  width: 70%;
}
.wid80 {
  width: 80%;
}
.wid90 {
  width: 90%;
}
.wid100 {
  width: 100%;
}

.item1 .list-inner {
  width: 100%;
  text-align: center;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.item2 .list-inner {
  width: 50%;
  -ms-flex-preferred-size: 48%;
  flex-basis: 48%;
}
.item3 .list-inner {
  width: 33.3%;
  -ms-flex-preferred-size: 31.3%;
  flex-basis: 31.3%;
}
.item4 .list-inner {
  width: 25%;
  -ms-flex-preferred-size: 22%;
  flex-basis: 22%;
}
.item5 .list-inner {
  width: 20%;
  -ms-flex-preferred-size: 18%;
  flex-basis: 18%;
}

/*　-------------- form ------------------　*/
#formWrap {
  display: inline-block;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
table.formTable td,
table.formTable th {
  display: block;
  padding: 10px;
  text-align: left;
}
table.formTable th {
  font-weight: normal;
  text-align: left;
}
.form-select {
	overflow: hidden;
	width: 97%;
	margin: .8em auto 1em;
	text-align: center;
	position: relative;
	border: 1px solid #e1e1e1;
	border-radius: 2px;
	background: #ffffff;
}
.form-select select {
	width: 100%;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	padding: .5rem;
	color: #333333;
}
.form-select select::-ms-expand {
    display: none;
}
.form-select::before {
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #333333;
	pointer-events: none;
}

#formWrap input {
  border: 1px solid #e1e1e1;
  padding: 1rem;
  width: 100%;
}
#formWrap textarea {
  border: 1px solid #e1e1e1;
  padding: 1rem;
  height: 200px;
  width: 100%;
}
#formWrap tr:last-child textarea {
  height: 100px;
}
.form-icon-required {
  display: inline-block;
  background-color: #fe5614;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.3em 0.8rem;
  margin: 0 auto 0 1.5rem;
}
#formWrap .form-btn input {
  position: relative;
    background-color: #fe5614;
    color: #fff;
    /* line-height: 52px; */
    -webkit-transition: none;
    transition: none;
    box-shadow: 0 3px 0 #c7430f;
    display: inline-block;
    width: 40%;
    border-radius: 5px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 1rem auto;
    font-size: 2rem;
    padding: .8em 0;
    border: 0;
}
#formWrap .form-btn input:hover {
  top: -4px;
  box-shadow: 0 7px 0 #c7430f;
}
#formWrap .form-btn input:active {
  top: 3px;
  box-shadow: none;
}
/*ーーーーーーーーーー
mail form
ーーーーーーーーーーー*/
.tanks-area {
  padding: 2em 0;
}
.back-top-link {
  display: inline-block;
  color: #fff;
  background-color: #fe5614;
  border-radius: 2rem;
  padding: 1rem 2rem !important;
  margin: 0 auto 1em;
}
.back-top-link:hover {
  background-color: #ff692e;
  text-decoration: none;
}


/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width: 572px) {
  table.formTable {
      font-size: 2rem;
  }
  table.formTable th,
  table.formTable td {
      width: auto;
      display: block;
  }
  table.formTable th {
      margin-top: 5px;
      border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .wid10 {
    width: 100%;
  }
  .wid20 {
    width: 100%;
  }
  .wid30 {
    width: 100%;
  }
  .wid40 {
    width: 100%;
  }
  .wid50 {
    width: 100%;
  }
  .wid60 {
    width: 100%;
  }
  .wid70 {
    width: 100%;
  }
  .wid80 {
    width: 100%;
  }
  .wid90 {
    width: 100%;
  }
  .wid100 {
    width: 100%;
  }
  .item1 .list-inner,
  .item2 .list-inner,
  .item3 .list-inner,
  .item4 .list-inner,
  .item5 .list-inner {
    width: 100%;
    text-align: center;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.pt1 {
    padding-top: 1rem !important;
}
.pt2 {
    padding-top: 2rem !important;
}
.pt3 {
    padding-top: 3rem !important;
}
.pb1 {
    padding-bottom: 1rem !important;
}
.pb2 {
    padding-bottom: 2rem !important;
}
.pb3 {
    padding-bottom: 3rem !important;
}
.mt1 {
    margin-top: 1rem !important;
}
.mt2 {
    margin-top: 2rem !important;
}
.mt3 {
    margin-top: 3rem !important;
}
.mb1 {
    margin-bottom: 1rem !important;
}
.mb2 {
    margin-bottom: 2rem !important;
}
.mb3 {
    margin-bottom: 3rem !important;
}