﻿@charset "UTF-8";
/*
Theme Name: SUBARU
Theme URI: https://subaru1266.jp/
Description: SUBARU ホームページ
Version: 1.0
Author: SUBARU
Author URI: https://subaru1266.jp/
*/


h1,h2,h3,h4,h5,section,p,img,ul,li,div{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 100%;
	list-style: none;
}

table, th, td {
    border: none !important;
}

img{
	vertical-align: top;
}

/* 画像ブロック（figure）の上下の余白（マージン）を0にする */
.wp-block-image figure {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 画像（img）の下にできる隙間を消す */
.wp-block-image img {
    vertical-align: bottom;
}


a{
	text-decoration: none;
	color: black;
	font-family: "Noto Sans JP", sans-serif;	
}
p,li,table{
	font-family: "Noto Sans JP", sans-serif;	
}


/*-------------------*/
/*	     header      */
/*-------------------*/
/*ヘッダーナビ*/
#header{
	width: 90%;
	margin: 0 auto 20px;;
	display: flex;
	justify-content: space-between;
}
#header h1 img{
	width: 160px;
	margin-top: 25px;
}
#header nav.main-navigation ul.main-nav_list{
	list-style: none;
	margin-top: 20px;
    display: flex; 
	border-bottom: solid 0.5px #a2a5ba;
}
#header nav.main-navigation ul.main-nav_list li.list_item{
	position: relative;		
	width: 145px;
	text-align: center;
	padding: 30px 0 4px;
	font-size: 20px;
	font-weight: 500;
}
#header nav.main-navigation a{
	display: block;
}
#header nav.main-navigation ul.main-nav_list li ul.sub-menu{
	position: absolute;
	width: 145px;
	background-color: rgba(255, 255, 255, 1);
	top: 60px;
	left: 0;
	opacity: 0;
	visibility: hidden;
 	transition: 0.5s;	
	z-index: 10;
}
#header nav.main-navigation ul.main-nav_list li ul.sub-menu li.dropdown_link a{
	display: block;
	font-size: 16px;
	padding: 10px 0 10px;
	border-bottom: solid 1px #232B6B;
}
#header nav.main-navigation ul.main-nav_list li ul.sub-menu li.dropdown_link a:first-child{
	padding-top: 20px;
}

#header nav.main-navigation ul.main-nav_list li.list_item:hover,
#header nav.main-navigation ul.main-nav_list li.list_item:focus-within{
	border-bottom: solid 2px #232B6B;
	background-color:  #232B6B;
	color: white;
}
#header nav.main-navigation ul.main-nav_list li.list_item a:hover{
	color: white;
}
#header nav.main-navigation ul.main-nav_list li.list_item:hover a.link,
#header nav.main-navigation ul.main-nav_list li.list_item:focus-within a.link{
	color: white;
}
#header nav.main-navigation ul.main-nav_list .no-click-menu > a{
	cursor: default;
}
#header nav.main-navigation ul.main-nav_list li.list_item:hover > ul.sub-menu,
#header nav.main-navigation ul.main-nav_list li.list_item:focus-within > ul.sub-menu{
	display: block;
	visibility: visible;
	opacity: 1;	
	 }
#header nav.main-navigation ul.main-nav_list li.list_item  ul.sub-menu li.dropdown_link a:hover,
#header nav.main-navigation ul.main-nav_list li.list_item  ul.sub-menu li.dropdown_link a:focus-within{
	color: white;
	background-color: #232B6B
}


/*グローバルメニュー*/
:root {
  --drawer-bar-gap: 8px;
  --duration: 300ms;
  --easing: ease;
}
.header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-top: 10px;
  padding: 8px;
  display: none;
}
section.h-menu{
  height: 40vh;
}
section.h-menu:nth-of-type(odd) {
  background: black;
}
section.h-menu:nth-of-type(even) {
  background: white;
}
.drawer-button {
  position: relative;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  touch-action: manipulation;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-radius: 8px;
}
.drawer-button__icon {
  position: relative;
  width: 32px;
  height: auto;
  aspect-ratio: 1;
}
.drawer-button__bar {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 9999px;
}
.drawer-button__bar:nth-child(1) {
  transform: translate(-50%, calc(-50% - var(--drawer-bar-gap)));
  transition: transform var(--duration) var(--easing);
}
.drawer-button__bar:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity var(--duration) var(--easing);
}
.drawer-button__bar:nth-child(3) {
  transform: translate(-50%, calc(-50% + var(--drawer-bar-gap)));
  transition: transform var(--duration) var(--easing);
}
.drawer-button__bar:nth-child(1):where(.is-open *) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.drawer-button__bar:nth-child(2):where(.is-open *) {
  opacity: 0;
}
.drawer-button__bar:nth-child(3):where(.is-open *) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer-button__text {
  font-size: 10px;
  line-height: 1;
}
.drawer-nav[hidden] {
  display: none;
}
.drawer-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: transparent;
}
.drawer-nav__inner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: clamp(0px, 90vw, 280px);
  height: 100%;
  padding: 48px 24px;
  background-color: #fff;
  opacity: 1;
  transform: translate3d(100%, 0, 0);
  transition: transform var(--duration) var(--easing), opacity var(--duration) var(--easing);
}
.drawer-nav__inner:where(.is-open *) {
  transform: unset;
}
.is-vertical :where(.drawer-nav__inner) {
  transform: translate3d(0, 100%, 0);
}
.is-open.is-vertical :where(.drawer-nav__inner) {
  transform: unset;
}
.is-fade :where(.drawer-nav__inner) {
  opacity: 0;
}
.is-open.is-fade :where(.drawer-nav__inner) {
  opacity: 1;
}
ul.drawer-nav__menu {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  overflow: auto;
  list-style: none;
}
ul.drawer-nav__menu a{
  display: block;
  padding: 12px 16px;
  line-height: 1.4;
  color: #111;
  text-decoration: none;
}
.drawer-nav__menu a:hover{
  color: white;
  background-color: #232B6B;
}
.drawer__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.32);
  opacity: 0;
  transition: opacity var(--duration) var(--easing);
}
.is-open :where(.drawer__overlay) {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .drawer-button__bar,
.drawer-nav__inner,
.drawer__overlay {
    transition: none !important;
  }
}
.is-open :where(.drawer__overlay) {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .drawer-button__bar,
.drawer-nav__inner,
.drawer__overlay {
    transition: none !important;
  }
}



/*-----レスポンシブ-----*/
@media only screen and (max-width:1400px){
	#header nav.main-navigation{
		display: none;
	}		
	.header__inner {
  		display: block;
	}
	.section.h-menu {
    	height: 0;
	}
	#catalog-link{
		display: none;
	}
}
@media only screen and (max-width:500px){
	#header{
		width: 95%;
		margin-bottom: 0;
	}
	#header h1 img{
		width: 140px;
		margin-top: 15px;
	}
	.header__inner {
		margin-top: 5px;
	}
}

/*-------------------*/
/*	   TOP PAGE      */
/*-------------------*/

/*メインビュー*/
#container-2{
	background-color: #edecf3;
	padding-bottom: 50px;
}
#main p{
	font-weight: 400;
	line-height: 1.6;
}
#main .first-top{
	width: 60%;
	margin: 30px auto 350px;
	padding-bottom: 100px;
	align-items:center;
	position: relative;
}
#main .left-element{
	max-width: 800px;
	padding: 30px 20px 30px 60px;
	position: absolute;
	bottom: 113px;
	left: 0;
	color: white;
/*	background-color: rgba(37, 37, 37, 0.3)*/
}
#main .first-top .one{
	font-size: 54px;
	font-weight: 700;
	text-shadow: 0.9px 0.9px 0 #353f38, -0.9px -0.9px 0 #353f38, 0.9px -0.9px 0 #353f38, -0.9px 0.9px 0 #353f38;
}	
#main .first-top .two{
	margin-top: 30px;
	font-size: 28px;
	font-weight: 500;
	text-shadow: 0.3px 0.3px 0 #353f38, -0.3px -0.3px 0 #353f38, 0.3px -0.3px 0 #353f38, -0.3px 0.3px 0 #353f38;
}	
#main .top-image img{
	width:100%;
	object-fit: cover;
}	
#main .top-image-phone{
	display: none;
}	
#main .top-image-phone img{
	width:100%;
	object-fit: cover;
}	
#container-1 .products-title{
	width: 80%;
	margin: 0 auto;
	position: relative;
	opacity: 0;	
}
#container-1 .products-title h2{
	margin-top: 20px;
	font-size: 50px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	position: absolute;
	bottom: 170px;
	left: 0;
}
#container-1 .products-title h2 span{
	font-size: 35px;
	padding-left: 10px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}
#container-1 .products-title h3{
	font-size: 25px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	position: absolute;
	bottom: 130px;
	left: 0;
}

/*　商品画像スクロール */
/*左スクロール*/
@keyframes infinity-scroll-left {
	from{
		transform: translateX(0);
	}
	to{
		transform: translateX(-100%);
	}
}
#container-1 .products .products-list-wrap .scroll-infinity-left{	
	animation: infinity-scroll-left 60s infinite linear 0.5s both;
}
#container-1 .products .products-list-wrap .scroll-infinity-left2{	
	animation: infinity-scroll-left 60s infinite linear 0.5s both;
}
#container-1 .products .products-list-wrap .scroll-infinity-left3{	
	animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

/*右スクロール*/
@keyframes infinity-scroll-right {
	from{
		transform: translateX(-100%);
	}
	to{
		transform: translateX(0%);
	}
}
#container-1 .products .products-list-wrap .scroll-infinity-right{	
	animation: infinity-scroll-right 60s infinite linear 0.5s both;
}

/*スクロール共通*/
#container-1 .products .products-container{
	width: 100%;
	margin-top: 130px;
	padding: 15px 0;
	background-color: #232B6B;
	position: relative;
	top: 0;
	z-index: 0;
}
#container-1 .products .products-container::before{
	content: '';
	position: absolute;
	top: -120px;
	bottom: 200px;	
	left: 0;
	right: 0;
	background-color: #232B6B;
    transform: skewY(-6deg) translateY(1px);
    z-index: -1;
}

#container-1 .products .products-list-wrap{
	display: flex;
	overflow: hidden;
	width: 100%;

}
#container-1 .products .products-list-wrap .scroll-infinity{
	display: flex;
	list-style: none;
	margin: 7px 0;
}

#container-1 .products .products-list-wrap .scroll-infinity .scroll-item{ 
	width: calc(100vw / 12) !important; 
	margin: 0 2px;
}
#container-1 .products .products-list-wrap img{
	width: 90%;
	object-fit: cover;
}

/*-----レスポンシブ-----*/
@media only screen and (max-width:1750px){
	#container-1 .products .products-container::before{
		content: '';
		position: absolute;
		top: -80px;
		bottom: 150px;	
		left: 0;
		right: 0;
		background-color: #232B6B;
   		transform: skewY(-6deg) translateY(1px);
    	z-index: -1;
	}	
	#main .first-top .one{
		font-size: 40px;
		font-weight: 600;
	}	
	#main .first-top .two{
		margin-top: 22px;
		font-size: 24px;
		font-weight: 400;
	}	
}	
@media only screen and (max-width:1400px){
	#main .first-top .one{
		font-size: 36px;
	}	
	#main .first-top .two{
		font-size: 20px;
	}	
}	

@media only screen and (max-width:1200px){
	#container-1 .products .products-list-wrap .scroll-infinity .scroll-item{
		width: calc(100vw / 10)!important;
		margin: 0 2px;
	}
	#container-1 .products .products-list-wrap img{
		width: 100%;
		object-fit: cover;
	}		
	#container-1 .products .products-container::before{
		content: '';
		position: absolute;
		top: -60px;
		bottom: 150px;	
		left: 0;
		right: 0;
		background-color: #232B6B;
    	transform: skewY(-6deg) translateY(1px);
    	z-index: -1;
	}
	#main  .first-top{
		padding-bottom: 0;
		width: 100%;
		margin-top: 10px;
	}
	#main .left-element{
		padding-left: 40px;
		bottom: 10px;
	}	
	#main .first-top .one{
		font-size: 36px;
	}	
	#main .first-top .two{
		font-size: 22px;
	}	
	#container-1 .products .products-container::before{
		content: '';
		position: absolute;
		top: -50px;
		bottom: 100px;	
		left: 0;
		right: 0;
		background-color: #232B6B;
    	transform: skewY(-6deg) translateY(1px);
    	z-index: -1;
	}	
}

@media only screen and (max-width:600px){
	#main .left-element{
		width: 80%;
		padding-left: 20px;
	}
	#main .first-top .one{
		font-size: 24px;
		font-weight: 600;
	}	
	#main .first-top .two{
		font-size: 18px;
		font-weight: 400;
	}		
	#main .top-image{
		display: none;
	}		
	#main .top-image-phone{
		display: block;
	}
	#main .first-top{
		margin:30px auto 230px;
	}
	#container-1 .products-title h2{
	bottom: 110px;
	}
	#container-1 .products-title h3{
	bottom: 85px;
	}
	#container-1 .products .products-container{	
		margin-top: 90px;
	}	
	#container-1 .products .products-container{	
		margin-top: 90px;
	}		
}
@media only screen and (max-width:400px){
	#main .left-element{
		max-width: 220px;
		bottom: 0;
		padding: 10px;		
	}
	#main .first-top .one{
		font-size: 20px;
	}	
	#main .first-top .two{
		font-size: 16px;
	}		
}
@media only screen and (max-width:300px){
	#main .first-top .one{
		font-size: 18px;
	}	
	#main .first-top .two{
		font-size: 14px;
	}		
}
/*top-page products*/
#container-2 p.product-introduction{
	margin: 0 auto;
	padding-top: 30px;
	font-size: 26px;
	font-weight: 500;
	text-align: center;
	opacity: 0
}
.top-products-container{
	width: 80%;
	margin: 30px auto;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	opacity: 0;
}
.top-products-container .product-top-image img{
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}	
#container-2 .top-catalog-link{
	max-width: 380px;
	margin: 0 auto;
	border-radius: 30px;
	text-align: center;
	opacity:0;
}
#container-2 .top-catalog-link a.wp-block-button__link{
	display: block;
	background: linear-gradient(90deg,#232B6B,#3366CC)!important;	
	color: white;
	padding: 10px 70px;
	font-size: 20px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}

/*-----レスポンシブ-----*/
@media only screen and (max-width:620px){
	.top-products-container{
		width: 100%;
	}
	#container-1 .products-title h2{
		margin-top: 15px;
		font-size: 28px;
		font-weight: 500;
		text-align: center;
	}
	#container-1 .products-title h2 span{
		font-size: 22px;
		padding-left: 10px;
		font-weight: 400;
	}
	#container-1 .products-title h3{
		font-size: 20px;
		text-align: center;
	}
	#container-2 p.product-introduction{
		margin-top: 10px;
		font-size: 18px;
		width: 90%;
	}	
	.top-products-container .product-top-image{
		width: 80%;
		margin: 0 auto;
	}		
	#container-2 .top-catalog-link{
		max-width: 280px;
		margin-top: 40px;
		margin-left: 100px;
	}
	#container-2 .top-catalog-link a.wp-block-button__link{
		font-size: 16px;
	}	
}
@media only screen and (max-width:350px){
	#container-1 .products-title{
		width: 85%;
	}
	#container-1 .products-title h2{
		margin-top: 5px;
		font-size: 18px;
		font-weight: 500;
	}	
	#container-1 .products-title h2 span{
		font-size: 20px;
		padding-left: 10px;
		font-weight: 400;
	}
	#container-1 .products-title h3{
		font-size: 20px;
	}
	#container-2 p.product-introduction{
		width: 100%;
		font-size: 16px;
	}		
}
/*top-page news*/
.top-news-container{
	width: 60%;
	margin: 150px auto 0;
	padding: 50px 60px;
	opacity: 0;
	background-color: white;
}
.top-news-container h2{
	text-align: center;
	font-size: 50px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}	

.top-news-container h2 span{
	font-size: 35px;
	padding-left: 5px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}
.top-news-container .news-list{
	width: 80%;
	margin: 50px auto;
}

.top-news-container .news-list li{
	margin-top: 20px;
}
.top-news-container div.news-link{
	max-width: 380px;
	margin: 10px auto;
	border-radius: 30px;
	text-align: center;
}
.top-news-container div.news-link a{
	display: block;
	background: linear-gradient(90deg,#232B6B,#3366CC)!important;	
	color: white;
	padding: 10px 70px;
	font-size: 20px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}

/*-----レスポンシブ-----*/
@media only screen and (max-width:800px){
	.top-news-container{
		width: 90%;
	}
}	
@media only screen and (max-width:500px){
	.top-news-container{
		width: 90%;
		margin: 80px auto 0;
		padding: 20px 10px;
		opacity: 0;
		background-color: white;
	}
	.top-news-container h2{
		margin-top: 20px;
		font-size: 28px;
		font-weight: 500;
	}	
	.top-news-container h2 span{
		font-size: 22px;
		padding-left: 10px;
		font-weight: 400;
	}
	.top-news-container .news-list{
		width: 85%;
	}
	.top-news-container p{
		font-size: 16px;
	}	
	.top-news-container div.news-link{
		max-width: 280px;
		margin-top: 40px;
		margin: 0 auto;
	}

	.top-news-container div.news-link a{
		font-size: 16px;
	}
}	


/*top-page company*/
.top-company-container{
	width: 80%;
	margin: 150px auto 0;
	padding-bottom: 50px;
	opacity: 0;
}
.top-company-container h2{
	text-align: center;
	font-size: 50px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
.top-company-container h2 span{
	font-size: 35px;
	padding-left: 10px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}

.top-company-container .table-containaer{
	display: flex;
	justify-content: center;
	margin-top: 50px;
}


.top-company-container .table-containaer .company-info{
	width: 40%;
	align-self: flex-end;
	padding-left: 20px;
}
.top-company-container .table-containaer table td{
	height: 28px;
}

.top-company-container div.company-link{
	max-width: 320px;
	margin-top: 20px;
	margin-left: 204px;
	border-radius: 30px;
	text-align: center;
}
.top-company-container div.company-link a{
	display: block;
	background: linear-gradient(90deg,#232B6B,#3366CC)!important;	
	color: white;
	padding: 10px 35px;
	font-size: 20px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}

/*-----レスポンシブ-----*/
@media only screen and (max-width:1400px){
	.top-company-container .table-containaer .company-info{
		margin-top: 20px;
		padding-left: 5px;
	}
}	
@media only screen and (max-width:1100px){
	.top-company-container .table-containaer{
		display: block;
	}	
	.top-company-container .table-containaer .company-info{
		width: 100%;
	}
	.top-company-container div.company-link{
		max-width: 200px;
		margin: 15px auto 0;
	}
	.top-company-container div.company-link .wp-block-button{
		margin: 0 auto;
	}
	.top-company-container div.company-link a{
		font-size: 16px;
		padding: 10px 50px;
	}		
}	
@media only screen and (max-width:500px){
	.top-company-container{
		width: 80%;
		margin-top: 80px;
		padding-bottom: 0;
	}	
	.top-company-container h2{
		margin-top: 20px;
		font-size: 28px;
		font-weight: 500;
	}
	.top-company-container h2 span{
		font-size: 22px;
		padding-left: 10px;
		font-weight: 400;
	}
	.top-company-container .table-containaer{
		margin-top: 20px;
	}	
	.top-company-container .table-containaer img{
		max-width: 100%;
	}
	.top-company-container .table-containaer .company-info{
		width: 100%;
		font-size: 13px;
	}
}

/*top-page ontact*/
.contact {
	margin-top: 100px;
	padding-bottom: 50px;
	opacity: 0;
}
.contact .contact-top{
	background-color: #d3d3d3;
	padding: 40px 0;
}
.contact h2{
	text-align: center;
	font-size: 40px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
.contact h2 span{
	font-size: 40px;
	padding-left: 5px;	
}
.contact p{
	text-align: center;
	margin-top: 15px;
	margin-bottom: 10px;
	font-size: 18px;
}
.contact .contact-containaer img{
	width: 50px;
	margin-right: 20px;
}
.contact .contact-table{
	width: 360px;
	margin: 10px auto;
	border: solid 1px black;
	padding: 10px 20px 10px 40px;
	background-color: white;
}
.contact .contact-containaer table.t-1{
	font-size: 25px;
	margin-left: 20px;
}
.contact .contact-containaer table.t-1 tr{
	line-height: 20px;
}
.contact .contact-containaer table.t-2 tr{
	vertical-align: top;
}	
.ontact .contact-containaer table.t-2 tr td{
	width: 130px;
}	
.contact .contact-containaer table.t-3{
	margin-left: 20px;
	font-size: 25px;
}	
.contact .contact-containaer .contact-link{
	max-width: 360px;
	margin: 20px auto 0;
	border-radius: 30px;
	padding: 10px 10px;
	background: linear-gradient(90deg,#232B6B,#3366CC);	
}
.contact .contact-containaer .contact-link a{
	display: inline-block;
	width: 100%;
	color: white;
	text-align: center;
/*	font-family: "Noto Sans JP", sans-serif;*/
	font-weight: 500;
}
.contact .contact-containaer .contact-link img{
	width: 30px;
	margin-right: 10px;
}

/*-----レスポンシブ-----*/
@media only screen and (max-width:500px){
	.contact {
		margin-top: 80px;
		padding-bottom: 30px;
	}
	.contact .contact-top{
		padding: 15px 0;
	}	
	.contact h2{
		margin-top: 10px;
		font-size: 28px;
		font-weight: 500;
	}
	.contact h2 span{
		font-size: 22px;
		padding-left: 10px;
		font-weight: 400;
	}
	.contact p{
		text-align: center;
		margin-top: 8px;
		margin-bottom: 5px;
		font-size: 16px;
	}
	.contact .contact-containaer img{
		width: 30px;
		margin-right: 20px;
	}
	.contact .contact-table{
		width: 80%;
	}
	.contact .contact-containaer table.t-1{
		font-size: 20px;
	}
	.contact .contact-containaer table.t-1 tr{
		line-height: 18px;
	}
	.contact .contact-containaer table.t-2 tr td{
		font-size: 13px;
	}		
	.contact .contact-containaer table.t-3{
		font-size: 20px;
	}	
	.contact .contact-containaer table.t-3 tr{
		line-height: 18px;
	}
	.contact .contact-containaer .contact-link{
		max-width: 280px;
		margin-top: 40px;
		margin: 15px auto 0;
	}
	.contact .contact-containaer .contact-link img{
		width: 28px;
		margin-right: 10px;
		margin-top: 2px;
	}	
}

/* リンク矢印　*/
.arrow-right {
	display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg); /* 45度回転させて矢印に */
    margin-left: 5px;
}

.arrow-right-footer {
	display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid black;
    border-right: 2px solid black;
    transform: rotate(45deg); /* 45度回転させて矢印に */
    margin-left: 5px;
}


/*-------------------*/
/*	 COMPANY PAGE    */
/*-------------------*/

#company-page{
	margin: 10px auto 0;
	padding-top: 10px;
	padding-bottom: 20px;
	background-color: #edecf3;
}
#company-page .backcolor{
	background-color: #232B6B;
	width: 600px;
	height: 50px;
	margin: 250px auto 0;
}
#company-page h2{
	font-size: 95px;
	font-family: "Verdana", sans-serif;
	line-height: 1.0;
	position: relative;
	top: -170px;
	left: -150px;
}
#company-page p.about{
	font-size: 70px;
	font-family: "Verdana", sans-serif;
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 2px #000;    /* 輪郭の太さと色を指定 */
  	text-stroke: 2px #000;
	text-align: right;
	width: 80%;
	margin: 0 auto;
	position: relative;
	top: -80px;
	right: -80px;
}


#company-page #business-content{
	margin: 200px auto 0;
	width: 90%;
}

#company-page h3.en{
	margin-top: 50px;
	font-family: "Montserrat", sans-serif;
	font-size: 40px;
	color: gray;
	text-align: center;
}
#company-page #business-content h3.jp{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 35px;
	text-align: center;
}

#company-page #business-content h4{
	font-size: 25px;
	margin: 25px auto 0;
	font-family: "Noto Sans JP", sans-serif;	
	text-align: center;
}

#company-page #business-content .business p{
	max-width: 640px;
	margin: 50px auto 100px;
	font-size: 18px;
	font-family: "Noto Sans JP", sans-serif;	
}

#company-page #business-content .chosen-containaer{
	max-width: 640px;
	margin: 20px auto 0;
}
#company-page #business-content .chosen-containaer h4{
	text-align: left;
}
#company-page #business-content .chosen p{
	margin: 20px auto 50px;
	font-size: 18px;
	font-family: "Noto Sans JP", sans-serif;
}

#company-page #business-content .wp-block-group{
	max-width: 640px;
	margin: 0 auto;
}

#company-page #business-content .company-profile table{
	margin: 40px auto 80px;
	font-size: 18px;
	font-family: "Noto Sans JP", sans-serif;
}
#company-page #business-content .company-profile table tr{
	line-height: 1.8;
	vertical-align: top;
}

#company-page #business-content .company-profile table td:first-child{
	width: 200px;
}

#company-page .access{
	display: flex;
	justify-content: center;
	font-family: "Noto Sans JP", sans-serif;
	max-width: 1100px;
	margin: 50px auto 80px;
	padding-bottom: 20px;
	border-bottom: solid 4px black;
}

#company-page .access .address{
	padding: 0 20px;
}
#company-page .access .office{
	font-size: 25px;
	font-weight: 500;
	max-width: 400px;
}


#company-page .access img{
	max-width: 400px;
} 

#company-page .access .map{
	border: solid 1px lightgray;
	padding: 0;
	line-height: 0;
	display: inline-block;
}

/*-----レスポンシブ-----*/
@media only screen and (max-width:1400px){
	#company-page .backcolor{
		background-color: #232B6B;		
		width: 400px;
		height: 40px;
		margin: 250px auto 0;
	}
	#company-page h2{
		font-size: 60px;
		font-family: "Verdana", sans-serif;
		line-height: 1.0;
		position: relative;
		top: -105px;
		left: -120px;
	}
	#company-page p.about{
		font-size: 50px;
		font-family: "Verdana", sans-serif;
		font-weight: 900;
		color: transparent;
		-webkit-text-stroke: 2px #000;    /* 輪郭の太さと色を指定 */
 	 	text-stroke: 2px #000;
		text-align: right;
		width: 80%;
		margin: 0 auto;
		position: relative;
		top: -40px;
		right: -150px;
	}
}

@media only screen and (max-width:1000px){
	#company-page .backcolor{
		background-color: #232B6B;		
		width: 200px;
		height: 23px;
		margin: 150px auto 0;
	}
	#company-page h2{
		font-size: 45px;
		font-family: "Verdana", sans-serif;
		line-height: 1.0;
		position: relative;
		top: -80px;
		left: -120px;
	}
	#company-page p.about{
		font-size: 30px;
		font-family: "Verdana", sans-serif;
		font-weight: 600;
		color: transparent;
		-webkit-text-stroke: 2px #000;    /* 輪郭の太さと色を指定 */
  		text-stroke: 2px #000;
		text-align: right;
		width: 100%;
		margin: 0 auto;
		position: relative;
		top: -25px;
		right: -80px;
	}
	#company-page h3.en{
		margin-top: 100px;
		font-size: 30px;
		color: gray;
	}
	#company-page #business-content{
		margin-top: 80px;
	}
	#company-page #business-content h3.jp{
		font-size: 30px;
	}
	#company-page #business-content h4{
		font-size: 20px;
		margin: 20px auto 0;
	}
	#company-page .address-1,
	#company-page .address-3{
		flex-wrap: wrap;
	}
	#company-page .address-2{
		flex-wrap: wrap-reverse!important;
	}		

	#company-page .access .map{
		width: 80%;
	}
	#company-page .access .map iframe{
		width: 100%;
	}		
	#company-page .access img{
	width: 100%;
	} 
}
@media only screen and (max-width:500px){
	#company-page{
		padding-top: 50px;
	}
	#company-page .backcolor{
		background-color: #232B6B;		
		width: 150px;
		height: 18px;
		margin: 60px auto 0;
	}
	#company-page h2{
		font-size: 40px;
		font-family: "Verdana", sans-serif;
		line-height: 1.0;
		position: relative;
		top: -70px;
		left: -60px;
	}
	#company-page p.about{
		font-size: 28px;
		font-family: "Verdana", sans-serif;
		font-weight: 200;
		color: transparent;
		-webkit-text-stroke: 2px #000;    /* 輪郭の太さと色を指定 */
  		text-stroke: 2px #000;
		text-align: right;
		width: 100%;
		margin: 0 auto;
		position: relative;
		top: -30px;
		right: -50px;
	}
	#company-page #business-content{
		width: 95%;
		margin-top: 50px;
	}
	#company-page h3.en{
		font-size: 26px;
		color: gray;
		line-height: 1;
		margin-top: 60px;
	}
	#company-page #business-content h3.jp{
		font-size: 22px;
	}
	#company-page #business-content h4{
		font-size: 18px;
		margin: 20px auto 0;
	}
	#company-page #business-content .business p{
		font-size: 17px;
	}	
	#company-page #business-content .chosen p{
		margin: 10px auto 30px;
		font-size: 17px;
	}
	#company-page #business-content .company-profile table{
		margin: 40px auto 80px;
		font-size: 17px;
	}
	#company-page #business-content .company-profile table tr{
		line-height: 1.6;
	}
	#company-page #business-content .company-profile table td:first-child{
		width: 140px;
	}
	#company-page .access .office{
	font-size: 20px;
	}
}	
@media only screen and (max-width:350px){
	#company-page{
		padding-top: 50px;
	}
	#company-page .backcolor{
		background-color: #232B6B;		
		width: 150px;
		height: 13px;
		margin: 60px auto 0;
	}
	#company-page h2{
		font-size: 28px;
		font-family: "Verdana", sans-serif;
		line-height: 1.0;
		position: relative;
		top: -50px;
		left: -20px;
	}
	#company-page p.about{
		font-size: 23px;
		font-family: "Verdana", sans-serif;
		font-weight: 200;
		color: transparent;
		-webkit-text-stroke: 2px #000;    /* 輪郭の太さと色を指定 */
  		text-stroke: 2px #000;
		text-align: right;
		width: 100%;
		margin: 0 auto;
		position: relative;
		top: -30px;
		right: -10px;
	}
}	
/*-------------------*/
/*	PHILOSOPHY PAGE  */
/*-------------------*/

#philosophy-page{
	background-color: #edecf3;
}

#philosophy-page .company h2{
	padding-top: 120px;
	font-size: 50px;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	color: #232B6B;
}


#philosophy-page .message-container{
	width: 80%;
	margin: 80px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	font-family: "Noto Sans JP", sans-serif;
}

#philosophy-page h3.en{
	font-family: "Montserrat", sans-serif;
	font-size: 40px;
	color: gray;
}

#philosophy-page h3.jp{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 35px;
}

#philosophy-page .message-container .message{
	margin-right: 10px;
}

#philosophy-page .message-container p{
	font-size: 18px;
	margin-top: 10px;
}
#philosophy-page .message-container p.signature{
	font-size: 22px;
	margin-top: 60px;
	margin-bottom: 70px;
	font-weight: 500;	
}
#philosophy-page .message-container .policy-image img{
	width: 100%;
}
#philosophy-page #philosophy-container{
	width: 80%;
	margin: 200px auto 0;
	padding-bottom: 50px;
	font-family: "Noto Sans JP", sans-serif;
}

#philosophy-page #philosophy-container h4{
	font-size: 30px;
	margin-top: 30px;
	border-bottom: solid 1px black;
}
#philosophy-page #philosophy-container p{
	font-size: 34px;
	margin: 30px 0 50px 0;
	margin-left: 30px;
}
#philosophy-page #philosophy-container ul{
	margin-top: 30px;
}
#philosophy-page #philosophy-container li{
	font-size: 22px;
	margin: 10px 0 40px 50px;
}


/*-----レスポンシブ-----*/
@media only screen and (max-width:1000px){
	#philosophy-page .company h2{
		padding-top: 80px;
		font-size: 30px;
	}
	#philosophy-page h3.en{
		font-size: 24px;
		width: 90%;
	}
	#philosophy-page h3.jp{
		font-family: "Noto Sans JP", sans-serif;
		font-size: 22px;
	}
	#philosophy-page #philosophy-container h4{
		font-size: 20px;
		margin-top: 30px;
		border-bottom: solid 1px black;
	}
	#philosophy-page #philosophy-container p{
		font-size: 16px;
		margin: 30px 0 50px 0;
		margin-left: 30px;
	}
	#philosophy-page .message-container p.signature{
		font-size: 20px;
		margin-top: 40px;
		margin-bottom: 70px;
	}
	#philosophy-page #philosophy-container{
		width: 80%;
		margin: 150px auto 0;
		padding-bottom: 50px;
	}	
	#philosophy-page #philosophy-container p{
		font-size: 20px;
		margin: 30px 0 50px 0;
		margin-left: 30px;
	}
	#philosophy-page #philosophy-container ul{
		margin-top: 30px;
	}
	#philosophy-page #philosophy-container li{
		font-size: 20px;
		margin: 10px 0 20px 30px;
	}
}
@media only screen and (max-width:500px){
	#philosophy-page .message-container{
		width: 95%;
	}	
	#philosophy-page #philosophy-container{
		width: 95%;
	}
	#philosophy-page #philosophy-container p{
		font-size: 18px;
		margin-left: 5px;		
	}	
	#philosophy-page #philosophy-container li{
		font-size: 18px;
		margin-left: 5px;	
	}	
}	
/*-------------------*/
/*	  PRODUCT PAGE   */
/*-------------------*/
main .product-page{
	background-color: #edecf3;
}

main .product-page h2{
	padding-top: 120px;
	margin-bottom: 20px;
	font-size: 50px;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	color: #232B6B;
}
main .product-page p{
	text-align: center;
	font-size: 22px;
}

main .product-page .product-container{
	width: 70%;
	margin: 50px auto 0;
	padding-bottom: 80px;
}

main .product-page .product-container .item-set{
	display: flex;
	justify-content: center;
	margin: 50px 0;
}

main .product-page .product-container .item-set .set1,
main .product-page .product-container .item-set .set2,
main .product-page .product-container .item-set .set3{
	opacity: 0;	
}

main .product-page .product-container .catalog-link{
	max-width: 350px;
	margin: 0 auto;
	border-radius: 30px;
	text-align: center;	
}
main .product-page .product-container .catalog-link a{
	display: block;
	background: linear-gradient(90deg,#232B6B,#3366CC)!important;	
	color: white;
	font-size: 18px;	
	padding: 10px 100px;	
	font-family: "Montserrat", sans-serif;
	font-weight: 500;	
}

/*-----レスポンシブ-----*/
@media only screen and (max-width:700px){
	main .product-page .product-container{
		width: 90%
	}	
	main .product-page h2{
		padding-top: 50px;
		font-size: 30px;
	}
	main .product-page p{
		font-size: 16px;
		width: 95%;
	}
	main .product-page .product-container .item-set{
		margin: 20px 0;
	}
	main .product-page .product-container .catalog-link{
		margin: 20px auto 0;
	}
	main .product-page .product-container .catalog-link a{
	padding: 10px 50px;	
	}
}

/*-------------------*/
/*	   NEWS PAGE     */
/*-------------------*/
main .news-page{
	background-color: #edecf3;
	padding-bottom: 80px;
}
main .news-page .main-title{
	padding-top: 120px;
	font-size: 50px;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	color: #232B6B;
}


main .news-page li{
	margin-top: 50px;
}

main .news-page li a{
	font-size: 24px;
	font-weight: 500;
	font-family: "Noto Sans JP", sans-serif;
	color: #232B6B;
}


main .news-page .news-column p{
	font-size: 18px;
	font-weight: 400;
	margin-top: 10px;
	font-family: "Noto Sans JP", sans-serif;
}

main .news-page .news-column{
	width: 80%;
	margin: 0 auto;
}


/*-----レスポンシブ-----*/
@media only screen and (max-width:700px){
	main .news-page h2{
		padding-top: 80px;
		font-size: 30px;
	}
	main .news-page h3{
		font-size: 22px;
		font-weight: 400;
		margin-top: 50px;
	}
	main .news-page .news-column p{
		font-size: 16px;
		font-weight: 400;
		margin-top: 10px;
	}	
}


/*-------------------*/
/*	  MEDIA PAGE     */
/*-------------------*/
main .media-page{
	background-color: #edecf3;
	padding-bottom: 80px;
}
main .media-page h2.main-title{
	padding-top: 120px;
	font-size: 50px;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	color: #232B6B;
}

main .media-page li{
	margin-top: 50px;
}

main .media-page li a{
	font-size: 24px;
	font-weight: 500;
	font-family: "Noto Sans JP", sans-serif;
	color: #232B6B;
}
main .media-page .media-column p{
	font-size: 18px;
	font-weight: 400;
	margin-top: 10px;
	margin-bottom: 10px;
	font-family: "Noto Sans JP", sans-serif;
}
main .media-page .media-countainaer{
	width: 90%;
	margin: 0 auto;
}

main .media-page .media-column{
	width: 80%;
	margin: 0 auto;
}
main .media-page .media-image-set{
	width: 90%;
	margin: 150px auto 0;
	display: flex;
	justify-content: center;
}
main .media-page .media-image-set1{
	margin-right: 30px;
}
main .media-page .media-image-set1 .media-image-1,
main .media-page .media-image-set2 .media-image-2{
	max-width: 380px;
}	
main .media-page .media-image-set img{
	width: 100%;
	/*aspect-ratio: 4/3;*/
}

/*-----レスポンシブ-----*/
@media only screen and (max-width:900px){
	main .media-page h2{
		padding-top: 80px;
		font-size: 30px;
	}
	main .media-page h3{
		font-size: 22px;
		font-weight: 400;
		margin-top: 50px;
	}
	main .media-page .media-column p{
		font-size: 16px;
		font-weight: 400;
		margin-top: 10px;
	}
	main .media-page .media-image-set1 .media-image-1,
	main .media-page .media-image-set2 .media-image-2{
		max-width: 280px;
	}	
}
@media only screen and (max-width:600px){
	main .media-page .media-image-set{
		display: block;
	}
	main .media-page .media-image-set1{
		margin-right: 0;
		margin-bottom: 30px;
	}
	main .media-page .media-image-set1 .media-image-1,
	main .media-page .media-image-set2 .media-image-2{
		margin: 0 auto;
	}	
}	
/*-------------------*/
/*	 投稿 PAGE 共通   */
/*-------------------*/
main .single-page{
	background-color: #edecf3;
	padding-bottom: 80px;
}
main .single-page h2{
	padding-top: 120px;
	font-size: 25px;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	color: #232B6B;
}
main .single-page .single-column p{
	font-size: 18px;
	margin: 20px auto 0;
	width: 80%;
	font-family: "Noto Sans JP", sans-serif;
}

/*-------------------*/
/*	 CATALOG PAGE    */
/*-------------------*/
main .catalog-page{
	background-color: #edecf3;
	padding-bottom: 50px;
}
main .catalog-page h2{
	padding-top: 120px;
	font-size: 50px;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	color: #232B6B;
}

main .catalog-page h3{
	font-size: 24px;
	font-weight: 400;
	margin-top: 50px;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
}

main .catalog-page .catalog-set{
	width: 80%;
	margin: 40px auto;
}

main .catalog-page .catalog-image{
	width: 40%;
	margin: 10px auto 0;
}
main .catalog-page .catalog-image ._df_thumb{
	width: 100%;
}

main .catalog-page .catalog-image img{
	width: 100%;
}	
/*-----レスポンシブ-----*/
@media only screen and (max-width:700px){
	main .catalog-page h2{
		padding-top: 80px;
		font-size: 30px;
	}
	main .catalog-page h3{
		font-size: 22px;
	}
	main .catalog-page .catalog-image{
		width: 60%;
	}	
}

/*-------------------*/
/*	   QUIZ PAGE     */
/*-------------------*/
main .quiz-page{
	background-color: #edecf3;
	padding-bottom: 80px;
}
main .quiz-page h2{
	padding-top: 120px;
	font-size: 50px;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	color: #6ca5e9;
}
main .quiz-page .quiz-containaer{
	width: 70%;
	margin: 50px auto 0;
	text-align: center;
}
main .quiz-page .quiz-containaer .quiz-rogo{
	max-width: 320px;
	margin: 0 auto;
}
main .quiz-page .quiz-containaer .quiz-rogo img{
	margin-top: 50px;
	margin-bottom: 40px;
	width: 100%;
}

main .quiz-page .quiz-containaer .quiz-text p{
	font-size: 22px;
	font-weight: 400;
	margin: 15px;
	font-family: "Noto Sans JP", sans-serif;
}
main .quiz-page .quiz-containaer .quiz-text  p span{
	font-size: 65px;
	font-weight: 500;
	color: #6ca5e9;
}

/*-----レスポンシブ-----*/
@media only screen and (max-width:700px){
	main .quiz-page h2{
		padding-top: 80px;
		margin: 0 auto;
		font-size: 30px;
		width: 90%;
	}
	main .quiz-page .quiz-containaer{
		margin: 30px auto 0;
	}
	main .quiz-page .quiz-containaer .quiz-text p{
		font-size: 18px;
		font-weight: 400;
		margin: 15px;
	}
	main .quiz-page .quiz-containaer .quiz-text  p span{
		font-size: 35px;
		font-weight: 500;
		color: #6ca5e9;
	}
}
/*-------------------*/
/*	 CONTACT PAGE    */
/*-------------------*/
main .contact-page{
	background-color: #edecf3;
	padding-bottom: 80px;
}
main .contact-page h2{
	padding-top: 120px;
	font-size: 50px;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	color: #232B6B;
}
main .contact-page .form-countainaer{
	width: 80%;
	margin: 0 auto;
}
main .contact-page h3{
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	margin-top: 50px;
	font-family: "Noto Sans JP", sans-serif;
	color: #232B6B;
}
main .contact-page .form-countainaer p{
	font-size: 20px;
	font-weight: 400;
	margin-top: 20px;
	margin-bottom: 20px;
}
@media only screen and (max-width:700px){
	main .contact-page .form-countainaer p{
		font-size: 16px;
	}	
}	



/* フォーム全体のスタイル */
main .contact-page .form-countainaer .contact-form-7{
	width: 90%;
	margin: 30px auto 50px;
	background-color: rgba(255, 255, 255, 0.6);
	border: solid 2px #333333;/* ダークグレー */
	padding: 30px;
	border-radius: 5px;
	max-width: 640px;
	margin: auto;
}
/* ラベルのスタイル */
.wpcf7-form label {
	display: block;
	margin-bottom: 15px;
	font-size: 18px;
	color: #1c1c1c; /* ダークグレー */
}
/* 必須フィールドのラベルスタイル */
.wpcf7-form .required {
	background-color: #7b7b7b; /* グレー */
	color: white;
	padding: 1px 3px;
	border-radius: 3px;
	margin-left: 10px;
	font-size: 15px;
}
/* インプットフィールドのスタイル */
.wpcf7-form textarea {
	width: 95%;
	padding: 15px;
	border: 1px solid #484848; /* ダークグレー */	
	border-radius: 5px;
	margin-top: 3px;
	font-size: 16px;
	background-color: #ffffff; /* 白 */
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"]  {
	width: 100%;
	font-size: 100%;
/*	max-width: 400px;*/
	height: 30px;
	margin-left: 0 !important;
	padding-left: 5px !important;
	box-sizing: border-box;
	border: 1px solid #7b7b7b; /* グレー */	
}

/* セレクトのスタイル */
.wpcf7-form .wpcf7-select{
	width: 200px;
	height: 25px;
	font-size: 16px;
	border: 1px solid #7b7b7b; /* グレー */	
}
/* テキストエリアのスタイル */
.wpcf7-form textarea {
	height: 150px;
	resize: vertical;
}
/* 送信ボタンのスタイル */
.wpcf7-form input[type="submit"] {
	display: block;
	background-color: #232B6B;/* 濃いブルー */
	color: white;
	cursor: pointer;
	transition: background-color 0.3s ease;
	width: 60%;
	padding: 10px 5px;
	border-radius: 5px;
	margin: 0 auto;
	font-size: 18px;
}
.wpcf7-form input[type="submit"]:hover {
	background-color: #636fcb; /* ブルー */
}
/* エラーメッセージと成功メッセージのスタイル */
.wpcf7-form .wpcf7-not-valid-tip {
	color: red;
	font-size: 14px;
}
.wpcf7-form .wpcf7-mail-sent-ok {
	color: green;
	font-size: 16px;
	margin-bottom: 20px;
}


main .contact-page .FAQ-countainaer{
	max-width: 800px;
	margin: 0 auto;
}
main .contact-page .FAQ-countainaer .FAQ-set .FAQ-Q{
	margin: 30px auto 0;
	border-bottom: solid 1px black;
	font-size: 18px;
}
main .contact-page .FAQ-countainaer .FAQ-set .FAQ-A{
	font-size: 18px;
	margin: 10px 0 50px;
}
main .contact-page .FAQ-countainaer p span{
	font-size: 35px;
	font-weight: 500;
	color: #232B6B;
	margin-right: 10px;
}

/*-----レスポンシブ-----*/
@media only screen and (max-width:800px){
	main .contact-page h2{
		padding-top: 80px;
		font-size: 30px;
	}	
	main .contact-page h3{
		font-size: 20px;
		margin-top: 20px;
	}
	main .contact-page .form-countainaer{
		width: 90%;
	}	
	main .contact-page .form-countainaer .contact-form-7{
		width: 100%;
	}
	.wpcf7-form textarea {
		padding: 5px;
	}
	main .contact-page .FAQ-countainaer{
		width: 90%;
	}
	main .contact-page .FAQ-countainaer .FAQ-set .FAQ-Q{
		margin: 10px auto 0;
		font-size: 16px;
	}
	main .contact-page .FAQ-countainaer .FAQ-set .FAQ-A{
		font-size: 16px;
		margin: 10px 0 50px 15px;
	}
	main .contact-page .FAQ-countainaer p span{
		font-size: 24px;
		margin-right: 10px;
	}
}

/*----------*/
/* 固定ボタン */
/*----------*/
#button{
	background-color: gray;
	width: 90px;
	padding: 20px 15px 15px;
	position: fixed;
	bottom: 5px;
	right: 80px;
	border-radius: 10px;
	font-family: "Noto Sans JP", sans-serif;
}
#button a{
	text-decoration: none;
	font-weight: bold;
	color: white;
}
#button .button-mark{
	display: block;
    width: 35px;
    height: 35px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(-45deg); /* -45度回転させて上矢印に */
	margin: 0 auto;
}
#button a span{
	position: absolute;
	bottom: 14px;
	left: 30px;
}


/*-----レスポンシブ-----*/
@media only screen and (max-width:780px){
	#button{
		position: fixed;
		bottom: 5px;
		right: 5px;
	}
}


/*-------------------*/
/*	 	FOOTER  	 */
/*-------------------*/
/*フッター*/
footer{
		background-color: #232B6B;
}
footer div#footer-block{
	color: white;
	font-family: "Noto Sans JP", sans-serif;
}
footer .footer-containaer{
	width: 80%;
	margin: 0 auto;
	padding: 50px 0 0;
	display: flex;
	justify-content: space-between;
}
footer .footer-containaer .footer-company-info-containaer{
	width: 50%;
	margin-right: 50px;
}

footer div#footer-block img{
	width: 140px;
}

footer .footer-contents{
	margin-top: 15px;
	width: 30%;
}	

footer div#footer-block .footer-company-info-1{
	margin-top: 80px;
	margin-bottom: 10px;
}
footer div#footer-block .footer-company-info-2{
	margin-top: 20px;
	margin-bottom: 30px;
}

footer div#footer-block h3{
	margin-bottom: 10px;
	font-weight: 500;
}
footer div#footer-block p{
	font-size: 14px;
}

footer div#footer-block h4{
	font-family: "Verdana", sans-serif;
	font-size: 18px;
	font-weight: 600;
}	

footer div#footer-block .footer-nav_list{
	column-count: 2;         /* ここで列数を指定 */
    column-gap: 5px;        /* 列の間のスペース */
    padding: 0;
    margin-top: 15px;
	width: 450px;
}
footer div#footer-block .footer-nav_list li{
	margin-bottom: 10px;
}
footer div#footer-block a{
	color: white;
}
footer div#footer-block .footer-contact{
	margin-top: 10px;
	width: 250px;

}

footer div#footer-block .footer-contact .footer-mail{
	border: solid 2px white;
	text-align:center;
	align-content: center;
	margin: 30px 0 15px;
	color: black;
	background-color: white;
	border-radius: 3px;
}
footer div#footer-block .footer-contact .footer-mail:hover{
	opacity: 0.8;
}
footer div#footer-block .footer-contact .footer-mail a{
	display: block;
	padding: 10px 30px;	
}	
footer div#footer-block .footer-contact .footer-mail img{
	padding: 5px;
	width: 35px;
}	
footer div#footer-block .footer-contact .footer-mail span{
	color: black;
	font-family: "Noto Sans JP", sans-serif;	
	font-size: 16px;
	font-weight: 500;
}
footer .copyright{
	text-align: center;
	color: white;
	border-top: 1px solid white;
	padding-bottom: 10px;
	font-family: "Montserrat", sans-serif;	
}
footer div#footer-block .footer-containaer .footer-company-info-2{
		display: none;
}

/*-----レスポンシブ-----*/
@media only screen and (max-width:1100px){
	footer .footer-containaer{
		width: 80%;
		display: block;
	}	

	footer .footer-containaer .footer-company-info-containaer{
		width: 100%;
		margin-right: 50px;
	}	
	footer div#footer-block img{
		width: 160px;
	}	
	footer div#footer-block .footer-containaer .footer-company-info-1{
		display: none;
	}
	footer .footer-contents{
		margin: 40px auto;
		width: 100%
	}
	footer div#footer-block .footer-nav_list{
	column-count: 1;         /* ここで列数を指定 */
    column-gap: 20px;        /* 列の間のスペース */
    margin-top: 10px;
	width: 100%;
	}
	footer div#footer-block .footer-nav_list li{
	border-top: solid 1px white;
	border-bottom: solid 1px white;	
    padding: 15px;	
	}	
	footer div#footer-block .containaer-2{
		margin-top: 0;
	}
	footer div#footer-block .footer-containaer .footer-company-info-2{
		display: block;
	}
	footer div#footer-block .footer-contact{
		display: block;
		width: 100%;
		margin: 10px auto;
	}
}	

