@charset "UTF-8";
/* CSS Document */

/*リセットCSS*/
html {
  color: #333;
  background: #FFF
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0
}
table {
  border-collapse: collapse;
  border-spacing: 0
}
fieldset, img {
  border: 0
}
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal
}
ol, ul {
  list-style: none
}
caption, th {
  text-align: left
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal
}
q:before, q:after {
  content: ''
}
abbr, acronym {
  border: 0;
  font-variant: normal
}
sup {
  vertical-align: text-top
}
sub {
  vertical-align: text-bottom
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%
}
legend {
  color: #000
}

/*googlefontsCSS*/
body {
  font-family: 'Noto Sans Japanese', sans-serif;
}
body {
  -webkit-text-size-adjust: 100%;
}

footer {
  margin-top: 60px;
}

/*---------------------------------

共通

---------------------------------*/
.inner {
  width: 960px;
  margin: 0 auto;
}
.inner:after {
  content: "";
  clear: both;
  display: block;
}
/*スマホ用コンテナ*/
.inner_container {
  width: 960px;
  margin: 0 auto;
}
.h3_v1 {
  font-size: 1.75rem;
  text-align: center;
  font-weight: bold;
  position: relative;
  display: block;
  margin-bottom: 1em;
}
/*以下で線を表示*/
.h3_v1:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px; /*線の上下位置*/
  display: inline-block;
  width: 40px; /*線の長さ*/
  height: 2px; /*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); /*位置調整*/
  background-color: #055EC1; /*線の色*/
}
.h4_v1 {
  font-size: 1.25rem;
  font-weight: 700;
}
/*P*/
p{
  text-align: justify;
}

.p_v1 {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #333;
  font-feature-settings: "palt";
  margin-top: 10px;
  margin-bottom: 10px;
}
.p_v2 {
  font-size: 0.875rem;
  line-height: 1.75;
  text-align: center;
  color: #333;
  font-feature-settings: "palt";
  margin-top: 10px;
}
.p_v3 {
  font-size: 0.875rem;
  line-height: 2;
  color: #333;
  text-align: justify;
  font-feature-settings: "palt";
  margin-top: 10px;
}
.p_bold {
  font-size: 0.875rem;
  line-height: 2;
  color: #333;
  font-feature-settings: "palt";
  margin-top: 10px;
  font-weight: 700;
}

/*PCスマホセンター*/
.pc-center_sp-center {
  text-align: center;
}
/*PCはセンタースマホは左寄せ*/
.pc-center_sp-left {
  text-align: center;
}
/*余白*/
.padding-top {
  padding-top: 30px;
}
.padding-bottom {
  padding-bottom: 30px;
}
/*テキストリンク*/
.cp_link {
  position: relative;
  display: inline-block;
  transition: .3s;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.875rem;
  color: #055EC1;
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center right 5px;
  padding-right: 30px;
  transition: .3s;
  margin-top: 30px;
}
.cp_link:hover {
  color: #055EC1;
  background-image: url("../images/arrow.svg");
  background-repeat: no-repeat;
  background-position: center right 0;
  padding-right: 30px;
  transition: .3s;
}
/*外部リンク*/
.external{
    background: url("../images/external_link.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 20px;
    margin-left: 5px;
    height: 16px;
}
.external_w{
    background: url("../images/external_link_w.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 20px;
    margin-left: 5px;
    height: 16px;
}
#global-nav ul li.current a {
    color: #055EC1;
}
.center_link{
  text-align: center;
	margin:auto;
}
/*grid*/
.grid1-1-1-1 {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid1-1-1 {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr 1fr;
}
.grid1-1 {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
}
.grid2-1 {
  display: grid;
  gap: 0;
  grid-template-columns: 2fr 1fr;
}
.grid1-1-1-1 {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  text-align: center;
}

.grid1-1-1-1_sp1-1 {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  text-align: center;
}
/*改行位置*/
@media screen and (min-width: 650px) {
  .br-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
@media screen and (min-width: 650px) {
  .br-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}

/*---------------------------------

ナビゲーション

---------------------------------*/

.clear {
	display: none;
 }
.logo {
  height: 40px;
}
/* header */
#top-head {
  font-size: 14px;
  width: 100%;
  margin: auto;
  padding: 15px 0;
  line-height: 1;
  z-index: 999;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
#top-head a, #top-head {
  color: #333;
  text-decoration: none;
  font-weight: 700;
}
#top-head .inner {
  position: relative;
}
#top-head .logo {
  float: left;
  font-size: 50px;
}
#global-nav ul {
  list-style: none;
  position: absolute;
  right: 0;
  bottom: 15px;
  font-size: 14px;
}
#global-nav ul li {
  float: left;
  position: relative;
}
#global-nav ul li a {
  padding: 0 15px;
}
#global-nav ul li a:hover {
  color: #155AA8;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/*外部リンク設定*/
#global-nav ul li a[target="_blank"]{
    background: url("../images/external_link.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 20px;
    margin-left: 5px;
    height: 16px;
}

/* Fixed */
#top-head.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  padding-top: 10px;
  background: #fff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
}
#top-head.fixed .logo {
  font-size: 50px;
  color: #333;
}
#top-head.fixed #global-nav ul li a {
  color: #333;
  padding: 0 15px;
}
/*外部リンク設定*/
#top-head.fixed #global-nav ul li a[target="_blank"]{
    background: url("../images/external_link.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 20px;
    margin-left: 5px;
    height: 16px;
}
#top-head.fixed #global-nav ul li a:hover {
  color: #155AA8;
}
/* Fixed Btn Hover */
#top-head.fixed #global-nav ul li:after {
  bottom: -10px;
}
#top-head.fixed #global-nav ul li:hover:after {
  background: #0062B8;
  bottom: -20px;
}
/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 15px;
  top: 15px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}
#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #333;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .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;
}
.current {
  color: #055EC1;
}
/*---------------------------------

お問い合わせ

---------------------------------*/
.contact {
  padding: 60px 0;
  background-color: #F8FBFF;
  text-align: center;
  margin-top: 120px;
}
/*ボタン*/
.contact_btn {
  display: inline-block;
  width: 240px;
  text-align: left;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: .4s;
  background-color: #055EC1;
  padding: 16px 0;
  margin-top: 30px;
}
.contact_btn a {
  color: #fff;
}
.contact_btn:hover {
  background-color: #508fd4;
  color: #FFF;
}
/*---------------------------------

フッター

---------------------------------*/
.footer_bg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #444444;
}
.footer_h4 {
  font-weight: bold;
  font-size: 0.875rem;
  color: #fff;
  text-align: left;
  ;
}
.footer_link ul li {
  margin: 0 0 16px;
  line-height: 1.2;
}
.footer_link ul {
  padding: 15px 15px 0 0;
  text-align: left;
}
.footer_link a {
  color: #ccc;
  font-size: 0.875rem;
  text-decoration: none;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.footer_link a:hover {
  color: #fff;
}
.copy {
  color: #666;
  font-size: 0.75rem;
  text-align: center;
}

.footer_logo {
  width: 160px;
/*  margin-top: 20px*/
}
.footer_bottom {
  background-color: #444444;
  padding: 10px 0;
  border-top: 1px solid #333;
}
/*grid*/
.footer_grid1-1-1-1 {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
/*---------------------------------

サブビジュアル

---------------------------------*/
#sub-visual {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  background: url("../images/pc_sub_main_left@2x.png") no-repeat top left, url("../images/pc_sub_main_right@2x.png") no-repeat top right, url(images/image-bg.png) repeat-x;
  background-repeat: no-repeat;
  background-size: contain;
}
.sub-visual_text {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
}
