﻿@charset "utf-8";
/* CSS Document */

@import url(layout.css);
@import url(font-awesome.min.css);
@import url(all.min.css);


* {
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

i{
	font-family: Font Awesome\ 5 Free;
	font-style:normal;
}

/*----------------------------------------
共通項目は最下部▼
-----------------------------------------*/
:root {
  --min-width: 1300px;
  /*--base-width: 1300px;*/
}


/*====================================
PC版
=====================================*/
@media print, screen and (min-width: 521px) {

.sp_box {
	display: none !important;
}

body {
	font-size: 18px;
    /*font-size: 16px;*/
	line-height: 1.76;
	margin: 0;
    padding: 0;
	/*background: #F6E2FF;*/
	-webkit-text-size-adjust:100%;
	text-size-adjust:100%;

}

main {
    position: relative;
	min-width: var(--min-width);
}


/*-------------------------------------------
　レイアウト
--------------------------------------------*/
.container {
    width: 100%;
    min-width: var(--min-width);
    padding: 0 40px;
    margin: 0 auto;
    box-sizing: border-box;
    /*background: #EEE;*/
}

.wrap {
	position: relative;
	width: 100%;
    max-width: 1180px;
    margin: 0 auto;
	/*background: #DDD;*/
}

.row {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    /*background-color: #EEE;*/
}



/*--------------------------------------------
　画像
---------------------------------------------*/
img {
	border: none;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	/*width: 100%;
	height: auto;*/
}

.img_auto {
    width: 100%;
    height: auto;
}



/*--------------------------------------------
　タイトル・テキスト
---------------------------------------------*/
h1, h2, h3, h4, h5 {
    /*line-height: 1.2;*/
    position: relative;
    margin: 0;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {

}

h4 {

}



/*--------------------------------------------
　ヘッダー
--------------------------------------------*/

/*トップページヘッダー変化*/
.top_logo {
    position: relative;
}

.tl01 {
    pointer-events: none;
    opacity: 0;
}

.tl02 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: .3s all;
    z-index: 1;
}

.tl03 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .3s all;
    z-index: 2;
}

.is_show .tl02 {
    opacity: 0;
}

.is_show .tl03 {
    opacity: 1;
}
/*ここまで*/

.head_menu {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 0 40px;
    padding-top: 15px;
    z-index: 100;
}

.head_logo {
    display: block;
    height: auto;
}

.head_logo img {
    display: block;
    width: 100%;
    height: auto;
}

.head_menu_link {
    position: fixed;
    top: 20px;
    right: 40px;
    display: flex;
    align-items: flex-start;
    gap: 35px;
    z-index: 100;
}

.head_sns {
    position: absolute;
    left: -200px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.head_sns li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid #4c82b3;
    background-color: #FFF;
    border-radius: 50%;
}

.head_sns li a:hover {
    border: 1px solid #FFF;
    background-color: #4c82b3;
}

.head_sns li a img {
    display: block;
    width: 27px;
    height: auto;
    transition: opacity 0.5s;
}

.head_sns li a img:last-of-type {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0;
}

.head_sns li a:hover img:last-of-type {
    opacity: 1;
}

.head_mega_menu {
    width: 173px;
    padding-top: 7px;
}

/*パソコン版メニュー*/
.mega_menu_button {
    cursor: pointer;
}

.mega_menu_title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 16px;
}

.mega_menu_title img {
    display: block;
    width: auto;
    height: 16px;
}

.mega_menu_open,
.mega_menu_close {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transition: .3s;
}

.mega_menu_open {
    opacity: 0;
    transition: .3s;
}

.mega_menu_button.close .mega_menu_title .mega_menu_open {
    opacity: 1;
    transition: .3s;
}

.mega_menu_button.close .mega_menu_title .mega_menu_close {
    opacity: 0;
    transition: .3s;
}

.mega_menu_arrow {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
}

.mega_menu_arrow:before {
    position: absolute;
    left: 0;
    content: "";
    display: block;
    width: 79px;
    height: 2px;
    background-color: #111;
    z-index: 2;
}

.mega_menu_arrow:after {
    position: absolute;
    right: 0;
    content: "";
    display: block;
    width: 79px;
    height: 2px;
    background-color: #111;
    z-index: 2;
}

.mega_menu_arrow img {
    transition: .3s all;
    z-index: 1;
}

.re01 {
    position: relative;
    opacity: 1;
}

.re02 {
    position: absolute;
    bottom: 0;
    opacity: 0;
}

.mega_menu_button.close .re02 {
    opacity: 1;
}

.mega_menu_button.close .re01 {
    opacity: 0;
}

.head_mega_menu_box {
    display: block;
    padding: 0 15px;
    padding-top: 10px;
    margin-top: -10px;
    height: 232px;
    transition: .3s all;
    padding-bottom: 0px;
    overflow: hidden;
    box-sizing: border-box;
    /*padding-top: 8px;*/
}

.head_mega_menu_area {
    display: flex;
    flex-flow: column;
    gap: 4px;
    margin-top: 0px;
    transition: .3s all;
}

.head_mega_menu_box.close .head_mega_menu_area {
    margin-top: -235px;
}

.head_mega_menu_box li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: bold;
    transition: .3s;
}

.head_mega_menu_box li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 0;
    height: 1px;
    background: #000000;
    transition: 0.4s;
}

.head_mega_menu_box li a:hover:before {
    width: 100%;
    transition: 0.4s;
}


/*------------------------------------------
　フッター
-------------------------------------------*/
footer {
    width: 100%;
    min-width: var(--min-width);
    padding-top: 55px;
    background-color: #00daeb;
}

.foot_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding-right: 70px;
    padding-bottom: 110px;
}

.foot_sec p {
    margin-top: 20px;
    margin-bottom: 25px;
    line-height: 24px;
    padding-left: 47px;
}

.foot_tel {
    display: block;
    padding-left: 47px;
}

.foot_coop_link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 440px;
    height: 70px;
    margin-top: 67px;
    margin-left: 47px;
    color: #4c82b3;
    background-color: #d7f8fa;
    border: 2px solid #4c82b3;
    font-size: 24px;
    font-weight: bold;
    transition: .3s all;
}

.foot_coop_link:hover {
    color: #FFF;
    background-color: #4c82b3;
    /*border: 2px solid #d7f8fa;*/
}

.foot_link_wrap {
    display: block;
    width: 425px;
    padding-top: 75px;
}

.foot_link_box {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.foot_link_box ul {
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.foot_link_box ul li a {
    font-weight: bold;
    transition: .3s all;
}

.foot_link_box ul li a:hover {
    opacity: .5;
    transition: .3s all;
}

.foot_link_sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid #000000;
}

.foot_link_sns li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid #4c82b3;
    background-color: #4c82b3;
    border-radius: 50%;
}

.foot_link_sns li a:hover {
    border: 1px solid #4c82b3;
    background-color: #FFF;
}

.foot_link_sns li a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transition: opacity 0.5s;
    display: block;
    width: 27px;
    height: auto;
}

.foot_link_sns li a img:last-of-type {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0;
}

.foot_link_sns li a:hover img:last-of-type {
    opacity: 1;
}

.foot_copy {
    display: block;
    text-align: center;
    font-size: 12px;
    padding-bottom: 18px;
}


/*----------------------------------------------
エラー表示
----------------------------------------------*/
.error {
    width: 100%;
    margin: 0 auto;
    border: 2px solid #DD4548;
    background: #FFFF33;
    border-radius: 4px;
    padding: 10px 20px;
}

.error p {
    font-size: 14px;
    line-height: 1.6;
    color: #C00;
}


/*------------------------------------------
ページのトップへ
-------------------------------------------*/
.page_top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 50;
}

.page_top a {
    transition: .3s;
}

.page_top a:hover {
    opacity: 0.6;
    transition: .3s;
}



}   /*  PC版ここまで  */






/*===================================
スマホ版
===================================*/
@media only screen and (max-width : 520px ) {

.pc_box {
	display: none !important;
}

.sp_non {
	display: none;
}


body {
	margin: 0;
	padding: 0;
    /*font-size: 0.875rem;*/
	/*font-size: 16px;*/
    /*font-size: 3.8vw;*/
	line-height: 1.74;
}

main {
	/*margin-top: 70px;*/
}


/*------------------------------------------------
　ヘッダー&ナビ
------------------------------------------------*/

/*トップページヘッダー変化*/
.top_logo {
    position: relative;
}

.tl01 {
    pointer-events: none;
    opacity: 0;
}

.tl02 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: .3s all;
    z-index: 1;
}

.tl03 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .3s all;
    z-index: 2;
}

.is_show .tl02 {
    opacity: 0;
}

.is_show .tl03 {
    opacity: 1;
}
/*ここまで*/

.head_menu_sp {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 5% 15px 5%;
    z-index: 100;
}

.head_logo {
    display: block;
    width: 70%;
}

.head_logo img {
    display: block;
    width: 100%;
    height: auto;
}

.head_menu_sp_w {
    background-color: #FFF;
}

/* ------------- ハンバーガーメニュー ------------- */
.head_menu {
    position: fixed;
    top: 4.2vw;
    right: 5%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 23px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
}

.head_menu span:first-of-type,
.head_menu span:nth-of-type(2) {
    margin-bottom: 7px;
}

.head_menu span {
    display: block;
    width: 40px;
    height: 3px;
    background-color: #111;
    transition: all .4s;
}

.head_menu.active span:nth-of-type(1) {
    background-color: #FFF;
    transform: translateY(10px) rotate(-45deg);
}

.head_menu.active span:nth-of-type(2) {
    opacity: 0;
}

.head_menu.active span:nth-of-type(3) {
    background-color: #FFF;
    transform: translateY(-10px) rotate(45deg);
}

#g_nav {
    position: fixed;
    top: -200%;
    right: 0;
    display: flex;
    width: 100%;
    z-index: 1000;
    transition: all .3s;
    transition-delay: .1s;
}

.g_nav_wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0 5%;
    padding-bottom: 100px;
    overflow-y: auto;
    z-index: 1000;
}

#g_nav.panelactive {
    top: 0;
}

.disable_layer {
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    opacity: 0;
    background: rgba(58,115,166,0.9);
    transition: all .2s ease-in;
    transition-delay: .19s;
}

#g_nav.panelactive .disable_layer {
    opacity: 1;
    pointer-events: auto;
    transition: all .2s ease-in;
}

.g_nav_menu {
    display: flex;
    flex-flow: column;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid #FFF;
    overflow-y: auto;
}

.g_nav_menu li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.g_nav_menu li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 20px;
    font-weight: bold;
    color: #FFF;
    text-align: center;
}

.sp_head_sns {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.sp_head_sns li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background-color: #FFF;
    border-radius: 50%;
}

.sp_head_sns li a img {
    display: block;
    width: 27px !important;
}

.sp_head_coop {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 55px;
    margin: 0 auto;
    margin-top: 60px;
    font-size: 20px;
    font-weight: bold;
    color: #3a73a6;
    background-color: #FFF;
}




/*-------------------------------------------
　レイアウト
--------------------------------------------*/
.container {
    width: 100%;
    margin: 0 auto;
}

.wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 5%;
	/*background: #C0D1FF;*/
}

.row {
    width: 100%;
    position: relative;
    margin: 0;
    /*background-color: #EEE;*/
}




/*--------------------------------------------
　画像
---------------------------------------------*/
img {
	border: none;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	width: 100%;
	height: auto;
}



/*--------------------------------------------
　タイトル・テキスト
---------------------------------------------*/
h1, h2, h3, h4, h5 {
    line-height: 1.2;
    position: relative;
    margin: 0;
}

h1 {
  font-size: 32px;
}

h2 {
	font-size: 24px;
}

h3 {
    
}


/*------------------------------------------
　フッター
-------------------------------------------*/
footer {
    width: 100%;
    padding-top: 45px;
    background-color: #00daeb;
}

.foot_wrap {
    display: flex;
    flex-flow: column;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    padding-bottom: 90px;
}

.foot_sec p {
    display: block;
    width: 324px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 22px;
}

.foot_tel_box {
    display: block;
    width: 324px;
    margin: 0 auto;
}

.foot_tel {
    display: block;
    width: 224px;
    height: auto;
}

.foot_coop_link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 324px;
    height: 60px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 35px;
    color: #4c82b3;
    background-color: #d7f8fa;
    border: 2px solid #4c82b3;
    font-size: 20px;
    font-weight: bold;
    transition: .3s all;
}

.foot_coop_link:hover {
    color: #d7f8fa;
    background-color: #4c82b3;
    /*border: 2px solid #d7f8fa;*/
}

.foot_link_wrap {
    display: block;
    width: 100%;
}

.foot_link_box {
    display: none;
}

.foot_link_sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.foot_link_sns li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background-color: #4c82b3;
    border-radius: 50%;
}

.foot_link_sns li a img {
    display: block;
    width: 27px !important;
}

.foot_link_sns li a img:last-of-type {
    display: none;
}

.foot_copy {
    display: block;
    text-align: center;
    font-size: 10px;
    padding-bottom: 18px;
}


/*----------------------------------------------
エラー表示
----------------------------------------------*/
.error {
    width: 100%;
    margin: 0 auto;
    border: 2px solid #DD4548;
    background: #FFFF33;
    border-radius: 4px;
    padding: 8px 16px;
}

.error p {
    font-size: 90%;
    line-height: 1.6;
    color: #C00;
}


/*------------------------------------------
ページのトップへ
-------------------------------------------*/
.page_top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: block;
    width: 42px;
    height: 42px;
    z-index: 50;
}





}  /*  スマホ版ここまで  */










/*---------------------------------------
　共通
---------------------------------------*/


input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

#textarea,
#textfield,
#textfield1,
#textfield2,
#textfield3 {
    border-radius: 4px;
    border: 1px solid #999999;
    padding: 0.32rem 0.4rem 0.2rem 0.4rem;
    font-size: 16px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 500;
    font-feature-settings: "palt";
}

#select {
    border-radius: 4px;
    border: 1px solid #999999;
    padding: 0.32rem 0.4rem 0.2rem 0.4rem;
    font-size: 16px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 500;
    font-feature-settings: "palt";
}




body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 500;
	font-feature-settings: "palt";
}

textarea,input {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 500;
	font-feature-settings: "palt";
}

p, ul, li {
	padding: 0;
	margin: 0;
	list-style: none;
}

p, ul, li {
	text-align: justify;
}

dl, dt, dd {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
	color: #000000;
	text-decoration: none;
	transition: 0.3s;
}

table {
	/*border-collapse: collapse;*/
}


span,
div {
	margin: 0;
	padding: 0;
}

.order01 {
	order: 1;
}

.order02 {
	order: 2;
}

.order03 {
	order: 3;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
}

.none {
    display: none;
}

