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


/*-----------
base
-----------*/

:root {
  --vw: 1vw;
}

*{
  margin:0;
  padding:0;
  border:none;
}

html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

h1, h2, h3, h4, h5, h6{
  font-weight: 500;
}

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

img{
  vertical-align: top;
}

ul{
  list-style: none;
}

a {
  cursor: pointer;
  transition: 0.2s ease-in-out;
  color: #007096;
}

@media (hover: hover) and (pointer: fine) {
a:hover {
  text-decoration: none;
}
}

sup,
sub{
  font-size: 0.5em;
}

sub{
  vertical-align: baseline;
}

button {
  cursor: pointer;
  font: inherit;
}


html,select,input,input[type="file"] {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  -o-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: .6px;
  font-size: 16px;
  line-height: 1.7;
  color:#000;
  -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%;
}

.bold{
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}

.fs14{
  font-size: 14px;
}

.fs16{
  font-size: 16px;
}

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

.pt0{
  padding-top: 0 !important;
}

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

.h100p{
  height: 100%;
  box-sizing: border-box;
}


/*-----------
breadcrumb
-----------*/

.breadcrumb {
  width: 100%;
  background: #fff;
  padding: 15px 0 0;
}

.breadcrumb .breadcrumb_inner {
  width: 1100px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  font-size: 12px;
}

.breadcrumb li {
  position: relative;
  padding-left: 17px;
  color: #000;
  font-weight: bold;
}

.breadcrumb li + li:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 4px;
  margin: -3px 0 0;
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(45deg);
}

.breadcrumb li:first-child {
  padding-left: 0;
}

.breadcrumb li:last-child {
  padding-right: 10px;
}

.breadcrumb li a {
  font-weight: 500;
}


/*-----------
contents
-----------*/

.contents {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: calc(100vh - 186px - 518px);
  position: relative;
}

.contents > :last-child {
  flex-grow: 1; /* ページ高さに余りがある場合に背景を伸ばせるように */
}

.contents h1 {
  font-size: 34px;
  display: flex;
  justify-content: center;
  align-items:center;
  margin: 60px 0 0;
  min-width: 1100px;
}

.contents h1 span {
  display: block;
  background: #1b365d;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-left: 20px;
  padding: 0 7px;
  width: fit-content;
}

.contents h1 .h1_small_txt {
  display: inline;
  background: none;
  color: inherit;
  font-size: 26px;
  font-weight: inherit;
  margin-left: 4px;
  padding: 0;
  width: auto;
}

.contents_box {
  width: 1100px;
  margin: 0 auto;
  padding: 70px 0;
  position: relative;
  box-sizing: border-box;
}

.contents_box_mt {
  width: 1100px;
  margin: 70px auto 0;
  padding: 70px 0 90px;
  position: relative;
  box-sizing: border-box;
}

.contents_box h2 {
  width: fit-content;
  font-size: 26px;
  font-weight: bold;
  margin: 0 auto 20px;
  border-bottom: 1px solid #000;
}

.contents_box h2 span {
  font-size: 20px;
}

.boder_b:after{
  content: "";
  width: calc(var(--vw) * 100);
  min-width: 100%;
  height: 1px;
  background: #e4e4e4;
  position: absolute;
  bottom: 0;
  left: calc((100% - (var(--vw) * 100)) / 2);
  z-index: -1;
}

.bg_gray:after{
  content: "";
  width: calc(var(--vw) * 100);
  min-width: 100%;
  height: 100%;
  background: #f4f4f4;
  position: absolute;
  top: 0;
  left: calc((100% - (var(--vw) * 100) ) / 2);
  z-index: -1;
}


@media screen and (min-width:768px) and ( max-width:1100px) {

  .boder_b:after{
    left:0;
  }

  .bg_gray:after{
    left:0;
  }
}



/*
PC
---------------------------------------------------------------------*/

@media print, screen and ( min-width : 769px ) {

.pc_no{
  display: none !important;
}

.pc_mt10{
  margin-top: 10px !important;
}

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

.pc_mt25{
  margin-top: 25px !important;
}

.pc_mt70{
  margin-top: 70px !important;
}

.pc_pt30{
  padding-top: 30px !important;
}

.pc_pt40{
  padding-top: 40px !important;
}

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

.pc_pb40{
  padding-bottom: 40px !important;
}

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

.pc_mb15{
  margin-bottom: 15px !important;
}

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

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

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

.pc_mb70{
  margin-bottom: 70px !important;
}

.pc_pt15{
  padding-top: 15px !important;
}

}


/*
SP
---------------------------------------------------------------------*/

@media only screen and ( max-width : 768px ) {

  html,select,input,input[type="file"] {
    font-size: calc(100vw / ( 375 / 16 ));
  }


  a {
    transition: none;
  }

  .sp_no{
    display: none !important;
  }

  .sp_mt10{
    margin-top: 10px !important;
  }

  .sp_mt30{
    margin-top: 30px !important;
  }

  .sp_mt2p{
    margin-top: 2% !important;
  }

  .sp_mt5p{
    margin-top: 5% !important;
  }

  .sp_mb0{
    margin-bottom: 0 !important;
  }

  .sp_mb10p{
    margin-bottom: 10% !important;
  }

  .sp_pt7p{
    padding-top: 7% !important;
  }
  .sp_pb0{
    padding-bottom: 0 !important;
  }
  .sp_pt2p{
    padding-top: 2% !important;
  }


  /*-----------
  breadcrumb
  -----------*/

  .breadcrumb {
    padding: 5px 0 0;
  }

  .breadcrumb .breadcrumb_inner {
    width: 97%;
    margin: 0 0 0 3%;
    font-size: calc(100vw / ( 375 / 11 ));
  }

  .breadcrumb .breadcrumb_inner {
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
  }

  .breadcrumb .breadcrumb_inner::-webkit-scrollbar {
    display: none;
  }



  /*-----------
  contents
  -----------*/

  .contents {
    margin: 62px auto 0;
    min-height: 0;
  }
  .contents h1 {
    font-size: calc(100vw / ( 375 / 24 ));
    display: block;
    margin: 12% 0 0;
    text-align: center;
    min-width: 100%;
  }

  .contents h1 span{ 
    font-size: calc(100vw / ( 375 / 11 ));
    margin: 0 auto;
  }

  .contents h1 .h1_small_txt {
    font-size: calc(100vw / ( 375 / 20 ));
    margin-left: 4px;
  }

  .contents_box {
    width: 92%;
    margin: 0 4%;
    padding: 11% 0 13%;
  }
  
  .contents_box_mt {
    width: 92%;
    min-height: 0;
    margin: 11% 4% 0;
    padding: 9% 0 20%;
  }

  .contents_box h2 {
    font-size: calc(100vw / ( 375 / 19 ));
    margin: 0 auto 5%;
  }

  .contents_box h2 span {
    font-size: calc(100vw / ( 375 / 14 ));
  }

}