@charset "UTF-8";
:root {
	--font-primary: "Noto Sans JP", ヒラギノ角ゴシック Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, Verdana, Arial, sans-serif;
	--color-link: #5F52F8;
	--color-text: #222;
	--color-primary: #5F52F8;
	--color-white: #FFF;
	--color-black: #000;
	--font-roboto: "Roboto", sans-serif;
	--font-roboto-condensed: "Roboto Condensed", sans-serif;
}



/* =============================================================================
   Reset styles
   ========================================================================== */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,object,iframe,pre,code,p,blockquote,form,fieldset,legend,table,th,td,caption,tbody,tfoot,thead,article,aside,figure,footer,header,hgroup,menu,nav,section,audio,video,canvas {
	margin: 0;
	padding: 0;
}
article, main, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
	display: block;
}
audio, canvas, video { 
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
audio:not([controls]) {
	display: none;
}
[hidden] {
	display: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	border: none;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style: normal;
	font-weight: normal;
}
ul,ol {
	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: none;
	font-variant: normal;
}
sup {
	vertical-align: text-top;
}
sub {
	vertical-align: text-bottom;
}
a img {
	border: none;
}
a:hover,a:active,a:focus {
	outline: 0;
}
img {
	max-width: 100%;
	height: auto;
	-ms-interpolation-mode: bicubic;
}
hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}



/* =============================================================================
   Base
   ========================================================================== */

html {
	min-height: 100vh;
	position: relative;
	padding-bottom: 60px;
	box-sizing: border-box;
	overflow-x: hidden;
	background: #FFF;
	font-size: 10px;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}
body {
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	word-wrap: break-word;
	color: var(--color-text);
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.5;
	font-family: var(--font-primary);
}
.gridContainer {
	margin: 0 auto;
	padding: 0;
}


/* VisualFormat */
.noDisplay {
	display: none;
}
.block {
	display: block !important;
}
.inline {
	display: inline !important;
}
.inlineBlock {
	display: inline-block !important;
}
.static {
	position: static !important;
}
.relative {
	position: relative !important;
}
.absolute {
	position: absolute !important;
}
.fixed {
	position: fixed !important;
}
.leftBox {
	float: left;
}
.rightBox {
	float: right;
}
.nofloat {
	float: none !important;
}
.clearfix {
	zoom: 1;
}
.clearfix:after {
	display: block;
	clear: both;
	content: "";
}
.clear {
	clear: both !important;
}
a {
	color: #5F52F8;
	text-decoration: none;
}
a:hover,
input:hover {
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
}



/* =============================================================================
   Common Style
   ========================================================================== */


/* ------------------------------------------------------------------
    Header
-------------------------------------------------------------------*/

header {
	position: fixed;
	top: 0;
	left: 0;
	background: #FFF;
	z-index: 10;
	width: 100%;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
	transition: 0.5s;
	}

/* Logo */
#logo {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	margin: 10px;
	transition: 0.5s;
}
#logo h1 {
	width: 40%;
	max-width: 100px;
	margin-right: 8px;
}
#logo_lpk {
	height: 90%;
	max-height: 40px;
	background: #10069F;
	color: #fff;
	padding: 2px 5px;
}
#logo h2 {
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}
#logo h3 {
	font-size: 61%;
	line-height: 1.2;
	text-align: center;
}
#logo a {
	color: #fff;
}

/* Hamburger Menu */
.menu-btn {
	position: fixed;
	top: 0px;
	right: 0px;
	display: flex;
	height: 50px;
	width: 50px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background-color: #777;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #fff;
	position: absolute;
}
.menu-btn span:before {
	bottom: 8px;
}
.menu-btn span:after {
	top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
	border: none;
	background: none;
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}
#menu-btn-check {
	display: none;
}
.menu-content {
	width: 50%;
	height: 100%;
	position: fixed;
	top: 50px;
	left: 0;
	z-index: 80;
	background-color: #fff;
	opacity: 0.85;
}
.menu-content ul {
	padding: 50px 5px 0;
}
.menu-content ul li {
	border-bottom: solid 1px #10069F;
    list-style: none;
}
.menu-content ul li ul {
	border-bottom: solid 1px #10069F;
	padding: 0 10px 0 20px;
}
.menu-content ul li:first-child {
	border-top: solid 1px #10069F;
}
.menu-content ul li:last-child {
	border-bottom: none;
}
.menu-content ul li img {
	margin-right: 3px;
}
.menu-content ul li a {
	display: block;
	width: 100%;
	box-sizing: border-box;
	color: #222;
	text-decoration: none;
	padding: 9px 15px 10px 0;
	position: relative;
}
.menu-content ul li a:hover {
	color: #fff;
	background-color: #6053F9;

}
.menu-content ul li a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #5F52F8;
	border-right: solid 2px #5F52F8;
	transform: rotate(45deg);
	position: absolute;
	right: 11px;
	top: 16px;
}
.menu-content {
	width: 50%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 100%;
	z-index: 80;
	background-color: #fff;
	transition: all 0.5s;
}
#menu-btn-check:checked ~ .menu-content {
	left: 50%;
}
#list_contact {
	background-color: #10069F;
}
#list_contact a {
	color: #fff;
}

@media screen and (max-width:1024px) {
/* Nav */
header nav {
	display: none;
	visibility: hidden;
}
/* Contact */
#nav_contact {
	display: none;
	visibility: hidden;
}
}

@media screen and (min-width:1025px) {
/* Logo */
#logo {
	margin: 20px 0 10px 20px;
}
#logo h1 {
	width: 100%;
	max-width: 100px;
	margin-right: 10px;
}
#logo_lpk {
	height: 100%;
}
#logo h2 {
	font-size: 153.9%;
}

/* Hamburger Menu */
.hamburger-menu {
	display: none;
	visibility: hidden;
}

/* Nav */
header nav {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	transition: 0.5s;
	background: #FFF;
}
#nav_cate {
	margin: 20px 190px 20px 0;
	transition: 0.5s;
}
#nav_cate a {
	color: #222;
}
#nav_cate a:hover {
	color: #10069F;
}
#nav_sns {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	justify-content: flex-end;
	margin-right: 14px;
	transition: 0.5s;
}
#nav_sns li {
	margin-left: 20px;
}
#nav_global {
	font-size: 93%;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	transition: 0.5s;
}
#nav_global li {
	margin-left: 20px;
}
#nav_global img {
	margin-right: 3px;
}
#lang {
	position: relative;
	width: 7em;
}
#lang a {
	color: #999;
}

/* SubNav */
#lang_dropdown {
	background-color: #FFF;
	opacity: .8;
	transform: scaleY(0);
	transform-origin: center top;
	transition: all .3s;
	position: absolute;
	left: 0;
}
#lang_dropdown li {
	margin: 8px 5px 8px 0px;
}
#lang_dropdown  a {
	color: #222;
}
#lang:hover #lang_dropdown {
	transform: scaleY(1);
}

/* Contact */
#nav_contact {
	z-index: 10;
	position: fixed !important;
	right: 20px;
	width: 160px;
	height: 64px;
	background: #777;
	border-radius: 0px 0px 10px 10px;
	transition: 0.5s;
}
#nav_contact a {
	display: block;
	color: #FFF;
	text-align:center;
	padding: 20px 0;
}

/* Nav Scroll */
header.scroll-nav #logo {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	margin: 10px 0 10px 20px;
	transition: 0.5s;
}
header.scroll-nav #logo_lpk{
	height: 90%;
}
header.scroll-nav #nav_cate {
	margin: 10px 190px 10px 0;
}
header.scroll-nav #nav_sns {
	display: none;
	visibility: hidden;
}
header.scroll-nav #nav_global {
	margin-top: 10px;
}
header.scroll-nav #nav_contact {
	height: 50px;
}
header.scroll-nav #nav_contact a {
	font-weight: 400;
	padding: 15px 0;
}
}


/* ------------------------------------------------------------------
    Slick
-------------------------------------------------------------------*/

#slick {
	margin-top: 80px;
	width: 100%;
}
.slider{
	padding: 10px 0;
}
.slick-dots {
    bottom: 15px;
}
.slick-dots li button:before {
    font-size: 8px;
}
.slider::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to right, #10069F, #A49CFC);
	transform: skewY(-2deg);
	z-index: -1;
}
.slider img{
	height: auto;
	width: 100%;
}
/* slick setting */
.slick-prev:before,
.slick-next:before {
	color: #000;
}

@media screen and (min-width:768px) and (max-width:1024px) {
#slick {
	margin-top: 100px;
	width: 100%;
}
.slider{
	padding: 18px 0;
}
.slick-dots {
    bottom: 30px;
}
.slick-dots li button:before {
    font-size: 10px;
}
}

@media screen and (min-width:1025px) {
#slick {
	margin-top: 120px;
	width: 100%;
}
.slider{
	padding: 22px 0;
}
.slick-dots {
    bottom: 45px;
}
.slick-dots li button:before {
    font-size: 12px;
}
}


/* ------------------------------------------------------------------
    Scroll
-------------------------------------------------------------------*/

/* Scroll Up */
.scroll_up {
	transition: 0.5s ease-in-out;
	transform: translateY(50px);
	opacity: 0;
}
.scroll_up.show {
  transform: translateY(0);
  opacity: 1.0;
}

/* Scroll Up 02 */
.scroll_up_02 {
	transition: 0.5s ease-in-out;
	transform: translateY(50px);
	opacity: 0.5;
}
.scroll_up_02.show {
  transform: translateY(0);
  opacity: 1.0;
}

/* Scroll Left */
.scroll_left {
	transition: 0.5s ease-in-out;
	transform: translateY(50px);
	opacity: 0;
}
.scroll_left.show {
  transform: translateY(0);
  opacity: 1.0;
}

/* Scroll Right */
.scroll_right {
	transition: 0.5s ease-in-out;
	transform: translateY(50px);
	opacity: 0;
}
.scroll_right.show {
  transform: translateY(0);
  opacity: 1.0;
}


@media screen and (min-width:768px) {
/* Scroll Left */
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.show {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/* Scroll Right */
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.show {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
}


/* ------------------------------------------------------------------
    Top Content
-------------------------------------------------------------------*/

#top_content{
	margin: 50px auto 0;
}
#message {
	text-align: center;
	background: url(img/bg_map.jpg) no-repeat 10% top;
	background-color: rgba(255,255,255,0.5);
	background-blend-mode: lighten;
	padding: 30px 0 0;
	margin: 0 10px;
}
#message h1{
	font-size: 189%;
	font-weight: 700;
	letter-spacing: 0.1em;
}
#message h1 img {
	vertical-align: middle;
	margin-left: 20px;
	width: 12%;
	max-width: 80px;
}
#message p {
	font-size: 108%;
	line-height: 2;
}
#message p strong {
	font-size: 108%;
	font-weight: 700;
	color: #10069F;
}
.message-center span {
	display: inline-block;
	white-space: nowrap;
}

@media screen and (min-width:1025px) {
#top_content{
	margin: 80px 0 0;
}
#message h1{
	font-size: 215%;
}
#message h1 img{
	width: 100%;
}
#message p {
	line-height: 2.4;
}
}


/* ------------------------------------------------------------------
    Content
-------------------------------------------------------------------*/

.contents {
}
.contents h1{
	color: #C0BAFE;
	line-height: 1;
	margin: 60px 10px 0;
}
.contents .h1_ti {
	display: block;
	color: #C0BAFE;
	font-size: 385%;
	font-weight: 700;
}

@media screen and (min-width:768px) and (max-width:1024px) {
.contents h1{
	margin: 60px 10px 0;
}
.contents .h1_ti {
	font-size: 462%;
}
}

@media screen and (min-width:1025px) {
.contents h1{
	width: 100%;
	max-width: 1080px;
	margin: 100px auto 0;
}
.contents .h1_ti {
	font-size: 538%;
}
}


/* Category ---------------------------------------------- */

.cate {
	width: 100%;
	margin: 50px 0 0;
}
.cate_02 {
	margin: 30px 0;
}
.cate h2,.cate_02 h2 {
	font-size: 138.5%;
	font-weight: 700;
	margin: 0 0 15px;
}

@media screen and (min-width:768px) and (max-width:1024px) {
.cate {
	margin: 60px 0 0;
}
.cate h2,.cate_02 h2 {
	font-size: 153.9%;
}
}

@media screen and (min-width:1025px) {
.cate {
	max-width: 1100px;
	margin: 70px auto 0;
}
.cate_02 {
	max-width: 1100px;
	margin: 30px auto;
}
.cate h2,.cate_02 h2 {
	font-size: 167%;
}
}

/* Relationship */
#img_relationship {
	display: block;
	width: 100%;
	max-width: 700px;
	margin: 30px auto 0px;
}

/* Flow ---------- */
.flow {
}
.flow_detail {
	border: solid 1px #BBB;
	margin-bottom: 15px;
	padding: 15px 10px;
}
.flow_detail h4{
	font-weight: 700;
}
.flow_detail p {
	margin-top: 15px;
}
p.fl_location  {
	color: #6154FA;
	font-size: 77%;
	margin: 0 0 5px;
}
.flow_detail hr{
	border-top: 3px dotted #CCC;
}
.fl_01 {
	background: url(img/bg_fl_01.gif) no-repeat left top;
}
.fl_02 {
	background: url(img/bg_fl_02.gif) no-repeat left top;
}
.fl_03 {
	background: url(img/bg_fl_03.gif) no-repeat left top;
}
.fl_04 {
	background: url(img/bg_fl_04.gif) no-repeat left top;
}
.fl_05 {
	background: url(img/bg_fl_05.gif) no-repeat left top;
}
.fl_06 {
	background: url(img/bg_fl_06.gif) no-repeat left top;
}
.fl_07 {
	background: url(img/bg_fl_07.gif) no-repeat left top;
}
.fl_08 {
	background: url(img/bg_fl_08.gif) no-repeat left top;
}

@media screen and (min-width:768px) and (max-width:1024px) {
.flow {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.flow_detail {
	width: 45%;
	margin-bottom: 20px;
	padding: 20px 15px;
}
}
@media screen and (min-width:1025px) {
.flow {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.flow_detail {
	width: 20%;
	margin-bottom: 25px;
	padding: 20px 15px;
}
.flow_detail h4{
	text-align: center;
}
p.fl_location  {
	text-align: center;
}
}


/* Txt Box + Photo Box ---------- */
.txt_photo {
	margin: 0 10px;
}
.photo_box {
	width: 60%;
	margin: 20px auto 0;
}

@media screen and (min-width:768px) and (max-width:1024px) {
.txt_photo {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.txt_box {
	width: 48%;
}
.photo_box {
	width: 48%;
	margin: 0;
} 
}

@media screen and (min-width:1025px) {
.txt_photo {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.txt_box {
	width: 60%;
}
.txt_box h2 {
}
.txt_box p{
}
.photo_box {
	width: 30%;
	margin: 0;
}
}


/* Support ---------- */
#support {
	border: 5px double #BBB;
	margin: 20px 0 0;
	padding: 20px 0;
	list-style: outside decimal;
}
#support li {
	margin-left: 4rem;
}

@media screen and (min-width:768px) and (max-width:1024px) {
#support {
	margin: 20px 0 0;
	display: grid;
	grid-template-rows: repeat(5, 1fr);
	grid-auto-flow: column;
}
#support li {
	margin-left: 3rem;
}
}

@media screen and (min-width:1025px) {
#support {
	margin: 20px 0 0;
	display: grid;
	grid-template-rows: repeat(4, 1fr);
	grid-auto-flow: column;
}
#support li {
	margin-left: 3rem;
}
}


/* News ---------- */
#news_detail {
	margin: 0px 10px;
}
#news_detail ul{
	border-bottom: solid 1px #BBB;
}
#news_detail ul li{
	border-top: solid 1px #BBB;
	padding: 20px 0;
}
.news_date {
	color: #5F52F8;
	margin-right: 1rem;
}


/* Table ---------- */
.cate table {
	width: 100%;
	margin-top: 1rem;
	border-top: 1px solid #999;
}
.cate table th {
	display: block;
	text-align: left;
	padding: 1rem;
	background: #F4F4FF;
	border-bottom: 1px solid #999;
}
.cate table td {
	display: block;
	padding: 1rem;
	border-bottom: 1px solid #999;
	vertical-align: middle;
}
.cate table ul {
	list-style: outside disc;
	margin-left: 2rem;
}
.cate table img {
	vertical-align: middle;
}

@media screen and (min-width:768px) and (max-width:1024px) {
.cate table th {
	display: table-cell;
	width: 18%;
}
.cate table td {
	display: table-cell;
	border-left: 1px solid #999;
}
}

@media screen and (min-width:1025px) {
.cate table th {
	display: table-cell;
	width: 18%;
}
.cate table td {
	display: table-cell;
	border-left: 1px solid #999;
}
}


/* Category Highlight ---------------------------------------------- */

.cate_hl {
	width: 100%;
	margin: 20px 0;
	padding: 40px 0;
}
.cate_hl a {
	color: #BFB8FE;
}
.cate_hl_detile {
	margin: 0 auto ;
}
.cate_hl_detile p {
	color: #fff;
} 
.cate_hl::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #10069F;
	transform: skewY(-2deg);
	z-index: -1;
}
.cate_hl_detile h2 {
	font-size: 138.5%;
	font-weight: 700;
	color: #fff;
	margin: 0 0 15px;
}
.cate_hl_detile h2 img {
	margin-right: 2rem;
	vertical-align: middle;
}

@media screen and (min-width:768px) and (max-width:1024px) {
.cate_hl {
	margin: 30px 0;
}
.cate_hl_detile h2 {
	font-size: 153.9%;
}
}

@media screen and (min-width:1025px) {
.cate_hl {
	margin: 40px 0;
}
.cate_hl_detile {
	max-width: 1100px;
}
.cate_hl_detile h2 {
	font-size: 167%;
}
}


/* Job ---------- */
.job {
}
.job_detail {
	width: 100%;
	background: #FFF;
	border-radius: 10px;
	margin: 20px 0 0;
	padding: 10px 0;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.job_detail img {
	display: block;
	width: 30%;
	max-width: 50px;
	height: 100%;
	max-height: 50px;
	margin-left: 20px;
}
.job_ex {
	width: 70%;
	margin: 0 auto;
}
.job_detail h3{
	color: #222;
	font-weight: 700;
	margin-top: 3px;
}
.job_detail p{
	color: #222;
	margin-top: 3px;
}

@media screen and (min-width:768px) and (max-width:1024px) {
.job {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.job_detail {
	width: 48%;
}
.job_detail img {
	width: 30%;
	max-width: 50px;
}
.job_ex {
	width: 68%;
}
.job_detail h3{
	margin-top: 5px;
}
.job_detail p{
	margin-top: 5px;
}
}

@media screen and (min-width:1025px) {
.job {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.job_detail {
	display: block;
	width: 23%;
	border-radius: 15px;
	padding: 20px 0;
}
.job_detail img {
	margin: auto;
	width: 30%;
	max-width: 50px;
}
.job_ex {
	width: 100%;
	margin: 0;
}
.job_detail h3{
	margin-top: 10px;
	text-align: center;
}
.job_detail p{
	margin: 10px 8px 0;
	text-align: center;
}
}


/* Txt Box + Photo Box ---------- */
.hl_txt_photo {
	margin: 0 10px;
}
.hl_photo_box {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin-top: 20px;
}
.hl_photo_box .img_01 {
	display: block;
	width: 48%;
	max-width: 480px;
}
.hl_photo_box .img_02 {
	display: block;
	width: 48%;
	max-width: 480px;
}

@media screen and (min-width:768px) and (max-width:1024px) {
.hl_photo_box {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
}

@media screen and (min-width:1025px) {
.hl_txt_photo {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.hl_txt_box {
	width: 48%;
}
.hl_photo_box {
	display: block;
	width: 48%;
	height: 300px;
	position: relative;
	margin-top: 0;
}
.hl_photo_box .img_01 {
	position: absolute;
	max-width: 100%;
	width: 320px;
	top: 0;
	right: 0;
}
.hl_photo_box .img_02 {
	position: absolute;
	z-index: 100;
	max-width: 100%;
	width: 320px;
	left: 0;
	bottom: 0;
}
}


/* Category Contact ---------------------------------------------- */
.cate_contact {
	margin: 30px 0;
}
.p_contact {
	margin: 0 10px;
}

/* Mail SNS */
#mail_sns {
	background: #10069F;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	margin: 20px 0 0;
}
#ms_detail {
	margin: 0 auto;
	padding: 25px 0;
	align-items: center;
	text-align: center;
}
#ms_detail p {
	font-size: 85%;
	color: #fff;
	margin: 10px 0 0;
}
#mail {
}
#mail h3 {
	width: 80%;
	max-width: 375px;
	font-weight: 700;
	font-size: 146%;
	color: #10069F;
	background: #fff;
	margin: 0 auto;
}
#mail h3 a{
	display: block;
}
#sns {
	margin: 10px auto 0;
}
#sns li{
	font-weight: 700;
	font-size: 85%;
	margin-top: 10px;
}
#sns img {
	vertical-align: middle;
	margin-right: 3px;
}
#sns a{
	color: #fff;
}

/* Tel */
#tel {
	background: #C1BBFE;
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}
#tel_detail {
	margin: 0 auto;
	padding: 15px 0;
	align-items: center;
	text-align: center;
}
#tel_detail h3 {
	font-weight: 700;
	font-size: 146%;
}
#tel_detail h3 img {
	vertical-align: middle;
}
#tel_detail h4 {
	width: 80%;
	max-width: 375px;
	color: #10069F;
	background: #fff;
	margin: 10px auto 0;
	padding: 5px 0;
}
#tel_detail p{
	font-size: 85%;
	margin: 10px 0 0;
}

@media screen and (min-width:768px) and (max-width:1024px) {
#sns {
	width: 80%;
	max-width: 400px;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin: 10px auto 0;
}
#sns li{
	font-weight: 700;
	font-size: 85%;
	margin-top: 0px;
}
#mail h3 {
	font-size: 161.6%;
}
#tel_detail h3 {
	font-size: 182%;
}
}
@media screen and (min-width:1025px) {
.p_contact {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
address {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

/* Mail SNS */
#mail_sns {
	width: 50%;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
}
#ms_detail {
}
#sns {
	max-width: 400px;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin: 10px auto 0;
}
#sns li{
	font-weight: 700;
	font-size: 85%;
	margin-top: 0px;
}
#mail h3 {
	font-size: 161.6%;
}

/* Tel */
#tel {
	width: 50%;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	margin-top: 20px;
}
#tel_detail {
}
#tel_detail h3 {
	font-size: 182%;
}
}

@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}


/* Other ---------------------------------------------- */

/* Modal Window ---------- */
.open {
	cursor:pointer;
}
#a_r {
	display: none;
}
.overlay {
	display: none;
}
#a_r:checked + .overlay {
	display: block;
	position: fixed;
	z-index: 9999;
}
.window {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 90vw;
	max-width: 430px;
	padding: 30px 20px;
	background-color:  rgba(255, 255, 255, 0.92);
	border-radius: 4px;
	align-items: center;
	transform: translate(-50%, -50%);
}
.window h4{
	color: #10069F;
	font-size: 116%;
	font-weight: 700;
	margin-bottom: 1rem;
}
.window ul {
	list-style: disc outside;
	margin-left: 2rem;
}
.close {
	position: absolute;
	top: 4px;
	right: 4px;
	cursor:pointer;
}
#ow_font {
	color: #BFB8FE;
}


/* ------------------------------------------------------------------
    News Content
-------------------------------------------------------------------*/

#news_contents {
}
#news_contents h1 {
	font-size: 146.5%;
	font-weight: 700;
	color: #222;
	border-bottom: 1px solid #999;
	padding-bottom:10px;
	margin: 60px 0 15px;
}
#news_contents .photo_box_02 {
}
#news_contents .photo_box_02 img{
	display: block;
	margin: 20px auto 0;
}
@media screen and (min-width:768px) {
#news_contents .photo_box_02 {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
#news_contents .photo_box_02 img{
	width: 50%;
	max-width: 480px;
}
}

/* Contact */
#news_contact {
	border: 5px double #BBB;
	margin: 20px 0 0;
	padding: 15px;
}
#news_contact h4{
	font-size: 108%;
	font-weight: 700;
}
#news_contact ul{
	list-style: disc outside;
}
#news_contact ul li{
	margin: 10px 0 0 2rem;
}
#news_contact ul li strong {
	font-weight: 700;
}

/* ------------------------------------------------------------------
    Footer
-------------------------------------------------------------------*/

footer {
	width: 100%;
}
#outline {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 80px auto;
}
#outline li {
	}
#outline a {
	color: #999;
	text-decoration: underline;
	font-size: 85%;
	margin: 0 20px;
}
#copyright {
	width: 100%;
	position: absolute;
	bottom: 0;
	background: #666;
	color: #fff;
	font-size: 73%;
	text-align: center;
	padding: 1rem 0;
}


/* ------------------------------------------------------------------
    All
-------------------------------------------------------------------*/

.mar_10 {
	margin: 0 10px;
}
p a img {
	display: inline-block;
	margin-left: 0.5rem;
	vertical-align: middle;
}
.top_sp {
	margin-top: 1rem;
}

/* Arrow */
.stickarrow {
	display: inline-block;
	width: 30px;
	height: 8px;
	border-bottom: 1px solid #5F52F8;
	border-right: 1px solid #5F52F8;
	transform: skew(45deg);
	margin-right: 10px;
}

/* Note */
.note {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.note dt {
	width: 1.6rem;
	font-size: 85%;
	color: #999;
}
.note dd {
	font-size: 85%;
	color: #999;
}

@media screen and (min-width:480px) { 

}
@media screen and (min-width:768px) and (max-width:1024px) {

}
@media screen and (min-width:1025px) {

}
