@charset "UTF-8";

:root {
  --color1: #113C67;
  --color2: #5DB6E7;
  --color3: #FDFCFC;
  --color4: #F0F4F7;
  --color5: #E4F0F7;
  --color6: #FFC400;
  --color7: #e41d24;
  --hr-color: #ccc;
}

/* フォント */
@font-face {
  font-family: 'LINE Seed JP_OTF Reguler';
  src: url('../font/LINESeedJP_OTF_Rg.otf');
}
@font-face {
  font-family: 'LINE Seed JP_OTF Bold';
  src: url('../font/LINESeedJP_OTF_Bd.otf');
}
@font-face {
  font-family: 'LINE Seed JP_OTF ExtraBold';
  src: url('../font/LINESeedJP_OTF_Eb.otf');
}
 
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
  font-size: 10px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
body {
  line-height: 1.5;
  font-size: 16px;
  font-family: 'LINE Seed JP_OTF Reguler';
  font-style: normal;
  color: var(--color1);
}
* {
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: var(--color1);
}
a:hover {
  text-decoration: none;
}
a:visited {
  color: var(--color1);
}
a:link {
  color: var(--color1);
}
a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
  transition: all .3s;
}
ins {
  background-color: #ff9;
  color: var(--color1);
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: var(--color1);
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--hr-color);
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
::placeholder {
  color: #999;
}
.noscroll {
  overflow: hidden;
}

/* 共通 */
.wrap {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.ank {
  padding-top: 80px;
  margin-top: -80px;
}
.section {
  padding: 130px 0;
}
.sp {
  display: none !important;
}
.center {
	text-align: center;
}
.flex {
	display: flex;
}
.flex_reverse {
	flex-direction: row-reverse;
}
.font_bold {
	font-family: 'LINE Seed JP_OTF Bold';
}
.font_hbold {
	font-family: 'LINE Seed JP_OTF ExtraBold';
}
@media screen and (max-width:768px) {
  .ank {
    padding-top: 60px;
    margin-top: -60px;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .section {
    padding: 80px 0;
  }
}

/* ヘッダー */
.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
.header .inn {
  height: 100%;
  align-items: center;
  padding-left: 20px;
  padding-right: 80px;
}
.header .box {
  height: 80px;
  border-bottom-left-radius: 30px;
  background-color: var(--color5);
  display: flex;
  align-items: center;
  padding: 20px 30px;
  padding-right: 10px;
  margin-left: auto;
}
.header .list {
  gap: 10px;
  margin-left: 10px;
}
.header .item a {
  font-size: 18px;
  border-radius: 50vh;
  background-color: var(--color3);
  padding: 10px 20px 10px 10px;
  display: flex;
  align-items: center;
  transition: all .3s;
}
.header .item a:hover {
  opacity: .75;
}
.header .item.mail a {
  color: var(--color3);
  background-color: var(--color1);
}
.header .item a::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/common/img_tel01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  margin-right: 10px;
}
.header .item.mail a::before {
  background-image: url(../img/common/img_mail01.svg);
}
@media screen and (max-width:1100px) {
  .header {
    background-color: var(--color3);
  }
  .header .box {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .header {
    height: 60px;
  }
  .header .inn {
    padding-right: 60px;
  }
}

/* ドロワーメニュー */
.nav_wrapper {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: opacity .5s ease, visibility .5s ease;
  display: block;
}
.nav_wrapper.fade {
  opacity: 1;
  visibility: visible;
}
.header_nav {
  width: 100%;
  max-width: 380px;
  height: 100%;
  background-color: var(--color1);
  box-sizing: border-box;
  padding: 60px 0 180px;
  overflow-y: scroll;
  margin-left: auto;
  position: relative;
}
.header_nav .nav_list {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.nav_item {
  width: 100%;
  box-sizing: border-box;
}
.nav_item a {
  font-size: 14px;
  color: var(--color3);
  border-bottom: solid 1px var(--color3);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.burger_btn {
  width: 80px;
  height: 80px;
  background-color: var(--color1);
  border: none;
  padding: 0;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  transition: all .3s;
  cursor: pointer;
}
.burger_btn.close {
  background-color: var(--color3);
}
.bar {
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s;
  display: block;
}
.burger_btn.close .bar {
  background-color: var(--color1);
}
.bar_top {
  top: 30px;
}
.burger_btn.close .bar_top {
  transform: translate(-50%, 10px) rotate(45deg);
}
.bar_mid {
  top: 50%;
}
.burger_btn.close .bar_mid {
  opacity: 0;
}
.bar_bottom {
  bottom: 28px;
}
.burger_btn.close .bar_bottom {
  transform: translate(-50%, -10px) rotate(-45deg);
}
@media screen and (max-width:768px) {
  .header_nav {
    max-width: none;
  }
  .burger_btn {
    width: 60px;
    height: 60px;
  }
  .bar_top {
    top: 20px;
  }
  .bar_bottom {
    bottom: 18px;
  }
}
@media screen and (min-width:769px) {
  .header_nav {
    display: flex;
    align-items: center;
    padding: 60px 0;
  }
}

/* フッター */
.footer {
  background-color: var(--color2);
  padding: 10px 0;
}
.copyright {
  font-size: 12px;
  color: var(--color3);
  text-align: right;
}
@media screen and (max-width:768px) {
  .footer {
    margin-bottom: 91px;
  }
  .copyright {
    text-align: center;
  }
}

/* フローティングバナー */
.flbnr {
  width: 100%;
  background-color: var(--color5);
  padding: 10px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.flbnr.scroll {
  opacity: 1;
  visibility: visible;
}
.flbnr .txt {
  font-size: 14px;
  color: var(--color1);
  margin-bottom: 10px;
}
.flbnr .list {
  justify-content: center;
  /* justify-content: space-between; */
}
.flbnr .item {
  width: 49%;
  box-sizing: border-box;
}
.flbnr .item a {
  font-size: 14px;
  border-radius: 50vh;
  background-color: var(--color3);
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.flbnr .item.mail a {
  font-size: 12px;
  color: var(--color3);
  background-color: var(--color1);
}

/* セクションタイトル */
.sectitlebox {
  margin-bottom: 40px;
}
.sectitlebox .secsub {
  font-size: 14px;
  color: var(--color2);
}
.sectitlebox .sectitle {
  font-size: 40px;
}
.sectitlebox .sectxt {
  font-size: 24px;
  margin-top: 50px;
}
@media screen and (max-width:768px) {
  .sectitlebox {
    margin-bottom: 30px;
  }
  .sectitlebox .secsub {
    font-size: 12px;
  }
  .sectitlebox .sectitle {
    font-size: 30px;
  }
  .sectitlebox .sectxt {
    font-size: 16px;
    text-align: justify;
    margin-top: 30px;
  }
}

/* リキャプチャ */
.grecaptcha-badge {
  display: none !important;
}