@charset "UTF-8";

/* fonts
----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto+Condensed:ital,wght@400;500;700&family=Overpass:ital,wght@400;500;700&display=swap');
@import url('https://use.fontawesome.com/releases/v6.4.0/css/all.css');

/* reset
----------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

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;
}

body {
  line-height:1;
}

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

nav ul {
  list-style:none;
}

ul,ol {
  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;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000; 
  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;
}

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;   
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}

* {
  box-sizing:border-box;
}

/* layout
----------------------------------------------------*/
html,body{
	height: 100%;
}

html {
/*  scroll-behavior: smooth;*/
 	font-size: 62.5%; 
}

body{
  color: #333;
  line-height: 1.7;
  font-family: 'Roboto Condensed', 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

#container{
  width:100%;
  min-height: 100vh;
  height: auto !important;
  height: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0 auto;
  -webkit-overflow-scrolling: touch;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 190px;
}
  
footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  overflow: hidden;
  min-height: 190px;
}
  
.inner {
  width: 90%;
  max-width: 1100px; 
  margin: 0 auto;
}

body:not(.home) main .inner {
  max-width: 900px; 
}
  
.sp {display:none;}
.pc {display:block;}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* clearfix */
.cf {
	zoom: 1;
}
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after {
	clear: both;
}

/* link */
a {
  color: #333;
  transition: all .3s linear;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a img {
  transition: all .3s linear;
}

a:hover img {
  opacity: .8;
}

main a {
  color: #333;
}

main a.external_link::before {
  display: inline-block;
  content: "\f08e";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  margin-right: 0.2em;
  color: #1750bf;
}

main a.pdf_link::before {
  display: inline-block;
  content: "\f1c1";
  font-weight: 400;
  font-family: "Font Awesome 6 Free";
  margin-right: 0.2em;
  color: #1750bf;
}

@media only screen and (max-width: 768px) {    
  .sp { display:block; }
  .pc { display:none; }
  
  #wrapper {
    padding-bottom: 0;
  }
  
  footer {
    width: 100%;
    position: static;
  }
}

/* heading
----------------------------------------------------*/
body:not(.home) main h2 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1em;
  padding-bottom: 0.2em;
  position: relative; 
  border-bottom: 4px solid #1750bf;
}

body:not(.home) main h3 {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0.5em;
  padding-left: 0.5em;
  border-left: 6px solid #1750bf;
}

main h4 {
  font-size: 2.4rem;
  font-weight: bold;
	line-height: 1.3;
	margin-bottom: 0.5em;
}

main h5 {
  font-size: 2rem;
  font-weight: bold;
	line-height: 1.3;
	margin-bottom: 0.5em;
}

main h5::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #1750bf;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.2em;
}

main h6 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1em;
}

@media only screen and (max-width: 768px) {
  body:not(.home) main h2 {
    font-size: 2.2rem;
  }

  body:not(.home) main h3 {
    font-size: 1.8rem;
  }

  main h4 {
    font-size: 1.8rem;
  }

  main h5 {
    font-size: 1.6rem;
  }

  main h6 {
    font-size: 1.6rem;
  }
}

/* header
----------------------------------------------------*/
header {
  z-index: 5;
  height: 80px;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  position: fixed;
}

/********** header .inner **********/
header .inner {
  width: 96%;
  max-width: 96%;
  height: 80px;
  display: flex;
  justify-content: right;
  align-items: center;
}
  
/********** logo **********/
header .logo img {
  width: auto;
  height: 50px;
}

header .logo a {
  position: absolute;
  top: 15px;
  left: 2%;
  z-index: 30;
}
  
/********** menu_btn **********/
header .menu_btn { 
  display: none;
}
  
/********** navi_open **********/
header .navi_open {
  position: relative;
  height: auto;
  background: none;
  width: calc(100% - 130px);
  justify-content: flex-end;
  display: flex;
}

/********** gnavi **********/
header .gnavi {
  font-weight: bold;
  display: flex;
  flex-direction: row-reverse;
  width: 80%;
  margin: 0 auto;
}

header .gnavi ul li {
  display: inline-block;
}

header .gnavi ul li a {
  padding: 30px 10px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all .3s linear;
  position: relative;
  box-sizing: border-box;
}

header .gnavi ul li a::before {
  position: absolute;
  transition: .3s;
  content: '';
  width: 20px;
  left: calc(50% - 10px);
  bottom: 20px;
  height: 3px;
  background: #1750bf;
  transform: scale(0,1);
  transform-origin: center;
}

header .gnavi ul li a:hover::before {
  transform: scale(1,1);
}

header .gnavi .logo {
  display: none;
}

/********** btn_contact **********/
header .btn_contact a {
  display: block;
  background: #F03F70;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin: 20px auto;
  text-align: center;
  width: 160px;
  height: 44px;
  line-height: 44px;
  border-radius: 5px;
}

header .btn_contact a::before {
  display: inline-block;
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  margin-right: 0.5em;
  color: #fff;
}

header .btn_contact a:hover {
  opacity: .8;
}
  
@media only screen and (max-width: 1280px) { 
  header {
    height: 60px;
  }
  
  /********** logo **********/
  header .logo img {
    width: auto;
    height: 40px;
  }
  
  header .logo a {
    top: 10px;
  }
  
  /********** header .inner **********/
  header .inner {
    margin: 0 auto;
    height: 60px;
  }
  
  /********** menu_btn **********/
  header .menu_btn { 
    display: block;
    z-index: 30;
    position: fixed;
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin: 0;
    top: 5px;
    right: 10px;
    text-align: center;
  }

  header .menu_btn span {
    content: "";
    display: block;
    position: absolute;
    background: #1750bf;
    width: 40px;
    height: 2px;
    margin: 0;
    right: 2px;
    transition: all .3s ease-in-out;
  }
  
  header .menu_btn span:nth-of-type(1) { 
    top: 15px;
  }

  header .menu_btn span:nth-of-type(2) {
    top: 25px;
  }
  
  header .menu_btn span:nth-of-type(3) {
    top: 35px;
  }

  /***** menu_btn open ****/
  header .menu_btn.open span {
    background: #1750bf;
  }

  header .menu_btn.open span:nth-of-type(1) {
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
    top: 30px;
  }
  
  header .menu_btn.open span:nth-of-type(2) {
    opacity: 0;
  }

  header .menu_btn.open span:nth-of-type(3) {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 30px;
  }

  /********** navi_open **********/
  header .navi_open {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #F5FBFF;
    z-index: 20;
    display: block;
  }

  header .navi_open.close { 
    display: none;
  }

  /********** gnavi **********/
  header .gnavi {
    display: block;
    font-size: 1.6rem;
  }
  
  header .gnavi {
    margin-top: 70px; 
  }
  
  header .gnavi ul li {
    display: block;
  }
  
  header .gnavi ul li a {
    padding: 10px 20px;
  }

  header .gnavi ul li::after{
    content: none;
  }
  
  header .gnavi ul li a::before {
  content: none;
}

  /********** btn_contact **********/
  header .btn_contact a {
    width: 80%;
    max-width: 280px;
  }
}

/* footer
----------------------------------------------------*/
footer {
  background: #1750bf;
  color: #fff;
  text-align: center;
}

footer .inner {
  padding: 20px 0;
}

footer .logo {
  margin-bottom: 20px;
}

footer .logo img {
  width: 110px;
  height: auto;
  margin: 0 auto;
}

footer .footer_txt {
  font-size: 1.2rem;
  margin: 0.5em 0;
}

/********** fnavi **********/
footer ul.fnavi {
  font-size: 1.4rem;
}

footer ul.fnavi li {
  display: inline-block;
  padding: 0 10px;
  position: relative;
}

footer ul.fnavi li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 14px;
  background: #fff;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 5px;
}

footer ul.fnavi li a {
  color: #fff;
  text-decoration: none;
}

/********** copyright **********/
footer .copyright {
  color: #fff;
  font-size: 1.2rem;
  padding: 5px;
}

/********** pagetop **********/
footer a.pagetop {
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  text-indent: -9999px;
  border: 1px solid #0038A7;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  border-radius: 25px;
}
    
footer a.pagetop::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%; 
  width: 6px;
  height: 6px;
  border-top: 2px solid #1750bf;
  border-right: 2px solid #1750bf;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}

@media only screen and (max-width: 768px) { 
  footer .inner {
    min-height: auto;
    display: block;
    padding: 40px 0;
  }
  
  footer .logo {
    margin: 0 auto 30px;
  }
  
  footer .logo img {
    margin: 0 auto 10px;
  }
  
  /********** pagetop **********/
  footer .apagetop {
    bottom: 10px;
  } 
}

/* contact_box
----------------------------------------------------*/
dl.contact_box {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  border: 4px solid #1750bf;
}

dl.contact_box dt {
  text-align: center;
  padding: 20px;
  background: #1750bf;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
}

dl.contact_box dd {
  text-align: center;
  padding: 30px;
}

dl.contact_box dd h3 {
  text-align: center;
  padding: 5px 10px;
  background: #1750bf;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 0.5em;
}

dl.contact_box dd h4 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

dl.contact_box dd ul.btns {
  display: flex;
  justify-content: center;
  max-width: 620px;
  margin: 0 auto 2em;
}

dl.contact_box dd ul.btns li {
  width: 48%;
}

dl.contact_box dd ul.contact_address {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

dl.contact_box dd ul.contact_address li {
  font-weight: bold;
  margin: 0 5px;
}

dl.contact_box dd ul.contact_address li a {
  font-weight: normal;
}

dl.contact_box dd ul.contact_address li.tel span {
  font-size: 2rem;
}

@media only screen and (max-width: 768px) { 
  dl.contact_box dd ul.btns {
    display: block;
  }

  dl.contact_box dd ul.btns li {
    width: 100%;
    margin-bottom: 1em;
  }
  
  dl.contact_box dd ul.contact_address {
    display: block;
  }

  dl.contact_box dd ul.contact_address li {
    margin: 0;
  }
}

/* main
----------------------------------------------------*/
body:not(.home) main .lead p {
  margin-bottom: 2em;
}

/* btn */
main .btn a {
  display: block;
  background: #1750bf;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  max-width: 280px;
  position: relative;
  border: none;
  font-size: 1.6rem;
  border-radius: 30px;
  transition: all .3s linear;
}

/* btn_contact */
main .btn_contact a {
  display: block;
  background: #F03F70;
  color: #fff !important;
  font-weight: bold;
  text-decoration: none !important;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  max-width: 280px;
  position: relative;
  border: none;
  font-size: 1.6rem;
  border-radius: 30px;
}

main .btn_contact a::before {
  display: inline-block;
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  margin-right: 0.5em;
  color: #fff;
}

/* btn_pdf */
main .btn_pdf a {
  display: block;
  background: #fff;
  color: #1750bf;
  font-weight: bold;
  text-decoration: none !important;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  max-width: 280px;
  position: relative;
  font-size: 1.6rem;
  border-radius: 30px;
  border: 1px solid #1750bf;
}

main .btn_pdf a::before {
  display: inline-block;
  content: "\f1c1";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  margin-right: 0.5em;
  color: #1750bf;
}

/* btn_external */
main .btn_external a {
  display: block;
  background: #1750bf;
  color: #fff !important;
  font-weight: bold;
  text-decoration: none !important;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 60px;
  line-height: 60px;
  max-width: 280px;
  position: relative;
  border: none;
  font-size: 1.6rem;
  border-radius: 30px;
}

main .btn_external a::after {
  display: inline-block;
  content: "\f08e";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: #fff;
  font-size: 1.4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

main .btn a:hover,
main .btn_contact a:hover,
main .btn_pdf a:hover {
  opacity: .8;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {  
  main * + .btn,
  main * + .btn_contact {
    margin-top: 1em;
  }
}

/* page_title
----------------------------------------------------*/
.page_title {
  min-height: 120px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  padding: 40px 0;
  background: #F5FBFF;
  position: relative;
}

.page_title::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 20%;
  height: 100%;
  background: url("../img/bg_page_title01.png") no-repeat -5px -10px/cover;
}

.page_title::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 20%;
  height: 100%;
  background: url("../img/bg_page_title02.png") no-repeat 10px -15px/cover;
}

.page_title h1 {
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.3;
  width: 90%;
  margin: 0 auto;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {  
  .page_title {
    margin-top: 60px;
    padding: 20px 0;
  }
  
  .page_title::before {
    width: 15%;
    background: url("../img/bg_page_title01.png") no-repeat right 40px/cover;
  }

  .page_title::after {
    width: 15%;
    background: url("../img/bg_page_title02.png") no-repeat 0 30px/cover;
  }
  
  .page_title h1 {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.3;
    width: 90%;
    margin: 0 auto;
    font-weight: bold;
  }
}

/* section
----------------------------------------------------*/
body:not(.home) main section {
  padding: 40px 0;
}

body:not(.home) main section:last-of-type {
  padding-bottom: 80px;
}

/* list
----------------------------------------------------*/
main ul.list {
  padding-left: 1em;
}

main ol.list {
  padding-left: 1.7em;
}

main ul.list li {
  list-style: disc;
}

main ol.list li {
  list-style: decimal;
}

main ul.ast {
  padding-left: 0;
}

main ul.ast li {
  padding-left: 1em;
  text-indent: -1em;
}

main ul.ast li::before {
  content: "※";
}