/*
	Theme Name: diver_child
	Template: diver
	Description:  Diverの子テーマです。
	Theme URI: http://tan-taka.com/diver/
	Author: Takato Takagi
 */

/*==================================================
  基本スタイル
==================================================*/
@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700&display=swap");

body {
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: none;
}
p {
	text-align: justify;
	text-justify: inter-ideograph;
}
.container p {
	margin-bottom: 1em;
}
p.nm {
	margin-bottom: 0px !important;
}
h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}
hr {
	margin-bottom: 1em;
	border: 0px;
	border-bottom: 1px dashed #BBBBBB;
}
table {
	empty-cells: show;
}
th {
	font-weight: normal;
	text-align: left;
}
img {
	vertical-align: bottom;
}
.fl {
	float: left;
}
.fr {
	float: right;
}
/*--------------------------------------------------
  リンク
--------------------------------------------------*/
a:active, a:hover {
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
/*--------------------------------------------------
  フォント
--------------------------------------------------*/
html {
	font-size: 62.5%;/* ルートのフォントサイズを10px設定 */
}
body {
	font-size: 1.6em;/* ルートのフォントサイズを1.6em（16pxと同等のサイズ）に設定 指定なしの場合は16px*/
  line-height: 2;
}
h1 {
	font-size: 36px;/* IE8以下とAndroid4.3以下用フォールバック */
	font-size: calc(2.4rem+ ((1vw - 0.64rem) * 2.1429));/* 24px~36pxで可変*/
	line-height: 1.3;
}
h2 {
	font-size: 24px;/* IE8以下とAndroid4.3以下用フォールバック */
	font-size: calc(2rem+ ((1vw - 0.64rem) * 0.7143));/* 20px~24pxで可変*/
	line-height: 1.3;
}
h3, h4, h5 {
  line-height: 0.9;
}
.t_20 {
	font-size: 20px;
}
.t_23 {
	font-size: 23px;
}
.t_25 {
	font-size: 25px;
}
.t_28 {
	font-size: 28px;
}
.t_29 {
	font-size: 29px;
}
.t_30 {
	font-size: 30px;
}
.t_45 {
	font-size: 45px;
}
@media (min-width: 1200px) {/* 1200px以上*/
	h1 {
		font-size: 3.6rem;/* 36px*/
	}
	h2 {
		font-size: 2.4rem;/* 24px*/
	}
}
@media screen and (max-width: 640px) {/* 640px以下*/
	h1 {
		font-size: 2.4rem;/* 24px*/
	}
	h2 {
		font-size: 2rem;/* 20px*/
	}
}
/**/
.logo_title, #container .sans {
	font-family: 'Noto Sans JP', sans-serif;
}
.b {
	font-weight: bold;
}		/* 太字 */
.fs {
	font-size: 85%;
}				/* 小さい文字 */
.fm {
	font-size: 110%;
}			/* 大きい文字 */
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.red {
	color: #ff0000;
}
.green {
	color: #008945;
}
.yellow {
	color: #ffff00;
}
/*--------------------------------------------------
  配置
--------------------------------------------------*/
.cen {
	text-align: center;
}	/* 中央寄せ */
@media print, screen and (min-width:769px) {
	.cen_pc {
		text-align: center;
	}	/* 中央寄せ */
}
.lft {
	text-align: left;
}		/* 左寄せ */
.rit {
	text-align: right;
}		/* 右寄せ */
.vtop {
	vertical-align: top;
}		/* 上詰め */
.vbtm {
	vertical-align: bottom;
}	/* 下詰め */
.ind {
	text-indent: -0.5em;
}
.f-s {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	        justify-content: space-around;
}
.f-c {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	        justify-content: center;
}
.f-se {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-evenly;
	        justify-content: space-evenly;
}

.f-sb {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}
/*--------------------------------------------------
  画像配置（文字を回り込ます）
--------------------------------------------------*/
.img_lft {
	float: left;
	margin-right: 20px;
}
.img_rit {
	float: right;
	margin-left: 20px;
}
/*--------------------------------------------------
  その他
--------------------------------------------------*/
/* フロート解除 */
.cb {
	clear: both;
}
/* タブレットスマホのみ表示 */
.dsp_tbs {
	display: none;
}
/* 背景ワイド */
.wide {
	position: relative;
}
.wide::before {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100vw;
	height: 100%;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	content: "";
	z-index: -1;
}
@media only screen and (max-width: 1150px) and (min-width: 769px){
	.wide::before {
		width: calc(100% + 50px);
		margin-left: -25px;
		margin-right: 0;
	}
}
/*--------------------------------------------------
  レイアウト
--------------------------------------------------*/
.b_max {
	font-weight: 900 !important;
}
#container h3.sans {
	text-align: center;
}
.img_w100 img {
	width: 100%;
}
@media print, screen and (min-width:769px){
.wsn {
	white-space: nowrap;
	}
}
/*--------------------------------------------------
  デザイン
--------------------------------------------------*/
.line_w {
	background: url(assets/img/line_w.png) repeat-x bottom;
}
.line_red {
	background: url(assets/img/line_red.png) repeat-x bottom;
}
.mark {
	background: url(assets/img/mark01.png) repeat-x center;
}
.mark_b {
	background: url(assets/img/mark02.png) repeat-x bottom;
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#container {
	line-height: 1.7em;
}
#container p {
	margin-bottom: 1em;
}
#main-wrap {
  margin-top: 0;
}
.content {
  overflow: hidden;
}
/*PC*/
@media print, screen and (min-width:769px) {
	html, body, #wrap {
		height: 100%;
	}
	body > #wrap {
		height: auto;
		min-height: 100%;
	}
}

.mt {
	margin-top: 40px;
}
.mb {
	margin-bottom: 40px;
}
.pt {
	padding-top: 100px;
}
.pb {
	padding-bottom: 100px;
}
.dsp_smt {
	display: none;
}
#container a:hover {
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
	text-decoration: none;
}
/* 横100％背景 */
.bg_wide {
	position: relative;
}
.bg_wide::before {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
  width: 100vw;
	height: 100%;
  margin-left: -50%;
  margin-right: -50%;
	content: "";
	z-index: -1;
}
.bg_wide_in::before {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (max-width: 1150px) {
	.bg_wide::before {
		width: calc(100% + 371px);
		margin-left: -186px;
		margin-right: 0;
	}
}
/* フォント形式 */
#container p {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 1.728rem;
	line-height: 1.7em;
}
/* サブページ フォント形式 */
#container h2.sub1 {
	font-size: 40px;
	padding: 100px 0;
	text-align: center;
	text-shadow: #fff 1px 0px, #fff -1px 0px, #fff 0px -1px, #fff 0px 1px, #fff 1px 1px, #fff -1px 1px, #fff 1px -1px, #fff -1px -1px, #fff 1px 1px, #fff -1px 1px, #fff 1px -1px, #fff -1px -1px, #fff 2px 1px, #fff -1px 1px, #fff 2px -1px, #fff -1px -1px;
}

/*--------------------------------------------------
  ヘッダー
--------------------------------------------------*/
.header-wrap {
	padding: 8px;
}
#header h1 a {
  -webkit-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
}
div.logo_title {
  padding: 0;
	font-size: 30px;
	text-align: center;
  line-height: 1.3;
}
/*--------------------------------------------------
  フッター
--------------------------------------------------*/
#footer {
	padding-top: 19px;
}
#footer,
.footer_navi ul li {
  font-size: 16px;
}
.footer_navi {
  display: block;
}
.footer_content {
  padding: 0;
}
#footer ul {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
#footer ul li a {
	color: #ffffff;
	display: block;
	padding: 0 10px;
}
#footer ul li:not(:last-of-type) {
	border-right: 1px solid #fff;
}
#copyright {
  float: none;
	color: #ffffff;
	text-align: center;
}
/*--------------------------------------------------
  メインタイトル
--------------------------------------------------*/
#main_title {
  position: relative;
}
#main_title .btn a {
  position: absolute;
	max-width: 646px;
	left: calc(50% - 323px);
	bottom: 35px;
	text-shadow: 0 0 10px #FFFFFF;
}
#main_title .txt a {
  position: absolute;
	width: 324px;
	left: calc(50% - 162px);
	bottom: 18px;
	color: #0071B3;
	text-decoration: underline;
	font-family: 'Noto Sans JP', sans-serif;
	display: inline-block;
}
/*================================================
	768以下
==================================================*/
@media screen and (max-width: 768px) {
  #logo {
    padding-left: 0;
    padding-right: 0;
  }
  #scrollnav ul li a {
    font-size: 1em;
  }
}
/*================================================
	640以下
==================================================*/
@media screen and (max-width: 640px) {
	body {
		font-size: 85%;
	}
  .widget.widget_text li a,
  .widget.widget_categories li a,
  .widget.widget_recent_entries li,
  .widget.widget_nav_menu li a,
  .widget.widget_pages li a,
  .widget.widget_archive li a,
  .widget.widget_mycategoryorder li a,
  .widget.widget_meta li a {
    font-size: 3.43vw;
  }
	.dsp_smt {
		display: block;
	}
	.dsp_hp {
		display: none;
	}
	#container p {
		font-size: 4.3vw;
	}
	.pt {
		padding-top: 40px;
	}
	.pb {
		padding-bottom: 40px;
	}
	.f-s,
	.f-sb,
	.f-sc {
		-webkit-flex-flow: column;
		        flex-flow: column;
	}
	.bg_wide::before {
		width: calc(100% + 50px);
		margin-left: -25px;
		margin-right: 0;
	}
	.main {
		margin-left: 15px;
		margin-right: 15px;
	}
	.container h3.sub {
		font-size: 19px;
	}
	/* フォント */
	.t_23 {
		font-size: 6.09vw;
	}
	.t_25 {
		font-size: 5.46vw;
	}
	.t_28 {
		font-size: 4.3vw;
	}
	.t_29 {
		font-size: 5.31vw;
	}
	.t_45 {
		font-size: 7.81vw;
	}

	/* ヘッダー */
	div.logo_title {
		font-size: 4.5vw;
	}
	/* フッター */
	#footer ul {
		-webkit-flex-wrap: wrap;
		        flex-wrap: wrap;
	}
	#footer ul li a {
		font-size: 3.43vw;
		line-height: 1.5em;
		margin-bottom: 5px;
	}
	#copyright  {
		font-size: 3.43vw;
	}
	/* メインタイトル */
	#main_title .in {
		background: url(assets/img/title_bg.jpg) no-repeat bottom;
		background-size: cover;
	}
	#main_title .btn a {
		position: static;
		max-width: none;
	}
	#main_title .txt a {
		font-size: 3.9vw;
		position: static;
		margin-bottom: 60px;
		width: auto;
	}
}
/*---------------------------------
	スマホ調節
---------------------------------*/
@media screen and (max-width: 375px) {
	#container p {
		font-size: 14px;
	}
	/* メインタイトル */
	#main_title .txt a {
		margin-bottom: 40px;
	}
	#main_title .txt a {
		font-size: 16px;
	}

}
