@charset "UTF-8";
/* CSS Document */
@import 'util-style.css';
/*
COLORS
================================================ */
:root {
	--dark-green: #009e96;
    --green: #53b3aa; 
	--light-green: #a2d7d4;
    --blue: #148acc;
	--light-blue: #a1d8e6;
    --pink: #e50063;
    --yellow: #fff799;
	--dark-gray: #696d7e;
	--gray: #8f939f;
    --light-gray: #efefef;
    --white: #fff;
	--black: #333;
}
/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    line-height: 1.6;
    color: var(--black);
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
p {
	margin-bottom: 30px;
}
p a {
	text-decoration: none;
	color: var(--blue); 
}
p a:hover {
	color: var(--pink); 
}
ul li {
	list-style-type: none;
}
li a {
	text-decoration: none;
}

/* 共通レイアウト */
.page {
	background-image:  url(../images/header-bg.jpg), url(../images/footer-bg.jpg);
	background-size: 200%, 150%;
	background-position: center top, center bottom;
	background-repeat: no-repeat, no-repeat;
}
.wrapper {
    max-width: 1120px;
    margin: auto;
    padding: 0 1.5rem;
}

/*
レイアウト
================================================ */
/* トップページ・ヘッダー
------------------------------- */
.home-ttl {
    padding: 5rem 0 2rem;
}

.logo {
    width: 600px;
}

/* コンテンツページ・ヘッダー
------------------------------- */
.cts-ttl {
    padding: 3rem 0 1rem;
}

.logo-s {
    width: 300px;
}

/* ナビゲーションメニュー
------------------------------- */
.main-nav {
    display: block;
    font-size: 1.2rem;
	font-weight: 500;
	margin-top: 1rem;
	text-align: center;
}
.main-nav li {
	margin-bottom: 10px;
}
.main-nav a {
    color: var(--dark-gray);
}
.main-nav a:hover {
    color: var(--dark-green);
}

/* コンテンツエリア
------------------------------- */
main {
    max-width: 900px;
    width: 94%;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: var(--white);
	opacity: 0.7;
    box-shadow: 0 0 6px rgba(0,0,0,.2);
}
main h2 {
	font-size: 2.3rem;
	font-weight: 500;
	color: var(--dark-green);
	text-align: center;
	margin-bottom: 30px;
}
main h4, .box-green li {
	margin-bottom: 10px;
}
main h4::before, .box-green li::before {
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
	margin-right: 5px;
    border-radius: 50%;
  background-color: var(--light-green);
}

/* フッター
================================================ */
.page-footer {
    padding: 5rem 0 3rem;
}
.footer-logo {
	width: 250px;
}
.copyright {
    text-align: center top;
    margin-top: 2rem;
}

/*
トップページ
================================================ */
.content {
	padding: 3rem 0;
}
.list1 li {
  position: relative;
  padding-left: 15px;
	font-weight: 500;
	font-size: 1.1rem;
	line-height: 2;
}
.list1 li::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--light-green);
  border-radius: 5px;
}
.menu1 ul {
	display: inline-block;
	margin: 20px auto;
}
.menu1 ul li {
	margin-bottom: 20px;
}
/*お知らせ*/
.box-green {
    position: relative;
    padding: 2em 2em 1.5em;
    border: 2px solid var(--green);
	border-radius: 25px;
	width: 90%;
	margin: 5rem auto 2rem;
}
.box-green > h4 {
    position: absolute;
    top: -1.15em;
    left: 1.2em;
    padding: .3em 1.4em;
    border-radius: 25px;
    background-color: var(--green);
    color:var(--white);
    font-size: 1.2em;
	letter-spacing: 0.1em;
	font-weight: 400;
}
.box-green > h4::before {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background-color: var(--green);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

/*
コンテンツページ
================================================ */
/*講座日程*/
.chapter {
	margin-bottom: 40px;
}
.chapter li {
	font-weight: 600;
	margin: 0 0 7px 20px;
	text-indent: 10px;
}
/*Googleカレンダー埋め込み*/
.google-cal iframe {
	width:100%;
	max-width:800px;
	height:400px;
	margin-bottom: 50px;
}
/*フォーム*/
.webform iframe {
	width: 100%;
}

/* デスクトップサイズ
================================================ */
@media (min-width: 640px) {
/*トップページ*/	
.content {
	width: 450px;
	margin: 0 auto;
}
/*ナビゲーションメニュー*/
.main-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
	margin: 1rem 0 0;
}
	
}
@media (min-width: 840px) {
/*共通レイアウト*/
.page {
	background-size: 100%, 100%;
}
.page-footer {
    padding: 3rem 0;
}
/*トップページ*/	
.menu1 ul {
	display: flex;
	justify-content: center;
    gap: 2.5rem;
	font-size: 1.1rem;
}
/*お知らせ*/
.box-green {
	width: 55%;
}

/*コンテンツエリア*/
main {
	padding: 3rem 5rem;
}

/*Googleカレンダー*/
.google-cal iframe {
	height:600px;
}
	
}