@charset "UTF-8";
/* text color */
/*! sanitize.css | CC0 Public Domain | github.com/jonathantneal/sanitize.css */
/* Normalization */
:root { -ms-overflow-style: -ms-autohiding-scrollbar; overflow-y: scroll; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

audio:not([controls]) { display: none; }

details { display: block; }

input[type="number"] { width: auto; }

input[type="search"] { -webkit-appearance: textfield; }

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }

main { display: block; }

summary { display: block; }

pre { overflow: auto; }

progress { display: inline-block; }

small { font-size: 75%; }

template { display: none; }

textarea { overflow: auto; }

[hidden] { display: none; }

[unselectable] { -webkit-user-select: none; -ms-user-select: none; user-select: none; }

/* Universal inheritance */
*, ::before, ::after { box-sizing: inherit; }

* { font-size: inherit; line-height: inherit; }

::before, ::after { text-decoration: inherit; vertical-align: inherit; }

/* Opinionated defaults */
*, ::before, ::after { border-style: solid; border-width: 0; }

* { margin: 0; padding: 0; }

:root { box-sizing: border-box; cursor: default; font: 16px / 1.5 sans-serif; text-rendering: optimizeLegibility; }

html { background-color: #FFFFFF; }

a { text-decoration: none; }

audio, canvas, iframe, img, svg, video { vertical-align: middle; }

button, input, select, textarea { background-color: transparent; }

button, input, select, textarea { color: inherit; font-family: inherit; font-style: inherit; font-weight: inherit; }

button, [type="button"], [type="date"], [type="datetime"], [type="datetime-local"], [type="email"], [type="month"], [type="number"], [type="password"], [type="reset"], [type="search"], [type="submit"], [type="tel"], [type="text"], [type="time"], [type="url"], [type="week"], select, textarea { min-height: 1.5em; }

code, kbd, pre, samp { font-family: monospace, monospace; }

nav ol, nav ul { list-style: none; }

select { -moz-appearance: none; -webkit-appearance: none; }

select::-ms-expand { display: none; }

select::-ms-value { color: currentColor; }

table { border-collapse: collapse; border-spacing: 0; }

textarea { resize: vertical; }

::selection { background-color: #B3D4FC; text-shadow: none; }

@media screen { [hidden~="screen"] { display: inherit; }
  [hidden~="screen"]:not(:active):not(:focus):not(:target) { clip: rect(0 0 0 0) !important; position: absolute !important; } }

/*
#styleguide
基本スタイル

```
<p>特に何も指定しないときの状態</p>
```
*/
body { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-smoothing: antialiased; text-rendering: auto; font-size: 14px; font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; color: #333; background-color: #fff; }

/* = = = = = = = = = = =
共通
= = = = = = = = = = = */
.layout { padding-right: 5%; padding-left: 5%; }

@media screen and (min-width: 768px) { .layout { max-width: 1130px; margin: 0 auto; padding-right: 0; padding-left: 0; } }

/* = = = = = = = = = = =
ヘッダー
= = = = = = = = = = = */
.header { position: relative; z-index: 10000; }

.header__logo__insignia { position: absolute; }

.header__logo__insignia img { width: 70px; }

@media screen and (min-width: 768px) { .header__logo__insignia { top: 0; right: 0; }
  .header__logo__insignia img { width: 195px; } }

.header__logo__rotary { position: absolute; left: 105px; top: 13px; }

.header__logo__rotary img { width: 170px; }

@media screen and (min-width: 768px) { .header__logo__rotary { left: 100px; top: 24px; }
  .header__logo__rotary img { width: 30vw; } }

.header__logo__seinan { position: absolute; left: 100px; top: 42px; }

.header__logo__seinan img { width: 230px; }

@media screen and (min-width: 768px) { .header__logo__seinan { top: 24px; left: 40vw; }
  .header__logo__seinan img { width: 40vw; } }

/* = = = = = = = = = = =
グローバルナビ
= = = = = = = = = = = */
.gloval-nav.pc { margin-top: 120px; min-width: 980px; width: 80%; margin-left: 100px; }

.gloval-nav.pc .header__nav__list { list-style-type: none; width: 100%; height: 40px; padding: 0; display: flex; flex-wrap: nowrap; justify-content: space-between; }

.gloval-nav.pc .header__nav__list li { position: relative; float: left; margin: 0; margin-right: 35px; padding: 0; text-align: center; }

.gloval-nav.pc .header__nav__list li a { display: block; margin: 0; padding: 13px 0; color: #442d61; font-size: 18px; font-weight: bold; line-height: 1; text-decoration: none; }

.gloval-nav.pc .header__nav__list li ul { list-style: none; position: absolute; top: 100%; left: 0; margin: 0; padding: 0; }

.gloval-nav.pc .header__nav__list li ul li { overflow: hidden; width: 200%; height: 0; color: #fff; transition: .2s; }

.gloval-nav.pc .header__nav__list li ul li a { padding: 13px 15px; color: #fff; background: #442d61; text-align: left; font-size: 12px; }

.gloval-nav.pc .header__nav__list li:last-child ul { left: -100%; width: 100%; }

.gloval-nav.pc .header__nav__list li:hover > a { color: #e0dc62; }

.gloval-nav.pc .header__nav__list li:hover ul li { overflow: visible; height: 38px; border-bottom: 1px solid #fff; }

.gloval-nav.pc .header__nav__list li:hover ul li:first-child { border-top: 0; }

.gloval-nav.pc .header__nav__list li:hover ul li:last-child { border-top: 0; }

/* = = = = = = = = = = =
フッター
= = = = = = = = = = = */
.footer { background-color: #442d61; padding-top: 30px; padding-bottom: 10px; margin-top: 56px; font-weight: bold; }

.footer a { color: #fff; }

.footer-info__table { display: flex; flex-wrap: wrap; color: #fff; font-size: 0.8rem; }

@media screen and (min-width: 768px) { .footer-info__table { width: 40%; } }

.footer-info__item { width: 20%; margin-bottom: 10px; }

.footer-info__explain { width: 80%; margin-bottom: 10px; }

.footer__btn-area { text-align: center; margin-top: 20px; margin-bottom: 30px; }

@media screen and (min-width: 768px) { .footer__btn-area { text-align: right; width: 60%; } }

.footer__copyright-area { color: #fff; font-size: 0.6rem; text-align: center; }

@media screen and (min-width: 768px) { .footer__flex__wrapper { display: flex; flex-wrap: nowrap; } }

/* = = = = = = = = = = =
トップページ
= = = = = = = = = = = */
@media screen and (min-width: 768px) { .pc-flex-wrapper { display: flex; max-width: 1130px; overflow: hidden; margin: 0 auto; } }

.pc-wrapper-left { padding-left: 5%; padding-right: 5%; }

@media screen and (min-width: 768px) { .pc-wrapper-left { width: 70%; padding-left: 0; padding-right: 0; } }

@media screen and (min-width: 768px) { .pc-wrapper-right { width: 30%; } }

/* mv */
.top-mv { padding-top: 77.5px; margin-bottom: 30px; }

@media screen and (min-width: 768px) { .top-mv { padding-top: 10px; } }

.top-mv__inner { position: relative; background-image: url(../images/mv_sp.png); background-repeat: no-repeat; background-size: cover; background-position: center; height: 270px; }

@media screen and (min-width: 768px) { .top-mv__inner { background-image: url(../images/mv_top.png); background-repeat: no-repeat; background-size: cover; background-position: center; height: 585px; } }

.top-mv__comment__wrapper { position: absolute; width: 285px; top: 195px; right: 20px; }

@media screen and (min-width: 768px) { .top-mv__comment__wrapper { top: 470px; right: 80px; } }

.top-mv__comment { background-color: #fff; padding: 10px; text-align: center; }

@media screen and (min-width: 768px) { .top-mv__comment { width: 400px; float: right; } }

/* top-menu */
.top-menu { margin-bottom: 20px; display: inline-block; }

.top-menu__inner { background-color: #aca2b9; padding: 14px 8px; }

.top-menu__item { text-align: center; margin-bottom: 6px; }

.top-menu__item:last-child { margin-bottom: 0; }

.top-menu__item a { display: inline-block; padding-top: 5px; padding-bottom: 5px; width: 188px; color: #000; background-color: #fff; font-size: 12.5px; }

@media screen and (min-width: 768px) { .top-menu__item a { width: 296px; font-size: 1rem; } }

/* regular-meeting__area */
.regular-meeting__area { margin-bottom: 30px; }

@media screen and (min-width: 768px) { .regular-meeting__area { width: 738px; } }

/* top-area-rotary-thema */
.top-area-rotary-thema {
    margin: 0 auto 50px;
    text-align: center;
}

.top-area-rotary-thema-label {
  margin-top:20px;
  margin-bottom:20px;
  text-align: center;
}

.top-area-rotary-thema img { width: 60%; }
@media screen and (min-width: 768px) { 
    .top-area-rotary-thema img { width: 80% !important; }
}

/* top-area-facebook */
.top-area-facebook { margin-bottom: 50px; padding-right: 5%; padding-left: 5%; }

@media screen and (min-width: 768px) { .top-area-facebook { padding-right: 0; padding-left: 0; } }

.top-area-facebook__title { height: 50px; margin-bottom: 20px; }

.top-area-facebook__title img { height: 100%; }

.fb-container { width: 100%; max-width: 500px; }

/* top-area-images */
.top-area-images { width: 100%; margin-bottom: 50px; }

@media screen and (min-width: 768px) { .top-area-images { width: 740px; } }

/* top-area-announcement */
.top-area-announcement { padding-right: 5%; padding-left: 5%; }

@media screen and (min-width: 768px) { .top-area-announcement { max-width: 1130px; padding-left: 0; padding-right: 0; margin: 0 auto; } }

.top-area-announcement .switchbox { width: 100%; }

.switchbox label { background-color: #442d61; margin-bottom: 10px; padding: 2px 10px; color: #fff; }

@media screen and (min-width: 768px) { .switchbox label[for="label0"] { width: 380px; } }

@media screen and (min-width: 768px) { .switchbox label[for="label1"] { width: 440px; } }

@media screen and (min-width: 768px) { .switchbox label[for="label2"] { width: 260px; } }

@media screen and (min-width: 768px) { .switchbox input:checked + label + div { width: 100%; } }

/* = = = = = = = = = = =
共通
= = = = = = = = = = = */
.mv-lower { padding-top: 78px; margin-bottom: 30px; }

@media screen and (min-width: 768px) { .mv-lower { padding-top: 10px; } }

.mv-lower__inner { position: relative; background-image: url(../images/mv.png); background-repeat: no-repeat; background-size: cover; background-position: center; height: 138px; }

@media screen and (min-width: 768px) { .mv-lower__inner { height: 225px; } }

.lower-page__title { color: #442d61; font-size: 21px; text-align: center; margin-bottom: 46px; }

@media screen and (min-width: 768px) { .lower-page__title { font-size: 1.8rem; } }

.profile-box { display: flex; margin-bottom: 25px; }

@media screen and (min-width: 768px) { .profile-box { width: 50%; } }

.profile-box__img { width: 150px; padding: 0 20px 0 0; }

.profile-box__img img { width: 100%; }

@media screen and (min-width: 768px) { .profile-box__img { width: 200px; padding: 0 48px 0 0; } }

.profile-box__textbox { margin-top: 10px; }

.profile-box__textbox__heading { margin-bottom: 10px; }

.profile-box__textbox__main { font-size: 1.1rem; }

@media screen and (min-width: 768px) { .profile-box__textbox__main { font-size: 1.5rem; } }

.profile-box__textbox__name { margin-left: 20px; font-weight: bold; }

.pres_mesage-page__policy { text-align: center; margin-bottom: 50px; }

.pres_mesage-page__policy__heading { font-size: 10px; font-weight: bold; }

@media screen and (min-width: 768px) { .pres_mesage-page__policy__heading { font-size: 18px; } }

.pres_mesage-page__policy__main { font-size: 17px; font-weight: bold; }

@media screen and (min-width: 768px) { .pres_mesage-page__policy__main { font-size: 25px; margin-top: 20px; } }

.text-strong { font-weight: bold; }

.lower-page__sentence { margin-bottom: 30px; }

.lower-page__sentence__sec { margin-bottom: 30px; line-height: 1.8; }

.lower-page__sentence__sec ol { list-style-type: decimal; padding-left: 40px; }

/* = = = = = = = = = = =
国際ロータリー会長挨拶
= = = = = = = = = = = */
.ripres_mesage-page .profile-box { display: inline-block; }

.ripres_mesage-page .profile-box__textbox { margin-top: 20px; }

.ripres_mesage-page .profile-box__textbox__main { font-size: 1.0rem; }

.ripres_mesage-page .lower-page__sentence { border-top: 1px solid #000; padding-top: 20px; }

.ripre_mesage-page__policy__heading { margin-bottom: 17.5px; font-weight: bold; }

.ripre_mesage-page__policy__main { font-weight: bold; line-height: 1.6; margin-bottom: 15px; }

/* = = = = = = = = = = =
国際ロータリー第2750地区 ガバナー挨拶
= = = = = = = = = = = */
.distgov_mesage-page .profile-box { display: inline-block; }

.distgov_mesage-page .profile-box__textbox { margin-top: 20px; }

.distgov_mesage-page .profile-box__textbox__main { font-size: 12.5px; }

@media screen and (min-width: 768px) { .distgov_mesage-page .profile-box__textbox__main { font-size: 1rem; } }

.distgov_mesage-page .lower-page__sentence { border-top: 1px solid #000; padding-top: 20px; }

.distgov_mesage-page__policy__heading { font-size: 13.5px; margin-bottom: 15px; color: #442d61; font-weight: bold; }

@media screen and (min-width: 768px) { .distgov_mesage-page__policy__heading { font-size: 1rem; } }

.distgov_mesage-page__policy__main { margin-bottom: 15px; }

/* = = = = = = = = = = =
クラブ概要
= = = = = = = = = = = */
.club-info { margin-bottom: 30px; }

@media screen and (min-width: 768px) { .club-info { width: 70%; margin: 60px auto; } }

.club-info__table { display: flex; flex-wrap: wrap; color: #442d61; font-weight: bold; }

@media screen and (min-width: 768px) { .club-info__table { width: 840px; } }

.club-info__item { width: 130px; margin-bottom: 10px; }

@media screen and (min-width: 768px) { .club-info__item { width: 240px; font-weight: bold; } }

.club-info__explain { width: 55%; margin-bottom: 10px; }

@media screen and (min-width: 768px) { .club-info__explain { width: 600px; font-weight: bold; } }

.banner-box { display: flex; margin-bottom: 30px; }

.banner-box__img { width: 164px; padding: 0 20px 0 0; }

.banner-box__img img { width: 100%; }

@media screen and (min-width: 768px) { .banner-box__img { width: 220px; } }

.banner-box__textbox { width: 50%; }

@media screen and (min-width: 768px) { .banner-box__textbox { padding-left: 50px; width: 70%; } }

.banner-box__textbox__heading { color: #442d61; font-size: 1.2rem; font-weight: bold; margin-bottom: 10px; }

/* = = = = = = = = = = =
組織
= = = = = = = = = = = */
.lead-copy { margin-bottom: 30px; text-align: center; font-size: 15.6px; font-weight: bold; }

.lower-page__subtitle { color: #442d61; font-size: 1.4rem; text-align: center; margin-bottom: 20px; font-weight: bold; }

@media screen and (min-width: 768px) { .lower-page__subtitle { font-size: 1.6rem; } }

.org__lead-copy { color: #442d61; font-weight: bold; margin-bottom: 34px; }

.org__table { border-collapse: collapse; width: 100%; }

.org__table th, .org__table td { border: solid 1px #000; padding: 4px 10px; color: #442d61; }

.org__table th { font-weight: bold; }

.org__table td.org__table__name { padding-right: 20px; border-right: none; }

@media screen and (min-width: 768px) { .org__table td.org__table__name { border-right: none; padding-left: 30px; width: 480px; } }

.org__table td.org__table__role { border-left: none; }

@media screen and (min-width: 768px) { .org__table td.org__table__role { border-left: none; } }

@media screen and (min-width: 768px) { .org__table.board, .org__table.committee { width: 80%; margin-left: 10%; margin-right: 10%; display: flex; }
  .org__table.board tbody:first-child, .org__table.committee tbody:first-child { margin-right: 20px; } }

.org__table__right .org__table__header { display: none; }

@media screen and (min-width: 768px) { .org__table__right .org__table__header { display: table-row; } }

.club-page__sec { margin-bottom: 30px; }

.org__table__header { background-color: #aca2b9; }

@media screen and (min-width: 768px) { .schedule th { box-sizing: border-box; } }

.schedule tr th:nth-child(1), .schedule tr td:nth-child(1) { width: 53px; }

.schedule tr th:nth-child(2), .schedule tr td:nth-child(2) { width: 53px; }

.schedule tr th:nth-child(3), .schedule tr td:nth-child(3) { width: 60px; }

.schedule tr th:nth-child(4), .schedule tr td:nth-child(4) { width: 477px; }

.schedule tr th:nth-child(5), .schedule tr td:nth-child(5) { width: 270px; }

.schedule tr th:nth-child(6), .schedule tr td:nth-child(6) { width: 217px; }

.schedule td { font-weight: bold; }

/* = = = = = = = = = = =
例会案内
= = = = = = = = = = = */
.rmguide-page .lead-copy { font-size: 27px; }

.rmguide__text.small-text { font-size: 15px; }

/* = = = = = = = = = = =
卓話概要
= = = = = = = = = = = */
@media screen and (min-width: 768px) { .tablespeech-page__wrapper { display: flex; } }

.sidebar__area { width: 100%; display: flex; justify-content: space-between; }

@media screen and (min-width: 768px) { .sidebar__area { width: 348px; margin-right: 45px; } }

.sidebar__area__archive { width: 240px; margin-right: 5%; margin-bottom: 30px; background-color: rgba(67, 44, 96, 0.2); padding: 20px; }

@media screen and (min-width: 768px) { .sidebar__area__archive { width: 100%; } }

.sidebar__area__link { border: 1px solid #e8e8e8; width: 66px; height: 54px; text-align: center; padding-top: 10px; border-radius: 10px; }

.sidebar__area__link a { color: #000; }

.sidebar__area__title { color: #fff; background: #442d61; display: inline-block; padding: 5px 10px; margin-bottom: 20px; }

.sidebar__area__newentry { margin-bottom: 40px; }

.sidebar__area__newentry__sec { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #000; }

.sidebar__area__newentry__sec a { color: #000; }

@media screen and (min-width: 768px) { .sidebar__area__newentry__sec a { font-size: 16px; } }

.article__area { background-color: #e5e5e5; }

@media screen and (min-width: 768px) { .article__area { width: 65%; } }

.article__area__inner { padding: 20px; }

.article__area__date, .article__area__name, .article__area__title { margin-bottom: 30px; }

.article__area__main img { width: 100%; margin-bottom: 20px; }

@media screen and (min-width: 768px) { .article__area__main img { float: right; width: 250px; margin-left: 20px; } }

.article__area__main h4 { display: inline-block; border-bottom: 1px solid #000; margin-bottom: 20px; }

.article__area__main p { padding-bottom: 20px; }

.article__area__main p:before { display: inline-block; content: ""; padding: 25px 0px 0px 0px; }

.article__area__main p:after { display: inline-block; content: ""; padding: 0px 0px 25px 0px; }

/* = = = = = = = = = = =
クラブの活動
= = = = = = = = = = = */
.activity__lead-sec { margin-bottom: 50px; }

.activity__lead-sec__title { margin-bottom: 10px; }

.activity__lead-sec__title h3 { color: #442d61; font-weight: bold; font-size: 24px; }

.activity__sec { margin-bottom: 30px; }

@media screen and (min-width: 768px) { .activity__sec { display: flex; margin-bottom: 85px; } }

@media screen and (min-width: 768px) { .activity__sec__texbox { width: 580px; padding-right: 5%; } }

@media screen and (min-width: 768px) { .activity__sec__imgbox { width: 50%; } }

.activity__lead-sec.on-the-way { font-weight: bold; margin-bottom: 25px; }

@media screen and (min-width: 768px) { .activity-page .gray-line { margin-bottom: 146px; width: 794px; } }

.activity__sec__title { color: #fff; background: #442d61; display: inline-block; padding: 5px 10px; margin-bottom: 20px; }

.activity__sec__subtitle { display: block; margin-bottom: 20px; }

.activity__sec__subtitle .activity__sec__subtitle__inner { display: inline-block; border-bottom: 1px solid #000; }

.activity__sec__heading { margin-bottom: 10px; font-weight: bold; font-size: 16px; }

@media screen and (min-width: 768px) { .activity__sec__heading { font-size: 20px; } }

.activity__sec__maintext { margin-bottom: 10px; }

.activity__sec__imgbox { margin-bottom: 20px; display: flex; align-items: flex-start; max-width: 100%; overflow: hidden; }

.activity__sec__imgbox img { padding-bottom: 10px; }

@media screen and (min-width: 768px) { .activity__sec__imgbox { min-width: 540px; flex-wrap: nowrap; } }

@media screen and (min-width: 768px) { .img-flex-no17, .img-flex-no18 { flex-wrap: wrap; } }

.img-comment-1, .img-comment-2 { font-size: 10px; }

@media screen and (min-width: 768px) { .img-comment-1, .img-comment-2 { font-size: 1rem; } }

.img-flex-no1 img.img-01 { width: 166px; margin-right: 8px; }

.img-flex-no1 img.img-02 { width: 176px; }

@media screen and (min-width: 768px) { .img-flex-no1 img.img-01 { width: 257px; margin-right: 12px; }
  .img-flex-no1 img.img-02 { width: 272px; } }

.img-flex-no2 img.img-01 { width: 200px; }

@media screen and (min-width: 768px) { .img-flex-no2 img.img-01 { width: 303px; } }

.img-flex-no3 img.img-01 { width: 158px; margin-right: 8px; }

.img-flex-no3 img.img-02 { width: 184px; }

@media screen and (min-width: 768px) { .img-flex-no3 img.img-01 { width: 245px; margin-right: 12px; }
  .img-flex-no3 img.img-02 { width: 284px; } }

.img-flex-no4 img.img-01 { width: 200px; margin-right: 8px; }

.img-flex-no4 img.img-02 { width: 139px; }

@media screen and (min-width: 768px) { .img-flex-no4 img.img-01 { width: 314px; margin-right: 12px; }
  .img-flex-no4 img.img-02 { width: 217px; } }

.img-flex-no5 .img-comment-1 { width: 147px; margin-right: 8px; }

.img-flex-no5 .img-comment-1 img { width: 100%; }

.img-flex-no5 .img-comment-2 { width: 190px; }

.img-flex-no5 .img-comment-2 img { width: 100%; }

@media screen and (min-width: 768px) { .img-flex-no5 .img-comment-1 { width: 228px; margin-right: 12px; }
  .img-flex-no5 .img-comment-1 img { width: 100%; }
  .img-flex-no5 .img-comment-2 { width: 293px; }
  .img-flex-no5 .img-comment-2 img { width: 100%; } }

.img-flex-no6 .img-comment-1 { width: 170px; }

.img-flex-no6 .img-comment-1 img { width: 100%; }

@media screen and (min-width: 768px) { .img-flex-no6 .img-comment-1 { width: 370px; }
  .img-flex-no6 .img-comment-1 img { width: 100%; } }

.img-flex-no7 .img-comment-1 { width: 172px; margin-right: 8px; }

.img-flex-no7 .img-comment-1 img { width: 100%; }

.img-flex-no7 .img-comment-2 { width: 172px; }

.img-flex-no7 .img-comment-2 img { width: 100%; }

@media screen and (min-width: 768px) { .img-flex-no7 .img-comment-1 { width: 265px; margin-right: 12px; }
  .img-flex-no7 .img-comment-1 img { width: 100%; }
  .img-flex-no7 .img-comment-2 { width: 265px; }
  .img-flex-no7 .img-comment-2 img { width: 100%; } }

.img-flex-no8 img.img-01 { width: 200px; }

@media screen and (min-width: 768px) { .img-flex-no8 img.img-01 { width: 297px; } }

.img-flex-no9 img.img-01 { width: 200px; }

@media screen and (min-width: 768px) { .img-flex-no9 img.img-01 { width: 284px; } }

.img-flex-no10 .img-comment-1 { width: 172px; margin-right: 8px; }

.img-flex-no10 .img-comment-1 img { width: 100%; }

.img-flex-no10 .img-comment-2 { width: 172px; }

.img-flex-no10 .img-comment-2 img { width: 100%; }

@media screen and (min-width: 768px) { .img-flex-no10 .img-comment-1 { width: 260px; margin-right: 12px; }
  .img-flex-no10 .img-comment-1 img { width: 100%; }
  .img-flex-no10 .img-comment-2 { width: 259px; }
  .img-flex-no10 .img-comment-2 img { width: 100%; } }

.img-flex-no11 .img-comment-1 { width: 172px; margin-right: 8px; }

.img-flex-no11 .img-comment-1 img { width: 100%; }

.img-flex-no11 .img-comment-2 { width: 172px; }

.img-flex-no11 .img-comment-2 img { width: 100%; }

@media screen and (min-width: 768px) { .img-flex-no11 .img-comment-1 { width: 273px; margin-right: 12px; }
  .img-flex-no11 .img-comment-1 img { width: 100%; }
  .img-flex-no11 .img-comment-2 { width: 247px; }
  .img-flex-no11 .img-comment-2 img { width: 100%; } }

.img-flex-no12 .img-comment-1 { width: 178px; margin-right: 8px; }

.img-flex-no12 .img-comment-1 img { width: 100%; }

.img-flex-no12 .img-comment-2 { width: 166px; }

.img-flex-no12 .img-comment-2 img { width: 100%; }

@media screen and (min-width: 768px) { .img-flex-no12 .img-comment-1 { width: 273px; margin-right: 12px; }
  .img-flex-no12 .img-comment-1 img { width: 100%; }
  .img-flex-no12 .img-comment-2 { width: 254px; }
  .img-flex-no12 .img-comment-2 img { width: 100%; } }

.img-flex-no13 img.img-01 { width: 165px; margin-right: 8px; }

.img-flex-no13 img.img-02 { width: 165px; }

@media screen and (min-width: 768px) { .img-flex-no13 img.img-01 { width: 263px; margin-right: 8px; }
  .img-flex-no13 img.img-02 { width: 262px; } }

.img-flex-no14 img.img-01 { width: 200px; }

@media screen and (min-width: 768px) { .img-flex-no14 img.img-01 { width: 425px; } }

.img-flex-no15 .img-comment-1 { width: 172px; margin-right: 8px; }

.img-flex-no15 .img-comment-1 img { width: 100%; }

.img-flex-no15 .img-comment-2 { width: 172px; }

.img-flex-no15 .img-comment-2 img { width: 100%; }

@media screen and (min-width: 768px) { .img-flex-no15 .img-comment-1 { width: 280px; margin-right: 12px; }
  .img-flex-no15 .img-comment-1 img { width: 100%; }
  .img-flex-no15 .img-comment-2 { width: 252px; }
  .img-flex-no15 .img-comment-2 img { width: 100%; } }

.img-flex-no16 img.img-01 { width: 168px; margin-right: 8px; }

.img-flex-no16 img.img-02 { width: 170px; }

@media screen and (min-width: 768px) { .img-flex-no16 img.img-01 { width: 262px; margin-right: 12px; }
  .img-flex-no16 img.img-02 { width: 262px; } }

.img-flex-no17 .img-comment-1 { width: 150px; margin-right: 8px; }

.img-flex-no17 .img-comment-1 img { width: 100%; }

.img-flex-no17 .img-comment-2 { width: 172px; }

.img-flex-no17 .img-comment-2 img { width: 100%; }

.img-flex-no17 .img-comment-3 { width: 150px; }

.img-flex-no17 .img-comment-3 img { width: 100%; }

@media screen and (min-width: 768px) { .img-flex-no17 .img-comment-1 { width: 253px; margin-right: 12px; }
  .img-flex-no17 .img-comment-1 img { width: 100%; }
  .img-flex-no17 .img-comment-2 { width: 271px; }
  .img-flex-no17 .img-comment-2 img { width: 100%; }
  .img-flex-no17 .img-comment-3 { width: 253px; margin-top: -64px; }
  .img-flex-no17 .img-comment-3 img { width: 100%; } }

.img-flex-no18 img.img-01 { width: 163px; margin-right: 8px; }

.img-flex-no18 img.img-02 { width: 166px; }

.img-flex-no18 img.img-03 { width: 180px; }

@media screen and (min-width: 768px) { .img-flex-no18 img.img-01 { width: 268px; margin-right: 12px; }
  .img-flex-no18 img.img-02 { width: 276px; }
  .img-flex-no18 img.img-03 { width: 295px; margin-top: 12px; } }

.img-flex-no19 .img-comment-1 { width: 195px; margin-right: 8px; }

.img-flex-no19 .img-comment-1 img { width: 100%; }

.img-flex-no19 .img-comment-2 { width: 149px; }

.img-flex-no19 .img-comment-2 img { width: 100%; }

@media screen and (min-width: 768px) { .img-flex-no19 .img-comment-1 { width: 300px; margin-right: 12px; }
  .img-flex-no19 .img-comment-1 img { width: 100%; }
  .img-flex-no19 .img-comment-2 { width: 230px; }
  .img-flex-no19 .img-comment-2 img { width: 100%; } }

.img-flex-no20 .img-comment-1 { width: 171px; margin-right: 8px; }

.img-flex-no20 .img-comment-1 img { width: 100%; }

.img-flex-no20 .img-comment-2 { width: 173px; }

.img-flex-no20 .img-comment-2 img { width: 100%; }

@media screen and (min-width: 768px) { .img-flex-no20 .img-comment-1 { width: 258px; margin-right: 12px; }
  .img-flex-no20 .img-comment-1 img { width: 100%; }
  .img-flex-no20 .img-comment-2 { width: 258px; }
  .img-flex-no20 .img-comment-2 img { width: 100%; } }

/* = = = = = = = = = = =
年間スケジュール
= = = = = = = = = = = */
.org__table__wrapper { width: 100%; overflow: scroll; }

.org__table { width: 285px; margin: 0 auto; }

@media screen and (min-width: 768px) { .org__table { width: 100%; } }

@media screen and (min-width: 768px) { .org__table th { width: 130px; box-sizing: border-box; } }

@media screen and (min-width: 768px) { .org__table td { width: 435px; box-sizing: border-box; } }

.schdule__index { text-align: center; font-size: 1.4rem; margin-bottom: 20px; }

.schdule__index__year { display: inline-block; font-weight: bold; font-size: 14px; margin-right: 10px; }

@media screen and (min-width: 768px) { .schdule__index__year { font-size: 21px; } }

.schdule__index__month { display: inline-block; margin-bottom: 10px; margin-right: 20px; }

.schdule__index__month a { color: #000; font-size: 14px; margin-right: 10px; }

@media screen and (min-width: 768px) { .schdule__index__month a { font-size: 21px; } }

.back-red { background-color: #fde6df; }

.back-blue { background-color: #D6EEF9; }

.back-orange { background-color: #fbe4ca; }

.back-green { background-color: #eef6e2; }

.back-gray { background-color: #e5e5e5; }

/* = = = = = = = = = = =
ロータリーについて
= = = = = = = = = = = */
.about__lead-sec { margin-bottom: 28px; }

@media screen and (min-width: 768px) { .about__lead-sec { width: 80%; margin: 0 auto; } }

.about__lead-sec .link-01 { display: inline; }

.about__lead-sec__main { margin-bottom: 30px; }

@media screen and (min-width: 768px) { .about__lead-sec__main { margin-bottom: 58px; } }

.about__sec { margin-bottom: 40px; }

@media screen and (min-width: 768px) { .about__sec { margin-bottom: 80px; } }

@media screen and (min-width: 768px) { .about__sec__imgbox { width: 50%; } }

.about__sec__title { color: #fff; background: #442d61; display: inline-block; padding: 5px 10px; margin-bottom: 20px; }

.about__sec__subtitle { display: block; margin-bottom: 20px; }

.about__sec__subtitle .activity__sec__subtitle__inner { display: inline-block; border-bottom: 1px solid #000; }

.about__sec__heading { margin-bottom: 10px; font-weight: bold; }

.about__sec__maintext { margin-bottom: 10px; line-height: 1.8; }

.about__sec__maintext ul li { margin-left: 20px; }

.about__sec__maintext ul li ul li { list-style-type: disc; }

@media screen and (min-width: 768px) { .about__sec__texbox { display: block; } }

.about__sec__wrapper { margin-bottom: 20px; }

@media screen and (min-width: 768px) { .about__sec__wrapper { width: 280px; } }

.about__sec__wrapper-last { margin-bottom: 0; }

@media screen and (min-width: 768px) { .about__sec__wrapper-last { margin-left: 100px; } }

.about__sec__figure { padding: 20px; background-color: #e5e5e5; border-radius: 10px; margin-bottom: 20px; }

@media screen and (min-width: 768px) { .about__sec__figure { display: flex; width: 875px; margin: 35px auto; padding: 30px 30px; } }

.about__sec__figure__small { width: 236px; margin: 0 auto; }

@media screen and (min-width: 768px) { .about__sec__figure__small { width: 465px; margin-top: 35px; } }

.about__sec__figure__title { font-weight: bold; margin-bottom: 6px; font-size: 24px; }

.about__sec__figure__text { line-height: 1.6; }

.about__sec__figure__update { text-align: right; }

.about__sec__figure__wrapper { width: 100%; }

@media screen and (min-width: 768px) { .about-info__table { display: flex; flex-wrap: wrap; } }

@media screen and (min-width: 768px) { .about-info__item { width: 30%; margin-right: 10%; margin-bottom: 10px; } }

@media screen and (min-width: 768px) { .about-info__explain { width: 60%; margin-bottom: 10px; } }

/* = = = = = = = = = = =
入会案内
= = = = = = = = = = = */
.about__sec__btnarea { text-align: center; }

/* = = = = = = = = = = =
LINKS
= = = = = = = = = = = */
.links__sec__title { color: #fff; background: #442d61; display: inline-block; padding: 5px 10px; margin-bottom: 20px; font-size: 16px; }

.links__sec { margin-bottom: 40px; }

@media screen and (min-width: 768px) { .links__sec { margin-bottom: 80px; } }

@media screen and (min-width: 768px) { .links__sec__texbox { display: block; } }

.links__sec__maintext { margin-bottom: 10px; }

.links__sec__maintext li { list-style: none; margin-bottom: 15px; }

.links__sec__maintext a { color: #000; display: inline-block; }

@media screen and (min-width: 768px) { .links__sec__wrapper { max-width: 500px; margin: 0 auto; } }

/* = = = = = = = = = = =
コンタクト
= = = = = = = = = = = */
.contact__lead-sec { text-align: center; margin-bottom: 30px; font-size: 11.3px; }

@media screen and (min-width: 768px) { .contact__lead-sec { margin: 30px auto 0; max-width: 900px; font-size: 1rem; } }

@media screen and (min-width: 768px) { .contact-area__table { margin: 30px auto 0; max-width: 600px; } }

.contact-area__item { width: 100%; margin-bottom: 11.5px; font-weight: bold; }

@media screen and (min-width: 768px) { .contact-area__item { width: 40%; } }

.contact-area__input { width: 100%; margin-bottom: 20px; }

input[type="text"], input[type="email"], textarea { background: #fff; border: 3px solid #e5e5e5; width: 100%; padding: 4px 6px; }

textarea { min-height: 120px; }

.contact-area__btn { display: flex; flex-wrap: wrap; justify-content: center; }

@media screen and (min-width: 768px) { .contact-area__btn { flex-wrap: nowrap; } }

.contact-area__btn .btn-02 { margin: 10px; }

input[type="submit"] { color: #fff; font-weight: bold; background: #442d61; padding: 16px 26px; border-radius: 5px; }

/* = = = = = = = = = = =
アーカイブ
= = = = = = = = = = = */
.article__item { margin-bottom: 30px; }

.article__item a { color: #000; }

.article__item a:hover { color: #442d61; }

.icon { display: inline-block; background-repeat: no-repeat; }

.icon.icon-web-navigation-line-craft-1-109681 { background-image: url("../images/icon.png"); background-position: 0px 0px; background-size: 1540px 1026px; width: 512px; height: 512px; }

.icon.icon-web-navigation-line-craft-2-109682 { background-image: url("../images/icon.png"); background-position: -514px 0px; background-size: 1540px 1026px; width: 512px; height: 512px; }

.icon.icon-web-navigation-line-craft-3-109688 { background-image: url("../images/icon.png"); background-position: 0px -514px; background-size: 1540px 1026px; width: 512px; height: 512px; }

.icon.icon-web-navigation-line-craft-4-109689 { background-image: url("../images/icon.png"); background-position: -514px -514px; background-size: 1540px 1026px; width: 512px; height: 512px; }

.icon.icon-web-navigation-line-craft-5-109690 { background-image: url("../images/icon.png"); background-position: -1028px 0px; background-size: 1540px 1026px; width: 512px; height: 512px; }

#nav-toggle { position: fixed; top: 18px; right: 20px; height: 32px; cursor: pointer; }

#nav-toggle > div { position: relative; width: 22px; }

#nav-toggle span { width: 100%; height: 4px; left: 0; display: block; background: #442d61; position: absolute; transition: transform .3s ease-in-out, top .5s ease; }

#nav-toggle span:nth-child(1) { top: 0; }

#nav-toggle span:nth-child(2) { top: 8px; }

#nav-toggle span:nth-child(3) { top: 16px; }

.open #nav-toggle span { background: #fff; }

.open #nav-toggle span:nth-child(1) { top: 15px; transform: rotate(45deg); }

.open #nav-toggle span:nth-child(2) { top: 15px; width: 0; left: 50%; }

.open #nav-toggle span:nth-child(3) { top: 15px; width: 100%; transform: rotate(-45deg); }

/* z-index */
#nav-toggle { z-index: 1000; }

#container { z-index: 900; }

#gloval-nav.sp { background-color: #442d61; color: #fff; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 990; display: flex; visibility: hidden; flex-direction: column; justify-content: center; align-items: center; font-size: 20px; opacity: 0; transition: opacity .3s ease, visibility .3s ease; }

#gloval-nav.sp a { display: block; font-family: "Noto Sans JP", sans-serif; font-weight: bold; color: #fff; text-decoration: none; padding: 2px 0; transition: color .3s ease; font-size: 1rem; letter-spacing: 0.1rem; }

#gloval-nav.sp a:hover { color: #666; }

#gloval-nav.sp ul { list-style: none; }

#gloval-nav.sp ul li { opacity: 0; transform: translateX(200px); transition: transform .3s ease, opacity .2s ease; }

#gloval-nav.sp ul li ul { padding-left: 20px; margin-bottom: 10px; }

#gloval-nav.sp ul li ul li a { font-size: 0.8rem; }

/* open */
.open { overflow: hidden; }

.open #gloval-nav.sp { visibility: visible; opacity: 1; }

.open #gloval-nav.sp li { opacity: 1; transform: translateX(0); transition: transform 1s ease, opacity .9s ease; }

/* = = = = = = = = = = =
info-box
= = = = = = = = = = = */
.info-box__inner { padding: 10px; background-color: #aca2b9; }

.info-box__title { background-color: #fff; padding: 2px; text-align: center; }

.info-box__text { position: relative; padding: 10px; color: #fff; }

.info-box__table { display: flex; flex-wrap: wrap; }

.info-box__item { width: 20%; margin-bottom: 5px; }

.info-box__explain { width: 80%; margin-bottom: 5px; }

.info-box__explain a { color: #fff; }

.info-box__btn { position: absolute; bottom: 0; right: 0; }

.info-box__btn a { background-color: #fff; padding: 5px 10px; color: #432c60; }

/* = = = = = = = = = = =
開く - 閉じる
= = = = = = = = = = = */
/*ボックス全体*/
.switchbox { margin: 10px 0; padding: 0; }

/*ラベル*/
.switchbox label { display: block; cursor: pointer; font-size: 12.5px; padding-top: 5px; padding-bottom: 5px; position: relative; }

@media screen and (min-width: 768px) { .switchbox label { font-size: 1rem; } }

/*チェックボックスを非表示にする*/
.switchbox input { display: none; }

/*中身を非表示にしておく*/
.switchbox div { height: 0; overflow-y: hidden; transition: 0.8s; /*ゆっくり表示させる*/ opacity: 0; background-color: #aca2b9; font-size: 11px; }

.switchbox div p { padding: 8px; }

@media screen and (min-width: 768px) { .switchbox div { font-size: 1rem; } }

/*クリックで中身を表示*/
.switchbox input:checked + label + div { height: auto; opacity: 1; margin-bottom: 10px; }

@media screen and (min-width: 768px) { .switchbox input:checked + label + div { width: 100%; } }

/*アイコン*/
.switchbox label[for="label1"]::after, .switchbox label[for="label2"]::after { content: 'もっと見る▼'; font-size: 11px; position: absolute; right: 10px; }

@media screen and (min-width: 768px) { .switchbox label[for="label1"]::after, .switchbox label[for="label2"]::after { font-size: .8rem; } }

/*クリックでアイコン入れ替え*/
.switchbox input:checked + label::after { content: '閉じる▲'; }

/* = = = = = = = = = = =
ボタン
= = = = = = = = = = = */
.btn-01 a { color: #442d61; background: #fff; padding: 8px 20px; border-radius: 5px; }

.btn-02 a { color: #fff; font-weight: bold; background: #442d61; padding: 16px 26px; border-radius: 5px; }

/* = = = = = = = = = = =
リンク
= = = = = = = = = = = */
.link-01 { margin-bottom: 25px; }

.link-01 a { color: #442d61; font-weight: bold; padding-bottom: 8px; border-bottom: 1px solid #442d61; }

.link-01 a .link-01__icon { margin-left: 6px; }

.link-01 a .link-01__icon img { height: 12px; margin-bottom: 2px; }

@media screen and (min-width: 768px) { .about-page .link-01.right-area { max-width: 800px; margin: 10px auto; text-align: right; } }

/* = = = = = = = = = = =
Facebbok
= = = = = = = = = = = */
.facebook-wrapper { max-width: 500px; margin: 0 auto; }

.facebook-wrapper > .fb-page { width: 100%; }

.facebook-wrapper > .fb-page > span, .facebook-wrapper iframe { width: 100% !important; }

/* = = = = = = = = = = =
mguide-box
= = = = = = = = = = = */
@media screen and (min-width: 768px) { .rmguide__month__sec__wrapper { display: flex; flex-wrap: wrap; } }

.rmguide__month__sec { margin-bottom: 50px; }

@media screen and (min-width: 768px) { .rmguide__month__sec { width: 50%; } }

@media screen and (min-width: 768px) { .rmguide__month__sec-01 { padding-right: 20px; } }

@media screen and (min-width: 768px) { .rmguide__month__sec-02 { padding-left: 20px; } }

.rmguide__month__title { background-color: #442d61; text-align: center; color: #fff; padding-top: 5px; padding-bottom: 5px; margin-bottom: 15px; }

.rmguide-box { margin-bottom: 30px; }

.rmguide-box__inner { padding: 10px; background-color: #e5e5e5; }

.rmguide-box__title { background-color: #fff; padding: 2px; text-align: center; color: #442d61; }

.rmguide-box__text { position: relative; padding: 10px; }

.rmguide-box__info { position: relative; padding: 10px; border-bottom: 4px solid #fff; }

.rmguide-box__table { display: flex; flex-wrap: wrap; }

.rmguide-box__item { width: 20%; margin-bottom: 10px; }

.rmguide-box__explain { width: 80%; margin-bottom: 10px; padding-left: 10px; border-left: 2px solid #fff; }

.rmguide__text { margin-bottom: 30px; }

.rmguide__imgbox { width: 100%; margin-bottom: 30px; }

.rmguide__imgbox img { width: 100%; }

@media screen and (min-width: 768px) { .rmguide__imgbox { margin-bottom: 60px; } }

/* = = = = = = = = = = =
ボタン
= = = = = = = = = = = */
.gray-line { height: 3px; background-color: #e5e5e5; margin-bottom: 28px; }

/* = = = = = = = = = = =
サイドバー　アコーディオン
= = = = = = = = = = = */
@media screen and (min-width: 768px) { ul.accordion { font-size: 16px; } }

ul.accordion a { display: block; padding: 5px; background-position: 97% center; background-repeat: no-repeat; text-decoration: none; color: #333; }

ul.accordion span { display: block; padding: 5px; background-position: 97% center; background-repeat: no-repeat; color: #333; font-weight: bold; }

ul.accordion span:hover { cursor: pointer; }

ul.accordion ul { display: none; }

ul.accordion > li { list-style: none; }

ul.accordion > li > p span { font-weight: bold; padding-left: 32px; background-image: url(../images/icon_accordion_plus.png); background-repeat: no-repeat; background-size: 14px; background-position: left 10px top 7px; }

@media screen and (min-width: 768px) { ul.accordion > li > p span { background-image: url(../images/icon_accordion_plus.png); background-repeat: no-repeat; background-size: 14px; background-position: left 10px top 10px; } }

ul.accordion > li > p span.open { font-weight: bold; padding-left: 32px; background-image: url(../images/icon_accordion_minus.png); background-repeat: no-repeat; background-size: 14px; background-position: left 10px top 7px; }

@media screen and (min-width: 768px) { ul.accordion > li > p span.open { background-image: url(../images/icon_accordion_minus.png); background-repeat: no-repeat; background-size: 14px; background-position: left 10px top 10px; } }

ul.accordion > li > ul > li { list-style: none; border-bottom: 1px solid #000; margin-left: 20px; }

ul.accordion > li > ul > li:last-child { border-bottom: none; }

ul.accordion > li > ul > li > a { padding-left: 20px; background-image: url(../images/icon_accordion_triangle.png); background-repeat: no-repeat; background-size: 5px; background-position: left 10px top 14px; line-height: 1.8; text-decoration: underline; }

ul.accordion > li > ul > li > ul > li:last-child { border: none; }

/*
共通パーツ
*/
body { color: #000; line-height: 1.5; font-family: "Montserrat","游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif; font-size: 12.5px; font-weight: bold; }

@media screen and (min-width: 768px) { body { font-size: 18px; } }

@media screen and (min-width: 768px) { .sp { display: none; } }

.pc { display: none; }

@media screen and (min-width: 768px) { .pc { display: inline-block; } }

.img-width-100 { width: 100%; }

.clearfix { zoom: 1; }

.clearfix:before, .clearfix:after { content: " "; display: table; }

.clearfix:after { clear: both; }
/*# sourceMappingURL=maps/style.css.map */