﻿@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);
}

.anchor{
    position: relative;
}

#home{
    top: -90px;
}


/*-------------------------------------------
　レイアウト
--------------------------------------------*/
.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: 1200px;
    margin: 0 auto;
	/*background: #DDD;*/
}

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

.row96 {
    width: 100%;
    max-width: 960px;
    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 {
    
}

h2 {
    
}

h3 {
    
}

h4 {

}



/*--------------------------------------------
　ヘッダー
--------------------------------------------*/
header{
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-width: 1200px;
    height: 90px;
    background-color: #A5EABB;
    z-index: 900;
}
header a{
    display: block;
}

header a img{
    margin: auto;
}

.open{
    cursor: pointer;
}

.bg_black{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    transition: all .3s ease;
    pointer-events: none;
}

.bg_black.active{
    pointer-events: all;
    opacity: 1;
}

.header_menu{
    position: fixed;
    left: 100%;
    top: 0;
    display: block;
    width: 45%;
    height: 100vh;
    background-color: #f4f0e7;
    z-index: 999;
    clip-path: polygon(0% 0%,100% 0%,100% 100%, 20% 100%);
    transition: all .3s ease;
}
.header_menu.active{
    left: 55%;
}
.close{
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
}

.header_menu ul{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 32.5vw;
    left: 15.5vw;
    top: 7.5vw;
}

.header_menu ul li a{
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.5vw;
    font-weight: 500;
  font-family: 'A-OTF Jun34';
}
.header_menu ul li{
    position: relative;
}
.header_menu ul li:nth-of-type(1){
    left: 3.5vw;
}
.header_menu ul li:nth-of-type(2){
    left: 1.8vw;
}
.header_menu ul li:nth-of-type(3){
    left: 0.8vw;
}
.header_menu ul li:nth-of-type(5){
    left: 0.8vw;
}
.header_menu ul li:nth-of-type(6){
    left: 1.8vw;
}
.header_menu ul li:nth-of-type(7){
    left: 3.5vw;
}
.header_menu li img{
    margin-right: 10px;
    width: 2.5vw;
    height: auto;
}

.no_scroll{
    height: 100vh;
    overflow-y: hidden;
}



/*------------------------------------------
　フッター
-------------------------------------------*/
footer{
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      min-width: 1300px;
      padding-bottom: 20px;
      background-color: #fde38f;
   }
   .footer_top{
      width: 1300px;
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #000;
   }
   .footer_menu{
    margin: 35px auto;
      display: flex;
      width: 1200px;
      justify-content: center;
      align-items: center;
   }
   .fm_item{
    position: relative;
      display: flex;
      height: 78px;
      width: 200px;
      padding-bottom: 15px;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
   }

   .fm_item div{
    display: flex;
    align-items: center;
    width: 34px;
    height: 34px;
   }

   .fm_item img{
    width: 100%;
    height: auto;
   }

   .fm_item p{
    font-size: 16px;
   }

   .fm_item::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 78px;
    background: url(../home/footer_line_pc.png);
   }

   .fm_item:last-of-type::after{
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 78px;
    background: url(../home/footer_line_pc.png);
   }

   .footer_bottom{
    position: relative;
      width: 1300px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
   }

   .contacts{
    width: 400px;
   }

   .footer_bottom a:nth-of-type(2){
    display: flex;
    justify-content: flex-end;
   }

   .contacts a{
      display: block;
      margin-bottom: 10px;
   }

   .kohseikai{
    position: absolute;
    left: calc(50% - 160px);
   }

   .copyright{
      font-size: 12px;
      margin-top: 30px;
   }



/*------------------------------------------
ページのトップへ
-------------------------------------------*/
.page_top{
    display: block;
    position: fixed;
    right: 1.56vw;
    bottom: 1.56vw;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
}

.page_top img{
    width: 100%;
    height: auto;
}

.page_top.active{
    opacity: 1;
    pointer-events: all;
}


}   /*  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;*/
}

.anchor{
    position: relative;
}

#home{
    top: -50px;
}

/*------------------------------------------------
　ヘッダー&ナビ
------------------------------------------------*/
header{
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: #A5EABB;
    z-index: 999;
}
header a{
    display: block;
    height: 25px;
    width: 181px;
}

header a img{
    margin: auto;
    height: 25px;
    width: 181px;
}

.open{
    height: 40px;
    width: auto;
    cursor: pointer;
}

.open.active{
    display: none;
}

.bg_black{
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    z-index: 997;
}

.bg_black.active{
    display: block;
}

.header_menu{
    position: fixed;
    left: 100%;
    top: 0;
    display: block;
    width: 85%;
    height: 100vh;
    background-color: #f4f0e7;
    z-index: 998;
    transition: all .3s ease;
}
.header_menu.active{
    left: 15%;
}
.close_sp{
    position: absolute;
    right: 20px;
    display: none;
    width: auto;
    height: 40px;
    cursor: pointer;
}

.close_sp.active{
    display: block;
}



.header_menu ul{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 380px;
    left: 10.5vw;
    top: 90px;
}

.header_menu ul li a{
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}
.header_menu li img{
    margin-right: 10px;
    width: 28px;
    height: auto;
}

.no_scroll{
    height: 100vh;
    overflow-y: hidden;
}



/*-------------------------------------------
　レイアウト
--------------------------------------------*/
.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 {
    
}

h2 {
    
}

h3 {
   
}

h4 {

}


/*------------------------------------------
　フッター
-------------------------------------------*/
footer{
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      padding: 20px 0;
      background-color: #fde38f;
   }
   

   .footer_bottom{
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 50px;
   }

   .contacts,
   .footer_bottom a:nth-of-type(2){
    width: 100%;
   }

   .contacts p{
    line-height: 1.5;
   }

   .footer_bottom a:nth-of-type(2){
    display: flex;
    justify-content: flex-end;
   }

   .contacts a{
      display: block;
      width:200px;
      margin: 0 auto;
      margin-bottom: 30px;
    }
    .contacts a img{
        width: 100%;
    }
    
    .kohseikai{
        width: 320px;
        margin: 0 auto;
        margin-top: 30px;
    }

    .katsuhira img{
        position: relative;
        width: 198px;
        margin: 0 auto;
        margin-top: 30px;
    }

   .contacts p{
    text-align: center;
    font-size:18px;
   }

   .copyright{
      font-size: 14px;
      margin-top: 60px;
   }



/*------------------------------------------
ページのトップへ
-------------------------------------------*/
.page_top{
    display: block;
    position: fixed;
    right: 3.125vw;
    bottom: 3.125vw;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
}

.page_top img{
    width: 100%;
    height: auto;
}

.page_top.active{
    opacity: 1;
    pointer-events: all;
}



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










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


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: 'Noto Sans JP', 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: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-feature-settings: "palt";
}




body {
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
}

textarea,input {
	font-family: "Noto Sans JP", 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: .3s all;
    margin: 0;
    padding: 0;
}

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;
}

