@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/*--カスタムプロパティ--*/
:root {
  --BaseColor: #01214f;
  --SubColor: #22415f;
  --BtnColor: #c79d3b;
  --TableBgColor: #f0f8ff;
  --GrayBgColor: #f2f4f6;;
  --linkColor: #4472C4;
  --NumberColor: #DA0015;
}

/*--共通--*/
a {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  color: #222;
  font-size: 1.0em;
  color: var(--linkColor);
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}

img,
svg {
  max-width: 100%;
  vertical-align: bottom;
}

ul,
ol {
  list-style: none;
}

/* [UL] style01
----------------------------------------------------------*/
ul.style01 {
  margin: 0 0 2% 2%;
  list-style-type: disc;
}
ul.last {
  margin-bottom: 0;
}
ul.style01 li {
  padding-bottom: 0.5%;
  overflow: unset!important;
  line-height: 150%;
}
ul.style01 li:last-child {
  padding-bottom:0;
}
li ul.style01 {
  margin-left: 4%;
}

/* [OL] style01
----------------------------------------------------------*/
ol.style01 {
  margin-left: 2%;
  list-style-type: decimal;
}
ol.style01 li {
  padding-bottom: 0.5%;
  overflow: unset!important;
  line-height: 150%;
}
ol.style01 li:last-child {
  padding-bottom:0;
}
li ol.style01 {
  margin-left: 4%;
}

.wrap_mv {
  max-width: 100%;
  /* margin: 0 5.3vw; */
}

.wrap_l {
  max-width: 88.6vw;
  margin: 0 auto;
}

.wrap_r {
  max-width: 75vw;
  margin: 0 auto;
}

.wrap_s {
  max-width: 65vw;
  margin: 0 auto;
}

.inline_block {
  display: inline-block;
}

.pc_none {
  display: none;
}

body {
  /* font-family: "游ゴシック体", "Yu Gothic", YuGothic, 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif; */
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Godthic Pro W3", sans-serif;
  -webkit-text-size-adjust: none;
  color: #000;
  font-weight: 400;
  line-height: 1.57;
  font-size: 1.05vw;
  letter-spacing: 0.05em;
}

/* 上下余白 */
.baseBox {
  padding: 5% 0;
}
/* 左右幅 */
.shortBox {
  margin: 0 auto;
  width: 66%;
}
.middleBox {
  margin: 0 auto;
  width: 72%;
}
.middleBox .shortBox {
  margin: 0 auto;
  width: 90%;
}
.largeBox {
  margin: 0 auto;
  width: 80%;
}
.largeBox .middleBox {
  margin: 0 auto;
  padding: 5%;
  box-sizing: border-box;
  width: 100%;
}

/* 余白 */
.innerBox {
  padding-bottom: 4%;
}
.innerBoxLast {
  padding-bottom: 0;
}

/* miniTextBox */
.miniTextBox {
  /*padding-bottom: 2%;*/
  text-align:center;
}

/* a */
a img:hover {
  opacity:0.9;
}

/* フォントサイズ */
.small {
  font-size: 0.9vw;
}
.middle {
  font-size: 1.0vw;
}
.large {
  font-weight: 600;
  font-size: 1.4vw;
}

/* コンテンツの最終テキスト */
.lastText {
  padding-bottom: 0!important;
  text-align: center;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 600;
  font-size: 1.5vw;
}

/* P */
p {
  padding:0 0 1% 0;
  line-height: 1.57;
  font-weight: 300;
}
p.last {
  padding-bottom: 0;
}
.indentBox {
  padding-bottom: 20px;
  padding-left:1em;
  text-indent:-1em;
}

/* インデント */
.indent {
  padding-bottom: 0;
  padding-left:1em;
  text-indent:-1em;
}
.indent02 {
  padding-bottom: 0;
  padding-left:2em;
  text-indent:-2em;
  line-height: 170%;
  font-size: 0.9vw;
}

/* PC版の発信リンクを無効にする */
a.telLink {
  pointer-events:none;
  text-decoration:none;
}
a[href*="tel:"] {
  pointer-events: none;
  text-decoration: none;
  color: #000;
}

/* リンクボタン */
a.btn {
  margin:0 auto;
  padding: 4% 0;
  background: #fff url(../images/common/arrow02.png) 94% 50% no-repeat;
  background-size: 1.0vw;
  border: 1px solid #000;
  text-decoration:none;
  display:block;
  text-align:center;
  width: 70%;
  color: #000;
  font-weight: bold;
}
a.btn:hover {
  opacity: 0.9;
}
a.btn {
  padding: 0.8vw 0;
  width: 25%;
  font-size: 1.1vw;
}

/* サイズ調整用 */
a.btn30 {
  width:30%;
}
a.btn40 {
  width:40%;
}
a.btn50 {
  width:50%;
}
a.btn60 {
  width:60%;
}
a.btn70 {
  width:70%;
}

/* 画像回り込み */
.photoL {
  padding: 0 30px 30px 0;
  box-sizing: border-box;
  width: 38%;
  float: left;
}
.photoR {
  padding: 0 0 30px 30px;
  box-sizing: border-box;
  width: 38%;
  float: right;
}
.photoL p,
.photoR p {
  padding-top: 5px;
  text-align: center;
}
.photoL img,
.photoR img {
  width: 100%;
}

.mv_link_icon a:hover {
  text-decoration: none;
  opacity: 0.8;
}

/*--トップページ 各セクション上下余白--*/
.top_con01,
.top_con02,
.top_con03,
.top_flow,
.top_faq {
  padding-top: 4.5vw;
  padding-bottom: 4.5vw;
}


/* header
---------------------------------------------------------------------*/

header#headerType02 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

#headerInner {
  height: 5.05vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
header#headerType02 #logo {
  padding-left: 3vw;
  background: var(--BaseColor);
  box-sizing: border-box;
  width: 34.5%;
  height: inherit;
  line-height: 170%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
header#headerType02 #logo a {
  text-decoration: none;
  outline: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.35vw;
}
header#headerType02 #logo h1 {
  color: #fff;
  font-weight: 400;
  font-size: 1.35vw;
  letter-spacing: 0.08em;
}
header#headerType02 #logo .logo_subTtl {
  padding-left: 0.2vw;
  display: block;
  line-height: 1.1;
  font-weight: 400;
  font-size: 0.75vw;
  letter-spacing: 0.05em;
}
#headerBox {
  position: relative;
  padding-right: 3vw;
  width: 55%;
}

/*-----------------fixedBox-----------------*/
header#headerType02 #menuBtn {
  display:none;
}
header#headerType02 #fixedBox {
  background: #fff;
}
header#headerType02 #fixedBox nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header#headerType02 #fixedBox nav li:nth-of-type(-n+3) {
}
header#headerType02 #fixedBox nav li.contactList a {
  background: var(--BtnColor);
  border-radius: 50px;
  color: #fff;
  font-size: 1vw;
}
header#headerType02 #fixedBox nav li.contactList a:hover {
  opacity: 0.9;
}
header#headerType02 #fixedBox nav li.contactList a::after {
  background: none;
}
header#headerType02 #fixedBox nav li a {
  padding: 1.0vw 0 1.0vw 0;
  display:block;
  text-align:center;
  text-decoration:none;
  color: #000;
  line-height: 100%;
  font-weight: 400;
  font-size: 0.95vw;
  letter-spacing: 0.01em;
}

/* ホバー時の下線 */
header#headerType02 #fixedBox nav li a::after {
  position: absolute;
  left: 0%;
  content: '';
  width: 100%;
  height: 2px;
  background: var(--BaseColor);
  bottom: -1px;               /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
header#headerType02 #fixedBox nav li a:hover::after {
  transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}


/*-------------------------プルダウン本体-------------------------*/
.menu {
  margin: 0 auto;
  list-style-type:none;
  width: 100%;
/*  font-size: 0; 余白処理用 */
}
.menu > li {
  box-sizing: border-box;
  display:inline-block;
  position:relative;
}
.menu > li:nth-child(1) {
  width: 11%;
}
.menu > li:nth-child(2) {
  width: 13%;
}
.menu > li:nth-child(3) {
  width: 11%;
}
.menu > li:nth-child(4) {
  width: 14%;
}
.menu > li:nth-child(5) {
  width: 27%;
}
.menu li.contactList {
  width: 24%;
}
.menu > li > ul {
  display:none;
  z-index: 9999;
}
.menu > li:hover ul {
  display:block;
  position:absolute;
  padding:0;
  margin:0;
  top: 90%;
  left: -60%;
  list-style-type:none;
}

/* tel */
.menu > li.telList {
  line-height: 100%;
}
.menu > li span.tel {
  padding: 0.4vw 0 0 2vw;
  background: url(../images/common/arrow_tel01.png) no-repeat 5% 100%;
  background-size: 1.1vw;
  display: block;
  font-weight: 400;
  font-size: 1.6vw;
  letter-spacing: normal;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.55em;
}
.menu > li span.date {
  padding: 0 0 0 8%;
  line-height: 2.3;
  letter-spacing: normal;
  font-size: 0.7em;
  font-family: 'Noto Serif JP', serif;
}
.fixed {
  background: #fff;
    position: fixed;
    top: 0;
    z-index: 10000;
    width: 100%;
}

.h_tel img {
  width: 1.35vw;
  height: auto;
  margin-right: 0.2em;
  margin-bottom: 0.1em;
}

.h_tel {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 1.35em;
  color: #000;
  margin-left: 0.6em;
  line-height: 1;
}

span.reception {
  font-size: 0.45em;
  color: #000;
  display: block;
  text-align: center;
  /* padding-left: 1em; */
  padding-top: 0.3em;
}

.contactList a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  font-size: 1em;
  display: inline-block;
  margin-right: 6px;
  color: #fff;
}

/* hamburger ハンバーガーメニューボタン
------------------------------------------------------------*/
.hamburger {
  display: none;
}

.hamburger span {
  display: none;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 23px;
  left: 50%;
  background: #fff;
  transform: translate(-50%, 0) rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 23px;
  background: #fff;
  transform: translate(-50%, 0) rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(71, 70, 73, 0.95);
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: all 0.4s;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 70px 0 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  padding-left: 0.3em;
  width: 90%;
  margin: 0 auto;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
  position: relative;
}

nav.globalMenuSp ul li::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  color: #fff;
  font-weight: 900;
  font-size: 0.8em;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
}

.sp_nav_contact {
  text-align: center;
  margin-top: 2em;
}

.sp_nav_contact a {
  color: #fff;
  font-weight: 600;
  background-color: var(--SubColor);
  display: block;
  width: 70%;
  margin: 10px auto;
  padding: 1.2em;
  position: relative;
}

.sp_nav_contact a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  color: #fff;
  font-weight: 900;
  font-size: 0.8em;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
  transform: translateX(0%);
}


/*  contact_area
----------------------------------------------------------------*/
.contact_area{
	background: url("../images/contact_area_bg.jpg") no-repeat;
	background-size: cover;
	background-position: center top;
	padding: 3.5% 0 4.5%;
	color: #fff;
	text-align: center;
	position: relative;
}
.contact_area::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.35);
}
.contact_area_innre{
	position: relative;
	z-index: 1;
}
.contact_area_ttl{
	font-size: 2.5vw;
	font-family: 'Noto Serif JP', serif;
}
.contact_point{
	font-size: 1.05vw;
	font-weight: 400;
	display: flex;
	justify-content: space-around;
	width: 75%;
	margin: 0 auto;
	padding-top: 1%;
	padding-bottom: 3.0%;
}
.contact_point li{
	width: 30.0%;
	padding: 1.3% 0;
	border:  1px solid #fff;
}
.contact_point li span.font_small{
	font-size: 0.8em;
}
.contact_linkbox{
	display: flex;
	align-items: center;
	background-color: #fff;
	position: relative;
	padding: 1.58vw 0;
}
.contact_linkbox::before{
	content: "";
	display: block;
	width: 1px;
	height: calc(100% - 3.1vw);
	background-color: #cccccc;
	position: absolute;
	left: 50%;
}
.contact_linkbox a{
	text-decoration: none;
}
.contact_linkbox li{
	width: 50%;
}
.contact_linkbox li:first-of-type a img{
	width: 2.1vw;
	height: auto;
	padding-bottom: 0.76vw;
	padding-right: 0.3vw;
}
.contact_linkbox li:first-of-type a{
	font-family: 'Noto Serif JP', serif;
	font-size: 3.0vw;
	line-height: 1.25;
	color: #000;
}
.contact_linkbox li:first-of-type a span{
	font-size: 0.9vw;
	display: block;
}
.contact_linkbox li:nth-of-type(2) a{
	font-size: 1.4vw;
	font-weight: 400;
	color: #fff;
	background-color: var(--BtnColor);
	width: 72%;
	line-height: 4.1vw;
	margin: 0 auto;
	display: block;

	position: relative;
	overflow: hidden;
	transition: ease .2s;
}
.contact_linkbox li:nth-of-type(2) a:hover{
	opacity: 0.9;
}
.contact_linkbox li:nth-of-type(2) a div::before{
	font-family: "Font Awesome 5 Free";
	content: '\f0e0';
	color: #fff;
	font-weight: 900;
	font-size: 1.15vw;
	padding-right: 0.6vw;
	position: relative;
	top: 0vw;
}
.contact_linkbox li:nth-of-type(2) a span{
	font-size:0.95vw;
	margin-left: 1.2em;
}

/*  footer
  ----------------------------------------------------------*/
  footer {
    background-color: var(--GrayBgColor);
    padding: 4vw 0;
  }

  #contact footer {
    padding: 0 0 5vw 0;
  }

  .footer_top {
    display: flex;
    justify-content: space-between;
    padding: 0 14.5% 3%;
    border-bottom: 1px solid #999;
    font-size: 0.93vw;
    gap: 3em;
  }

  .footer_logo_outer {
    display: flex;
    justify-content: left;
    align-items: center;
    /*ロゴの右側余白*/
    gap: 0.0vw;
  }

  .footer_company_name {
    font-size: 1.38vw;
    line-height: 1.1;
    font-weight: 400;
    /* padding-top: 1.4%; */
    color: #000;
  }
  /*ロゴの横幅*/
  .footer__company-logo img {
    width: 0.0vw;
  }

  .footer_company_subName {
    font-size: 0.85em;
    /* font-weight: 400; */
    display: block;
  }

  /* .footer_access {
    width: 68.5%;
  } */
  .footer_add {
    padding-bottom: 2%;
    font-size: 1em;
    font-weight: 300;
  }

  .footer_post_code {
    display: inline-block;
    padding-right: 1em;
  }

  .footer_howto {
    line-height: 1.8;
    font-size: 0.9em;
    font-weight: 300;
  }

  .footer_howto_attention {
    padding: 1% 0 1% 0;
  }

  .footer_howto>ul li:nth-child(3) {
    display: inline;
  }

  /* .footer_howto>ul li+li::before {
    content: " ／ ";
  } */

  .footer_bottom {
    padding: 3% 0;
  }

  .footer_bottom a {
    text-decoration: none;
  }

  .footer_nav01 {
    display: flex;
    justify-content: center;
  }

  .footer_nav02 {
    display: flex;
    justify-content: center;
    padding-left: 1.4em;
    padding-right: 1.4em;
  }

  .footer_nav01 {
    padding-bottom: 1.1%;
  }

  .footer_nav01 a,
  .footer_nav02 a {
    font-size: 0.89em;
    font-weight: 300;
    line-height: 140%;
    color: #000;
    text-decoration: none;
  }

  .footer_nav01 li a:hover,
  .footer_nav02 li a:hover {
    opacity: 0.8;
  }

  .footer_nav01 li {
    padding: 0 1.0em;
  }

  .footer_nav02 li {
    padding: 0 1.5em;
  }

  .copyright {
    font-size: 0.85vw;
    text-align: center;
    font-weight: 300;
  }

  .footer_sp_nav {
    display: none;
  }

/*== page top==*/

/*------------------リンクの形状------------------*/
#page-top a {
  background-color: var(--BaseColor);
  width: 3.2vw;
  height: 3.2vw;
  border: 1px solid #f3f3f3;
  border-radius: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

#page-top a img {
  width: 50%;
}


/*---------------リンクを右下に固定---------------*/
#page-top {
  position: fixed;
  right: 3.2vw;
  bottom: 1.7vw;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

#page-top a:hover {
  opacity: 0.9;
}

/*-----------------上に上がる動き-----------------*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-----------------下に下がる動き-----------------*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
  opacity: 0;
  bottom: 0
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

/*  thanks
----------------------------------------------------*/

#thanks {
  color: #000;
  font-family:'メイリオ', 'Meiryo', sans-serif;
}

#thanks a {
  color: #4472C4;
}

.thanks_table {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.thanks_head {
margin-bottom: 0.6em;
text-align: center;
font-size: 1.25em;
font-weight: 600;
}

.thanks_text {
  text-align: left;
  font-weight: 400;
  font-size: 1em;
  line-height: 2;
}

.thanks_text:nth-of-type(2) {
  margin-top: 0.7em;
}


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

  タブレット（959px以下の時に適用されます）

--------------------------------------------------------------------------- */
@media screen and (max-width: 959px) {

  /*ヘッダーロゴ*/
  h1 a {
    font-size: 1.8em;
    font-weight: 400;
    line-height: 1;
    color: #000;
  }

  /*ハンバーガーメニュー*/

  .wrap_mv {
    margin: 0;
  }

  /* クリックでjQueryで追加・削除 */
  nav.globalMenuSp.active {
    opacity: 100;
    display: block;
    transform: translateX(0%);
  }

  /*--共通--*/
  .wrap_r {
    max-width: 90%;
  }

  .wrap_s {
    max-width: 90%;
  }

  .sp_nav .contact {
    text-align: center;
    margin-top: 2em;
  }

  .sp_nav .contact a {
    color: rgb(255, 255, 255);
    font-weight: bold;
    background-color: var(--SubColor);
    display: block;
    width: 70%;
    position: relative;
    margin: 10px auto;
    padding: 1.2em;
  }

  .sp_nav .contact a::after {
    font-family: "Font Awesome 5 Free";
    content: "";
    color: rgb(255, 255, 255);
    font-weight: 900;
    font-size: 0.8em;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
  }

.footer_sp_nav_inner {
  width: 100%;
  margin: 0 auto;
}

.footer_sp_nav01,
.footer_sp_nav02,
.footer_sp_nav03 {
  line-height: 1.6;
  display: inline-block;
  width: 24%;
  padding: 8px 0 2px;
}

#slide_menu {
  position: fixed;
  top: 0;
  left: -240px;
  width: 240px;
  height: 100%;
  background: #0c2755;
  color: #fff;
}

#slide_menu a {
  color: #fff;
  text-align: left;
  font-size: 14px;
  display: block;
  padding: 19px 0 17px 6%;
  border-bottom: 1px solid #546788;
}

#slide_menu a::before {
  content: "≫ ";
  display: inline-block;
  margin-right: 6px;
  vertical-align: top;
}

#slide_menu a#closemenu {
  text-align: center;
  padding-left: 0px;
  border-bottom: none;
}

#slide_menu a#closemenu::before {
  content: "";
}

button#button {
  line-height: 1.6;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

.footer_top {
  display: grid;
  grid-template-columns: 1fr 70%;
  justify-content: center;
  align-items: center;
  gap: 3vw;
  padding: 0 3% 5%;
  /*margin-bottom: 5%;*/
  border-bottom: 1px solid #aaa;
  font-size: 1rem;
  text-align: left;
  color: #555;
}

}

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

  スマホ（767px以下の時に適用されます）

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

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

  /*共通*/
  html {
    font-size: 62.5%;
  }

  body {
    font-size: max(1.1vw, 1.5rem);
    color: #000;
  }

  h1 {
    line-height: 1.2;
  }

  #home h1 {
    padding-bottom: 0px;
    font-size: 1.0em;
    font-weight: 400;
  }

  header#headerType02 #logo h1 {
    font-size: 1.54rem;
    line-height: 1.28;
    font-weight: 400;
    letter-spacing: 0.05em;
  }

  header#headerType02 #logo .logo_subTtl {
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 400;
}

  h1 a {
    font-size: 1.55rem;
    font-weight: 500;
  }

  .sp_none {
    display: none;
  }

  .pc_none {
    display: block;
  }

  /* sp版の発信リンクを有効にする */
  a.telLink {
    pointer-events:auto;
    text-decoration:auto;
}
  a[href*="tel:"] {
    pointer-events: auto;
    text-decoration: auto;
    color: #000;
}

  /* 	header
    --------------------------------------------------------*/
  #headerBox {
    display: none;
  }

  header {
    padding: 0;
  }

  #headerInner {
    height: clamp(43px, 10vw, 70px);
    display: block;
    align-items: center;
    justify-content: space-between;
}

/* [sp] header fixedBox
  ----------------------------------------------------------*/
  #headerInner {
    background: url(../images/bg02.png) repeat-y;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  /* logo */
  header#headerType02 #logo {
    padding-left: 4.3vw;
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
    width: 100%;
    line-height: 100%;
    /*font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  }

  header#headerType02 #logo a {
    text-decoration: none;
    color: #fff;
  }

  header#headerType02 #logo span.sub {
    padding-left: 0.2vw;
    display: block;
    line-height: 130%;
    font-weight: 400;
    font-size: 10px;
  }

  header#headerType02 #logo span.title {
    display: block;
    line-height: 130%;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 17px;
  }

  /* ロゴの横幅 */
  .header__company-logo img {
    width: 0vw;
  }

  .header__company-subTtl {
    font-size: 0.6em;
  }

  .header__company-ttl {
    font-size: 1em;
  }

  header .menu img {
    width: 40px;
}

  /* メニュー背景　*/
  nav.globalMenuSp {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(71, 70, 73, 0.95);
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    transition: all 0.4s;
  }

  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 70px 0 0;
    width: 100%;
  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    padding-left: 0.3em;
    width: 90%;
    margin: 0 auto;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
    position: relative;
  }

  nav.globalMenuSp ul li::after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    color: #fff;
    font-weight: 900;
    font-size: 0.8em;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
  }

  .sp_nav_contact {
    text-align: center;
    margin-top: 2em;
  }

  .sp_nav_contact a {
    color: #fff;
    font-weight: 600;
    background-color: var(--BtnColor);
    display: block;
    width: 70%;
    margin: 10px auto;
    padding: 1.2em;
    position: relative;
  }

  .sp_nav_contact a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    color: #fff;
    font-weight: 900;
    font-size: 0.8em;
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
  }

  /* クリックでjQueryで追加・削除 */
  nav.globalMenuSp.active {
    opacity: 100;
    display: block;
    transform: translateX(0%);
  }

	/*ハンバーガーメニュー*/
	.sp_nav {
		display: block;
	}

	.pc_nav {
		display: none;
	}

	header {
    height: clamp(43px, 10vw, 70px);
		background-color: #fff;
		box-shadow: 0px 1px 3px -1px #ccc;
		position: fixed;
		top: 0;
		z-index: 999999;
		width: 100%;
		padding: 0;
		display: block;
	}

	/* ロゴここから */
	.header__company-name p {
		font-size: 1em;
	}

	.header__company-name h1 {
		font-size: 1.8em;
	}
	/* ロゴここまで */

	/*　ハンバーガーメニューボタン　*/
	.hamburger {
		display: block;
		position: fixed;
		z-index: 9999;
		/*right : 20px;
		top   : 20px;*/
		/*top: 1.5%;
		right:1.5%;*/
		top: 0;
		right: 0;
		/*width : 42px;
		height: 42px;*/
		width: clamp(44px, 10vw, 70px);
    height: clamp(43px, 10vw, 70px);
		cursor: pointer;
		text-align: center;
		background-color: #fff;
	}

	.hamburger span {
		display: block;
		position: absolute;
		width: 55%;
		height: 2px;
		left: 50%;
		transform: translateX(-50%);
    background-color: var(--SubColor);
		transition: 0.3s ease-in-out;
	}

	.hamburger span:nth-child(1) {
		top: 13px;
	}

	.hamburger span:nth-child(2) {
		top: 21px;
	}

	.hamburger span:nth-child(3) {
		top: 30px;
	}

	/* スマホメニューを開いてる時のボタン */
	.hamburger.active span:nth-child(1) {
		top: 23px;
		left: 50%;
		background: #fff;
		transform: translate(-50%, 0) rotate(-45deg);
	}

	.hamburger.active span:nth-child(2),
	.hamburger.active span:nth-child(3) {
		top: 23px;
		background: #fff;
		transform: translate(-50%, 0) rotate(45deg);
	}

	/* メニュー背景　*/
	nav.globalMenuSp {
		position: fixed;
		z-index: 999;
		top: 0;
		left: 0;
		color: #fff;
		background: rgba(70, 70, 70, 0.95);
		width: 100%;
		height: 100vh;
		transform: translateX(100%);
		transition: all 0.4s;
	}

  header#headerType02 #fixedBox nav ul {
 display: block;
}

	nav.globalMenuSp ul {
		margin: 0 auto;
		padding: 10.05vw 0 0;
		width: 100%;
	}

	nav.globalMenuSp ul li {
		list-style-type: none;
		padding: 0;
		padding-left: 0.3em;
		width: 90%;
		margin: 0 auto;
		border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
		position: relative;
	}

	nav.globalMenuSp ul li::after {
		font-family: "Font Awesome 5 Free";
		content: '\f054';
		color: #fff;
		font-weight: 900;
		font-size: 0.8em;
		position: absolute;
		right: 4%;
		top: 50%;
		transform: translateY(-50%);
	}

  header#headerType02 #fixedBox nav li a {
		display: block;
		color: #fff;
		padding: 1em 0;
    font-size: 1em;
		text-decoration: none;
    text-align: left;
	}

	.sp_nav_contact {
		text-align: center;
		margin-top: 2em;
	}

	.sp_nav_contact a {
		color: #fff;
		font-weight: 600;
		background-color: var(--BtnColor);
		display: block;
		width: 70%;
		margin: 10px auto;
		padding: 1.2em;
		position: relative;
	}

	.sp_nav_contact a::after {
		font-family: "Font Awesome 5 Free";
		content: '\f054';
		color: #fff;
		font-weight: 900;
		font-size: 0.8em;
		position: absolute;
		right: 4%;
		top: 50%;
		transform: translateY(-50%);
	}

	/* クリックでjQueryで追加・削除 */
	nav.globalMenuSp.active {
		opacity: 100;
		display: block;
		transform: translateX(0%);
	}


  /* 	section 余白
  ----------------------------------------*/
  .top_con01,
  .top_con02,
  .top_con03,
  .top_flow,
  .top_faq {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  /* 	contact_area
  ----------------------------------------*/
	.contact_area{
		background: url("../images/contact_area_bg_sp.jpg") no-repeat;
		background-size: cover;
		background-position: center top;
		padding: 9% 0 9%;
		/*color: #fff;*/
		text-align: center;
		/*position: relative;*/
	}
	/*.contact_area::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(10,30,0,0.5);
	}*/
	/*.contact_area_innre{
		font-family: 'Noto Serif JP', serif;
		position: relative;
		z-index: 1;
	}*/
	.contact_area_ttl{
		font-size: 2.3rem;
		font-weight: 600;
		line-height: 1.2;
    padding-bottom: 0;
	}
	.contact_point{
		font-size: 1.2rem;
		/*display: flex;*/
		justify-content: space-between;
		width: 100%;
		/*margin: 0 auto;*/
		padding: 4.5% 0;
	}
	.contact_point li{
		width: 31.5%;
		padding: 1.3% 1%;
		border: 1px solid #fff;
		line-height: 1.35;
	}
	.contact_point li span.font_small{
		font-size: 0.8em;
	}
	.contact_linkbox{
		/*display: flex;*/
		/*align-items: center;*/
		flex-wrap: wrap;
		/*position: relative;*/
		padding: 6%;
	}
	.contact_linkbox::before{
		/*content: "";*/
		display: none;
		/*width: 1px;
		height: calc(100% - 3.1vw);
		background-color: #707070;
		position: absolute;
		left: 50%;*/
	}
/*.contact_linkbox a{
	text-decoration: none;
}*/
	.contact_linkbox li{
		width: 100%;
		background-color: #fff;
	}
	.contact_linkbox li:first-of-type{
		border: 1px solid #ccc;
		margin-bottom: 4%;
	}
	.contact_linkbox li:first-of-type a img{
		width: 2.7rem;
		padding-right: 1%;
	}
	.contact_linkbox li:first-of-type a{
		white-space: nowrap;
		display: inline-block;
		width: 100%;
		font-size: 3.2rem;
		line-height: 1.15;
		/*color: #000;*/
		padding: 2% 0;
		/*padding-left: 12%;*/
		/*background: url("../images/icon_tel.svg") no-repeat;*/
		/*background-size: 3.0rem auto;
		background-position: 12% 45%;*/
	}
	.contact_linkbox li:first-of-type a span{
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Godthic Pro W3", sans-serif;
		font-size: 0.375em;
		line-height: 1.8;
    font-weight: 400;
		/*display: block;*/
	}
	.contact_linkbox li:nth-of-type(2) a{
		font-size: 2.0rem;
		/*font-weight: 500;
		color: #fff;
		background-color: var(--SubColor);*/
		width: 100%;
		padding: 8% 0;
		/*line-height: 4.1vw;*/
		/*margin: 0 auto;
		display: block;*/
	}
	.contact_linkbox li:nth-of-type(2) a div::before{
		/*font-family: "Font Awesome 5 Free";
		content: '\f0e0';
		color: #fff;
		font-weight: 900;*/
		font-size: 1em;
		padding-right: 2%;
		/*position: relative;
		top: 0vw;*/
	}
	.contact_linkbox li:nth-of-type(2) a span{
		font-size:0.6em;
		margin-left: 0.6em;
	}

  /* 	footer
  ----------------------------------------*/
 footer {
  background-color: var(--GrayBgColor);
  padding: 9% 0 7%;
}

.footer_top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 3% 5%;
  gap: 0;
  /*margin-bottom: 5%;*/
  border-bottom: 1px solid #aaa;
  font-size: 1.3rem;
  text-align: center;
  color: #000;
}

.footer_logo_outer {
  display: flex;
  justify-content: center;
  align-items: center;
  /*ロゴありの場合はleft*/
  text-align-last: center;
  /*ロゴの右側余白*/
  gap: 0.0vw;
  /* padding-bottom: 4%; */
}

.footer_company_name {
  font-size: 1.6em;
  line-height: 1.35;
  font-weight: 500;
  padding-top: 0%;
  padding-bottom: 4%;
}

.footer_company_subName {
font-size: 0.88em;
font-weight: 400;
display: block;
padding-bottom: 0.5%;
}

.footer_access {
  width: 100%;
}

.footer_add {
  padding-bottom: 4%;
  font-weight: 400;
}

.footer_post_code {
  display: block;
  padding: 0;
}

.footer_howto {
  line-height: 1.65;
  font-weight: 400;
}

.footer_howto ul {
  padding-bottom: 3.5%;
}

.footer_howto>ul li {
  display: block;
}

.footer_howto>ul li+li::before {
  content: none;
}

.footer_bottom {
  padding: 2% 0;
}

.footer_nav02 {
  display: none;
}

.footer_nav01 {
  flex-wrap: wrap;
  font-size: 1.3rem;
  font-weight: 400;
}

.footer_nav01 li {
  width: 49%;
}

.footer_bottom a {
  color: #000;
  text-decoration: none;
  font-weight: 400;
}

.footer_nav01 li,
.footer_nav02 li {
  padding: 0.45em 1em;
}

.copyright {
  font-size: 1rem;
  padding-top: 3%;
  color:#000;
  font-weight: 400;
  /*padding-top: 9%;*/
  /*text-align: center;*/
}

#contact .copyright {
  padding-top: 0;
}

/*== page top==*/
/*リンクの形状*/
#page-top a {
  /*background-color: var(--SubColor);*/
  width: 3.5rem;
  height: 3.5rem;
  /*border: 1px solid #f3f3f3;
border-radius: 1000px;
display: flex;
justify-content:center;
align-items:center;
transition:all 0.3s;*/
}

#page-top a img {
  width: 50%;
}

/*#page-top a:hover{
background: #7E91AF;
}*/

/*リンクを右下に固定*/
#page-top {
  right: 3%;
  bottom: 0.8%;
  /*position: fixed;*/
  /*bottom: 2.5%;*/
  /*z-index: 2;*/
  /*はじめは非表示*/
  /*opacity: 0;
transform: translateY(100px);*/
}

/*main_nav hover*/
nav.g_nav .main_menu a:hover,
nav.sub_nav a:hover {
  opacity: 1;
}

nav.g_nav .main_menu a {
  color: #222;
  display: block;
  position: relative;
  text-decoration: none;
}

nav.g_nav .main_menu a::before,
nav.g_nav .main_menu a::after {
  border-bottom: solid 2px #0c2755;
  bottom: 23px;
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  width: 0;
}

nav.g_nav .main_menu a::before {
  left: 50%;
}

nav.g_nav .main_menu a::after {
  right: 50%;
}

nav.g_nav .main_menu a:hover::before,
nav.g_nav .main_menu a:hover::after {
  width: 40%;
}

/*sub_nav hover*/
.sub_nav ul li a {
  color: #fff;
  display: block;
  position: relative;
}

.sub_nav ul li a::before,
.sub_nav ul li a::after {
  border-bottom: solid 2px #fff;
  bottom: 8px;
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  width: 0;
}

.sub_nav ul li a::before {
  left: 50%;
}

.sub_nav ul li a::after {
  right: 50%;
}

.sub_nav ul li a:hover::before,
.sub_nav ul li a:hover::after {
  width: 40%;
}

/*　thanks
--------------------------------------------*/

.thanks_table {
  width: 90vw;
}

.thanks_head {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 1.25em;
  font-weight: 700;
  }

.thanks_text {
  font-size: 1em;
}

.thanks_text:nth-of-type(2) {
  margin-top: 2vw;
}

}