@charset "UTF-8";

/* Reset style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  text-align: center;
  font-size: 100%;
	line-height: 1.7;
	letter-spacing: 0.05em;
}

/* 調整用スタイル */

html {
	scroll-behavior: smooth;
}

body {
	padding-top: 50px;
}

a {
  text-decoration: none;
	color: #333;
	letter-spacing: 0.15rem;
}

ul,
li {
  list-style: none;
	font-family: 'Noto Serif JP', serif;
}

h2,h3,h4 {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.2rem;
	letter-spacing: 0.2em;
	color: #1C2C5C;
}

#over {
	width: 100%;
}

.pc-br {
	display: none;
}

/*head-title
--------------------------------------*/
.heading {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size:clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);/*320pxの時18px,1200pxの時22px*/
	
}

.heading::before,
.heading::after {
	content: '';
	width: 50px;
	height: 1px;
	background-color: #1C2C5C;
}

.heading::before {
	margin-right: 12px;
}

.heading::after {
	margin-left: 12px;
}

p {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.9;
	letter-spacing: 0.1em;
	font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);/*320pxの時12px,1200pxの時16px*/
}

img {
max-width: 100%;
height: auto;
width /***/:auto;
}


.footer {
  background-color: #1C2C5C;
  height: auto;
  display: flex;
}

.footer div {
  margin: auto;
}

footer p {
	color: #fff;
}
/* ヘッダー */
.header {
  background-color:#fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 20px; /*左右の余白確保*/
  display: flex; /*ロゴとハンバーガーメニューを横に並べる*/
  align-items: center;
  justify-content: space-between;
  height: inherit; /*親要素の高さを継承*/
  position: relative;
}

/* ヘッダーのロゴ部分 */
.header__title {
  width: 100px;
	margin: 5px;
}


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

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%); 
  background-color: #689CB2; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}

.top-sns {
	display: none;
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 45px;
  height: 100%;
}

.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
  cursor: pointer;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #333;
  position: relative;
  transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}


.hamburger span:nth-child(3) {
  top: 0;
}

/*ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

.nav-items {
  padding-top: 100px;
}

/* ナビのリンク */
.nav-items__item a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
	padding: 1rem;
}

.nav-items__item a:hover {
	background: #1C2C5C;
	opacity: 0.8;
	color: #dedede;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}

.nav-items__item a.active2 {
	color: #fff;
	background: #1C2C5C;
}

/*ページ共通トップテキスト
--------------------------------------*/
.top-Titletext {
	margin: 30px auto;
}
.top-Titletext p {
	font-family: 'Noto Serif JP', serif;
	font-size:clamp(0.875rem, 0.83rem + 0.23vw, 1rem);/*320pxの時14px,1200pxの時16px*/
	letter-spacing: 0.2em;
	margin: 10px auto;
	width: 90%;
}


/*topページ黄色ボタン*/

.detail-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 60px;
    max-width: 250px;
    margin: 0 auto;
    background: #F5E6B4;
    color: #624845;
}

.detail-btn::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top:  1px solid #624845;
    border-right: 1px solid #624845;
    transform: rotate(45deg);
    transition: inherit;
}

.detail-btn:hover {
    background-color: #689CB2;
    opacity: 0.8;
    color: #fff;
}

.detail-btn:hover::after {
    border-top-color: #fff;
    border-right-color: #fff;
}

/*詳細block*/
/*パターン1*/

/*詳細block*/

.flexBox {
	margin: 50px auto 0 ;
	width: 95%;
}

.textBox {
	padding: 40px 30px;
	border: 1px solid #DCDCDC;
}

.text-title {
	font-family: 'Noto Serif JP', serif;
	font-size:clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);/*320pxの時18px,1200pxの時22px*/
	letter-spacing: 0.2em;
	color: #1C2C5C;
	border-bottom: 4px solid #689CB2;
}
.text-title span {
	font-size: 30px;
}

.text {
	margin: 20px 0;
}

/*パターン2*/

.flexBox2 {
	margin: 40px auto 60px auto;
}

.text_box2 {
	margin: 20px auto;
}

.text-title2 {
	font-family: 'Noto Serif JP', serif;
	font-size:clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);/*320pxの時18px,1200pxの時22px*/
	letter-spacing: 0.2em;
	color: #1C2C5C;
	border-bottom: 4px solid #F5E6B4;
}

.text2 {
	margin-top: 20px;
	padding: 0 5%;
	text-align: justify;
}

/*パターン3・contents*/

.flexwrap2 {
	margin: 60px auto;
	width: 90%;
}

.flexwrap3 {
	margin: 40px auto;
	width: 90%;
}

.text-title3 {
	font-family: 'Noto Serif JP', serif;
	font-size:clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);/*320pxの時18px,1200pxの時22px*/
	letter-spacing: 0.2em;
	color: #1C2C5C;
	border-bottom: 4px solid #689CB2;/*浅葱色*/
}

.textBox3 {
	margin: 30px auto 60px auto;
	padding: 0 10%;
	width: 95%;	
}
/*contents*/
.ps {
	font-family: 'Noto Serif JP', serif;
	font-size:clamp(1rem, 0.955rem + 0.23vw, 1.125rem);/*320pxの時16px,1200pxの時18px*/
	text-align: justify;
	margin: 5% auto 0;
}
/*Introduction*/

.flexwrap {
	margin: 50px auto 30px auto;
	width: 90%;
}

.background-color {
	background-color: rgba(104,156,178,0.5);
	padding-top: 20px;
	padding-bottom: 60px;
}


/*FAQページ
--------------------------------------*/

.top-text {
	width: 90%;
	margin: 30px auto;
}




/*contact
--------------------------------------*/

.contact_title {
	background: #1C2C5C;
	margin-top: 0 auto;
	
}
.contact_title h2 {
	display: block;
	padding: 1em;
	color: #fff;
}

.contact_area {
	margin: 40px auto;
}

.line-contact,.mail-contact {
	margin: 30px auto;
}

.line-contact p ,.mail-contact p {
	margin: 10px auto;
}
.y-btn {
	display: block;
	padding: 1rem;
	width: 250px;
	margin: 0 auto;
	background: #F5E6B4;
}

.y-btn:hover {
	background-color: #689CB2;
	opacity: 0.8;
	color: #fff;
}
/*footer_nav
--------------------------------------*/

.footer_nav a {
	display: block;
	padding: 0.8em;
	background-color: #689CB2;
	color: #fff;
}
.footer_nav a:hover {
	background-color: #1C2C5C;
	color: #dedede;
}
.f_navitem {
	font-size: 10px;
	border-bottom: 1px solid #dedede;	
}


/*SNSの紹介
--------------------------------------*/
.sns-text {
	font-size: 1.2em;
	display: flex;
	justify-content: center;
	align-items: center;
	
}

.sns-text::before,
.sns-text::after {
	content: '';
	width: 1px;
	height: 30px;
	background-color: #333;
}

.sns-text::before {
	margin-right: 30px;
	transform: rotate(-35deg);
}

.sns-text::after {
	margin-left: 30px;
	transform: rotate(35deg);
}

.newInfo-sns {
	color: #1C2C5C;
	font-size: 2rem;
	margin: 20px 10px 20px 10px;
}

/*footer
--------------------------------------*/
.pageTop {
	display: block;
	text-align: right;
	margin: 50px 20px 0;
	color: #1C2C5C;
}	

.f-logo {
	width: 25%;
	margin: 30px auto;
}


.sponser{
	display: flex;
	align-items: center;/*flexbox内の縦の中央揃え*/
	justify-content: center;/*flexbox内の横の中央揃え*/
}

.sponser a {
	display: inline-block;
}

.logo{
	width: 40px;
	margin: 20px 20px;
}

.s-logo{
	width: 50px;
	margin: 20px 20px;
}
.copyright {
	font-size: 10px;
}

.contact-sns {
    display: flex;
    justify-content: center;
	color: #fff;
	font-size: 1.5rem;
	margin: 8px 5px;
}

.footer-sns {
	color: #fff;
	font-size: 1.5rem;
	margin: 0 10px 20px 10px;
}


.contact-sns a:hover {
   color: rgba(255,255,255,.5);
}


/*ipad版*/
@media screen and (min-width: 420px) {
/*
.container {
	min-width: 600px;/*600px以上大きくならない*/
/*margin: 0 auto;
}*/
/*	
.main img{
	min-width: 600px;	
	}
*/

.heading {
	margin-top: 50px;	
	}
.titleBox {
	margin: 20px auto;	
}

	
.flexBox {
	width: 85%;
}	

		
.textBox {
	width: 80%;
	margin: 20px auto;
}


.flexBox2 {
	width: 80%;
}	

		
.textBox2 {
	width: 80%;
	margin: 0 auto;
	}

.pc-br {
	display: block;
}

.sp-br2 {
	display: none;
}
/*pc版
---------------*/

@media screen and (min-width: 900px) {
	
body {
	margin: 0 auto;
	max-width: 1200px;	
}
	
.titleBox {
	padding: 50px auto;	
}

.sp-topImg {
	margin-top: 8%;
}

p {
	line-height: 1.7;
}

.sp-br {
		display: none;/*.top-Titletextのbr*/
	}
	
.container {
	margin-top: 100px;
	
}

footer {
	max-width: 1200px;
	}

.footer_nav {
		display: none;
	}
/*	body header {
		min-width: 1000px;
	}*/

	/* ヘッダーのロゴ部分 */


	.header__title {
    width: 200px;
  }

.container {
	width: 80%;
	margin: 0 auto;
}

.sp-item {
	display: none;
}	
.top-sns {
	display: flex;
	justify-content: flex-end;
		
}
	
.top-mini-sns {
	color: #1C2C5C;
	margin: 0 5px;
}	
	
.t-sns {
	width: 20px;
	margin: 10px;
}
	
.header__inner {
	max-width: 80%;
	margin: 0 auto;
}
	
/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease .4s;
}

.header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 90%;
  }
/*PC時のナビゲーションメニュー、横並びにする*/	
.nav__items {
    display: flex;
    align-items: center;
    height: initial;
    justify-content: flex-end;
  }

/*	
.nav-items {
  padding-top: 250px;
  padding-bottom: 200px;
}*/
	
.nav-items {
   padding-top: inherit;
   padding-bottom: inherit;
  }
	
/* ナビのリンク */
.nav-items__item a {
  color: #1C2C5C;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 10px;
margin: 0 25px;
}
	
.nav-items__item a {
   margin-bottom: 0;
   font-size: clamp(0.5rem, -0.25rem + 1.33vw, 0.75rem);
  }
	
/*ハンバーガーメニュー*/
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

 /*PC時非表示にする*/
.hamburger {
    display: none;
  }
	
.nav-items__item:before {
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: orange;
    opacity: 0;
  }
	
.nav-items__item:before {
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: orange;
    opacity: 0;
  }

.nav-items__item:hover:before {
    opacity: 1;　/* 追記 */
	}
	
/*記事BOX*/
.flexBox {
		display: flex;
		width: 90%;
}

.flexBox:nth-child(even) {
	flex-direction:  row-reverse;
	}

.flexBox img {
	width: 50%;
	margin: 0 auto;
	object-fit: contain;
}
	
.textBox {
		width: 45%;
}

.text_box {
		margin: 0 auto;
}

.textBox p {
	flex-grow: 1;
	margin-bottom: 50px;
}

/*パターン2*/	
.flexBox2 {
	display: flex;
	width: 90%;
}

.flexBox2 img {
	width: 50%;
	margin: 0 auto;
	object-fit: cover;
}
	
.textBox2 {
	width: 45%;
}

.text_box2 {
	margin: 20% auto;
}
	
/*パターン3・contents*/
.flexwrap2 {
		display: flex;
		width: 90%;
		margin: 10px auto;
}

.flexwrap3 {
		margin: 10px auto;
		display: flex;
		flex-direction: row-reverse;
}
	
.flexwrap2 img {
		width: 50%;
		object-fit: contain;
	}
.flexwrap3 img {
		width: 50%;
		margin-left: 5%;
		object-fit: contain;
	}		

.text_box3 {
		padding: 0 5%;
	}
/*introdunction*/
.flexwrap {
		display: flex;
		width: 90%;
}

.flexwrap img {
		width: 50%;
	}
	
.introduction img {
	object-fit: cover;
}
	

