@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;700&display=swap');

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
}



/*
#colors

@primary #005abb
@secondary #aa55cc
@primary-text #cccccc
*/
/*
#overview
tab

切り替えタブ用コンポーネントです。
*/
/*
#styleguide
.mod-tab

タブリンクに .is-open を付与すると、同順のコンテンツが表示されます。

```
<div class="mod-tab js-tab">
<ul class="mod-tab-trigger js-tab-trigger">
<li><a href="javascript:void(0)">タブ切り替え１</a></li>
<li class="is-open"><a href="javascript:void(0)">タブ切り替え２</a></li>
<li><a href="javascript:void(0)">タブ切り替え３</a></li>
</ul>
<div class="mod-tab-target">
<div class="js-tab-target">
タブコンテンツ１
</div>
<div class="js-tab-target">
タブコンテンツ２
</div>
<div class="js-tab-target">
タブコンテンツ３
</div>
</div>
</div>
```
*/
.mod-tab-trigger {
  display: flex;

  justify-content: space-between;

  margin: 30px 0;
  padding: 0 !important;

  border-right: 3px solid #eee;
}
.mod-tab-trigger li {
  display: block;
  position: relative;

  flex: 1;

  border-top: 3px solid #eee;
  border-bottom: 3px solid #eee;
  border-left: 3px solid #eee;

  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .mod-tab-trigger li {
    line-height: 1.6 !important;
  }
}
.mod-tab-trigger li:before {
  content: '';

  display: none;
  position: absolute;
  top: 100% !important;
  left: 50% !important;

  width: 0 !important;
  height: 0 !important;
  margin: 0 0 0 -8px !important;

  border-width: 10px 8px 0 8px;
  border-style: solid;
  border-color: #eee transparent transparent transparent;
  border-radius: 0 !important;
  background: transparent !important;
}
.mod-tab-trigger li a {
  display: block;

  padding: 15px;

  color: #000;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .mod-tab-trigger li a {
    padding: 10px 5px;
  }
}
.mod-tab-trigger li.is-open {
  background: #eee;
}
.mod-tab-trigger li.is-open:before {
  display: block;
}

.mod-tab2 {
  margin: 30px 0;
}
.mod-tab2 ul {
  display: flex;

  flex-wrap: wrap;
  justify-content: center;

  width: 100%;
  margin: 0;
  padding: 0 !important;

  border-bottom: 3px solid #eee;
}
@media screen and (max-width: 768px) {
  .mod-tab2 ul {
    display: block;

    letter-spacing: -0.4em;
  }
  .mod-tab2 ul > * {
    letter-spacing: normal;
  }
}
@media screen and (max-width: 768px) {
  .mod-tab2 li {
    display: inline-block;
  }
}
.mod-tab2 li:before {
  display: none;
}
.mod-tab2 a {
  display: block;

  padding: 15px 20px;

  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .mod-tab2 a {
    padding: 5px 10px;
  }
}
.mod-tab2 a:hover {
  background-color: #eee;
}
.mod-tab2 a.current {
  background-color: #eee;
}



/*
#styleguide
.mod-newsbox

```
<div class="l-main-center">
  <div class="mod-newsbox">
    <div class="figure">
      <img src="http://www.icu.ac.jp/news/images/IMG_6134_thumbnail.jpg" alt="" />
    </div>
    <div class="text">
      <h3 class="heading"><a href="DUMMY">本学大学院博士後期課程の那須里絵さんが日本の代表として国際ワークキャンプと国際学会に参加</a></h3>
      <div class="date">公開日：2018年2月2日</div>
      <p class="lead">本学大学院アーツ・サイエンス研究科博士後期課程の那須里絵さんが、1月6日（水）から13日（土）まで、エジプトのカイロで行われたグループセラピーに関する国際ワークキャンプ" Transcultural Community Camp*"と国際学会" The 3rd EAGT International …</p>
    </div>
  </div>
</div>
```
*/
.mod-newsbox {
  display: table;

  width: 100%;
  margin: 30px 0;
  padding: 0 0 15px;

  border-bottom: 3px solid #eee;
}
.mod-newsbox .figure {
  display: table-cell;

  width: 200px;
}
@media screen and (max-width: 768px) {
  .mod-newsbox .figure {
    display: block;

    width: 100%;
    margin: 0 0 1em;

    text-align: center;
  }
}
.mod-newsbox .figure img {
  max-width: 180px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .mod-newsbox .figure img {
    width: 100%;
    max-width: 100%;
  }
}
.mod-newsbox .text {
  display: table-cell;

  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .mod-newsbox .text {
    display: block;

    width: 100%;
  }
}
.mod-newsbox .date {
  margin: 1em 0;
}
.mod-newsbox .heading {
  margin: 0 !important;

  font-size: 2rem;
  line-height: 1.5;
}
.mod-newsbox .lead {
  line-height: 1.5;
}

.news_figure {
  text-align: center;
}

.NewsImageL {
  float: left;

  max-width: 50%;
  margin-top: 0;
  margin-right: 25px;
  margin-bottom: 10px;
}

.NewsImageR {
  float: right;

  max-width: 50%;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 25px;
}

.ArticleArea {
  line-height: 2;
}

.Cp_Img {
  display: table;

  margin-right: auto;
  margin-left: auto;

  line-height: 2;
}
.Cp_Img img {
  margin-top: 0;
  margin-bottom: 0;
}
.Cp_Img p.Img_Cp {
  margin-top: 0;
}

.Img_Cp {
  display: flex;

  margin: 0;
  padding: 5px;

  background-color: #eee;

  font-size: 80%;
  text-align: center;
}

.contentsWrapper .mainArea .Cp_Img p.Img_Cp,
.contentsWrapper .mainArea .Cp_Img div.Img_Cp {
  margin: -50px 0 1em 0;
  padding: 3px 5px;
}

/* SNS */
.social_btn {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 0px;
}

.fb-share-button,
.fb_iframe_widget span,
.twitter_btn {
  display: inline-block !important;
  vertical-align: top !important;
}

.fb-share-button span,
.fb-share-button iframe {
 width: 59px !important;
 height: 20px !important;
}

.twitter_btn iframe {
 width: 60px !important;
 height: 20px !important;
}

/*
#styleguide
.mod-pager

ニュース一覧等で使用するページャー用モジュールです。

```
<ul class="mod-pager clearfix">
  <li class="prevFirst"><a href="http://www.icu.ac.jp/news/index.html">◁◁</a></li>
  <li class="prev"><a href="http://www.icu.ac.jp/news/index.html">◁</a></li>
  <li><span>1</span></li>
  <li><a href="http://www.icu.ac.jp/news/index_2.html">2</a></li>
  <li><a href="http://www.icu.ac.jp/news/index_3.html">3</a></li>
  <li><a href="http://www.icu.ac.jp/news/index_4.html">4</a></li>
  <li><a href="http://www.icu.ac.jp/news/index_5.html">5</a></li>
  <li><a href="http://www.icu.ac.jp/news/index_6.html">6</a></li>
  <li><a href="http://www.icu.ac.jp/news/index_7.html">7</a></li>
  <li><a href="http://www.icu.ac.jp/news/index_8.html">8</a></li>
  <li class="next"><a href="http://www.icu.ac.jp/news/index_2.html">▷</a></li>
  <li class="nextLast"><a href="http://www.icu.ac.jp/news/index_79.html">▷▷</a></li>
</ul>
```
*/
.mod-pager {
  display: block;

  padding: 0 !important;

  text-align: center;
  letter-spacing: -0.4em;
}
.mod-pager > * {
  letter-spacing: normal;
}
.mod-pager li {
  display: inline-block;

  width: 30px;
  height: 30px;
  margin: 0 2px;

  vertical-align: middle;
}
.mod-pager li:before {
  display: none;
}
.mod-pager li a,
.mod-pager li span {
  display: block;

  width: 100%;
  height: 100%;

  /*font-size: 1.0rem;*/
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}
.mod-pager li a {
  color: #000;
  text-decoration: none;

  transition: all 0.3s ease;
}
.mod-pager li a:hover {
  opacity: 0.6;
}
.mod-pager li span {
  background: #005abb;

  color: #fff;
}
.mod-pager li.prevFirst a,
.mod-pager li.prev a,
.mod-pager li.next a,
.mod-pager li.nextLast a {
  position: relative;
  overflow: hidden;

  white-space: nowrap;
  text-indent: 200%;
}
.mod-pager li.prevFirst a:before,
.mod-pager li.prev a:before,
.mod-pager li.next a:before,
.mod-pager li.nextLast a:before {
  content: '';

  display: block;
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 10px;
}
.mod-pager li.prevFirst a:before,
.mod-pager li.nextLast a:before {
  background-image: url(/assets/img/common/ico_arrow_double_01.png);
}
.mod-pager li.prev a:before,
.mod-pager li.next a:before {
  background-image: url(/assets/img/common/ico_arrow_01.png);
}
.mod-pager li.nextLast a:before,
.mod-pager li.next a:before {
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}















/*
#styleguide
レイアウト関連

```
<div class="l-main-inner">
<p class="align-center">.align-center : 中央寄せ</p>
<p class="align-right">.align-right : 右寄せ</p>
<p class="nowrap">.nowrap : 折り返さない</p>
<p class="mt0">.mt0 : margin-top: 0</p>
<p class="mb0">.mb0 : margin-bottom: 0</p>
</div>
```
*/
.align-center {
  text-align: center !important;
}

.align-right {
  text-align: right !important;
}

.nowrap {
  white-space: nowrap !important;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.mt0 {
  margin-top: 0 !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt2em {
  margin-top: 2em !important;
}

.mt1em {
  margin-top: 1em !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 768px) {
  .sp-mt0 {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .sp-mb0 {
    margin-bottom: 0 !important;
  }
}

.font12 {
  font-size: 1.2rem !important;
}

/*
#colors

@primary #005abb
@secondary #aa55cc
@primary-text #cccccc
*/
/*
#styleguide
記事テンプレ

```
<div class="l-main-inner">
<h1 class="mod-heading1">h1タイトル 52px #000000</h1>
<p>h1下テキスト。18px #000000　行間200%</p>
<p>標準本文テキスト　16px　#000000　行間200%</p>
<h2>h2タイトル 40px #000000</h2>
<p><strong>太字テキスト</strong></p>
<p><em>強調テキストカラー　#e95412</em></p>
<h3>h3タイトル 24px #000000</h3>
<h4>h4タイトル 16px #000000</h4>
<p><a href="#">テキストリンク default #005abb underline<br>
テキストリンク hover #005abb<br>
テキストリンク visited #666666 underline<br>
テキストリンク visited hover #666666</a></p>
<p><a href="DUMMY.pdf">PDFリンク</a></p>
<p><a href="DUMMY.pdf">旧PDFリンク（元々入っている画像は非表示になります）</a><img alt="" src="/assets/img/dummy/ico_pdf.gif" width="16" height="16"></p>
<p><a href="DUMMY" target="_blank">外部リンク</a></p>
<p><a href="DUMMY" target="_blank"><span class="outlink">旧外部リンク（span囲みは無効になります）</span></a></p>
<h4>リスト</h4>
<ul>
<li>リスト１</li>
<li>リスト１</li>
</ul>
<h4>数字リスト</h4>
<ol>
<li>リスト１</li>
<li>リスト１</li>
</ol>
<p class="mod-point">.mod-point : 単体のポイント説明用に利用。改行確認用テキスト改行確認用テキスト改行確認用テキスト改行確認用テキスト改行確認用テキスト改行確認用テキスト改行確認用テキスト</p>
</div>
```
*/

/*
.l-main-inner h1,
.l-main-center h1,
.l-main-center-large h1 {
  margin: 0 0 30px;
  color: #000;
  font-family: 'Public Sans', 'Noto Sans', 'Noto Sans CJK JP', 'NotoSansCJKjp-Jxck', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
  font-size: 5.2rem;
  font-weight: bold;
}

.l-main-inner h1 + p,
.l-main-center h1 + p,
.l-main-center-large h1 + p {
  margin: 30px 0;
  font-size: 1.8rem;
}

.l-main-inner h1 + ul,
.l-main-center h1 + ul,
.l-main-center-large h1 + ul {
  margin-top: 12px;
}

.l-main-inner h2,
.l-main-center h2,
.l-main-center-large h2 {
  margin: 45px 0 12px;
  color: #000;
  font-family: 'Public Sans', 'Noto Sans', 'Noto Sans CJK JP', 'NotoSansCJKjp-Jxck', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
  font-size: 4rem;
  font-weight: bold;
}

.l-main-inner h2 .sup,
.l-main-center h2 .sup,
.l-main-center-large h2 .sup {
  font-size: 2.4rem;
}

.l-main-inner h2 + p,
.l-main-center h2 + p,
.l-main-center-large h2 + p {
  margin: 27px 0 12px;
}

.page-second .l-main-inner h2,
.page-second
  .l-main-center h2,
.page-second
  .l-main-center-large h2 {
  margin: 45px -170px 34px;
  font-size: 4.8rem;
  text-align: center;
}

.page-second .l-main-inner h2 .sup,
.page-second
    .l-main-center h2 .sup,
.page-second
    .l-main-center-large h2 .sup {
  display: block;
  margin: 15px 0;
  font-size: 3.4rem;
}

.l-main-inner h3,
.l-main-center h3,
.l-main-center-large h3 {
  margin: 30px 0 24px;
  color: #000;
  font-family: 'Public Sans', 'Noto Sans', 'Noto Sans CJK JP', 'NotoSansCJKjp-Jxck', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
}

.page-second .l-main-inner h3,
.page-second
  .l-main-center h3,
.page-second
  .l-main-center-large h3 {
  margin: 40px 0 34px;
  text-align: center;
}

.l-main-inner h3.mod-heading-events,
.l-main-center h3.mod-heading-events,
.l-main-center-large h3.mod-heading-events {
  display: flex;
  align-items: center;
  background: #fff;
}

.l-main-inner h3.mod-heading-events .mod-heading-events-date,
.l-main-center h3.mod-heading-events .mod-heading-events-date,
.l-main-center-large h3.mod-heading-events .mod-heading-events-date {
  display: block;
  width: 110px;
  margin: 0 20px 0 0;
  padding: 12px;
  background: #005abb;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media print, screen and (min-width: 769px) {
  .l-main-inner h3.mod-heading-events .mod-heading-events-date,
  .l-main-center h3.mod-heading-events .mod-heading-events-date,
  .l-main-center-large h3.mod-heading-events .mod-heading-events-date {
    width: 120px;
    padding: 18px 12px;
    font-size: 1.4rem;
  }
}

.l-main-inner h3.mod-heading-events .mod-heading-events-date strong,
.l-main-center h3.mod-heading-events .mod-heading-events-date strong,
.l-main-center-large h3.mod-heading-events .mod-heading-events-date strong {
  display: block;
  font-size: 5rem;
  letter-spacing: 0;
}

.l-main-inner h3.mod-heading-events .mod-heading-events-txt,
.l-main-center h3.mod-heading-events .mod-heading-events-txt,
.l-main-center-large h3.mod-heading-events .mod-heading-events-txt {
  flex: 1;
}

.l-main-inner h4,
.l-main-center h4,
.l-main-center-large h4 {
  margin: 30px 0 6px;
  color: #000;
  font-family: 'Public Sans', 'Noto Sans', 'Noto Sans CJK JP', 'NotoSansCJKjp-Jxck', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
}

.l-main-inner h4 + ol,
.l-main-inner h4 + ul,
.l-main-center h4 + ol,
.l-main-center h4 + ul,
.l-main-center-large h4 + ol,
.l-main-center-large h4 + ul {
  margin-top: 6px;
}

.l-main-inner h5,
.l-main-center h5,
.l-main-center-large h5 {
  margin: 20px 0 6px;
  color: #555;
  font-family: 'Public Sans', 'Noto Sans', 'Noto Sans CJK JP', 'NotoSansCJKjp-Jxck', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
}

.l-main-inner p,
.l-main-center p,
.l-main-center-large p {
  margin: 12px 0;
  color: #000;
  font-size: 1.6rem;
  line-height: 2;
}

.l-main-inner p.mod-lead,
.l-main-center p.mod-lead,
.l-main-center-large p.mod-lead {
  margin: 30px 0;
  font-size: 1.8rem;
}

.page-second .l-main-inner p.mod-lead,
.page-second
    .l-main-center p.mod-lead,
.page-second
    .l-main-center-large p.mod-lead {
  font-size: 2.1rem;
}

.l-main-inner p.mod-point,
.l-main-center p.mod-point,
.l-main-center-large p.mod-point {
  position: relative;
  padding: 0 0 0 28px;
}

.l-main-inner p.mod-point:before,
.l-main-center p.mod-point:before,
.l-main-center-large p.mod-point:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 2px;
  width: 10px;
  height: 10px;
  margin: 0;
  border-radius: 50%;
  background-color: #000;
}

.l-main-inner p.mod-note,
.l-main-center p.mod-note,
.l-main-center-large p.mod-note {
  font-size: 1.4rem;
}

.page-second .l-main-inner p,
.page-second
  .l-main-center p,
.page-second
  .l-main-center-large p {
  margin: 34px 0;
  font-size: 1.8rem;
}

.page-second .l-main-inner p.mod-note,
.page-second
    .l-main-center p.mod-note,
.page-second
    .l-main-center-large p.mod-note {
  font-size: 1.4rem;
}

.l-main-inner strong,
.l-main-center strong,
.l-main-center-large strong {
  font-family: 'Public Sans', 'Noto Sans', 'Noto Sans CJK JP', 'NotoSansCJKjp-Jxck', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
  font-weight: bold;
}

.l-main-inner em,
.l-main-center em,
.l-main-center-large em {
  color: #e95412;
  font-style: normal;
}

.l-main-inner a,
.l-main-center a,
.l-main-center-large a {
  color: #005abb;
}

.l-main-inner a:hover,
.l-main-center a:hover,
.l-main-center-large a:hover {
  text-decoration: none;
}

.l-main-inner a:visited,
.l-main-center a:visited,
.l-main-center-large a:visited {
  color: #666;
}
*/

.l-main-inner a[href$='.pdf']:after,
.l-main-inner a[target='_blank']:after,
.l-main-center a[href$='.pdf']:after,
.l-main-center a[target='_blank']:after,
.l-main-center-large a[href$='.pdf']:after,
.l-main-center-large a[target='_blank']:after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 20px;
  margin: 0 1em 0 9px;
  vertical-align: text-bottom;
}

.l-main-inner a[target='_blank']:after,
.l-main-center a[target='_blank']:after,
.l-main-center-large a[target='_blank']:after {
  background: url(/assets/img/common/ico_outer.png) no-repeat 50% 50%;
  background-size: contain;
}

.l-main-inner a[href$='.pdf']:after,
.l-main-center a[href$='.pdf']:after,
.l-main-center-large a[href$='.pdf']:after {
  background: url(/assets/img/common/ico_pdf.png) no-repeat 50% 50%;
  background-size: contain;
}

.l-main-inner a[href$='.pdf'] + img,
.l-main-center a[href$='.pdf'] + img,
.l-main-center-large a[href$='.pdf'] + img {
  display: none;
}

.l-main-inner a.insta,
.l-main-center a.insta,
.l-main-center-large a.insta {
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.l-main-inner a.insta:before,
.l-main-center a.insta:before,
.l-main-center-large a.insta:before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 10px 0 0;
  background: url(/assets/img/common/ico_insta_01.png) no-repeat 0 0;
  vertical-align: sub;
}

.l-main-inner a.insta:after,
.l-main-center a.insta:after,
.l-main-center-large a.insta:after {
  display: none;
}

.l-main-inner hr,
.l-main-center hr,
.l-main-center-large hr {
  height: 3px;
  margin: 36px 0;
  border: 0;
  background: #000;
}

@media screen and (max-width: 768px) {
/*
  .l-main-inner h1,
  .l-main-center h1,
  .l-main-center-large h1 {
    margin: 0 0 10px;
    font-size: 4rem;
    text-align: center;
  }

  .l-main-inner h1 + p,
  .l-main-center h1 + p,
  .l-main-center-large h1 + p {
    margin: 10px 0 0;
  }

  .l-main-inner h2,
  .l-main-center h2,
  .l-main-center-large h2 {
    margin: 35px 0 12px;
    font-size: 3rem;
  }

  .l-main-inner h2 .sup,
  .l-main-center h2 .sup,
  .l-main-center-large h2 .sup {
    display: block;
    margin: 5px 0 0;
    font-size: 1.7rem;
  }

  .page-second .l-main-inner h2,
  .page-second
  .l-main-center h2,
  .page-second
  .l-main-center-large h2 {
    margin: 35px 0 12px;
    font-size: 3rem;
  }

  .page-second .l-main-inner h2 .sup,
  .page-second
  .l-main-center h2 .sup,
  .page-second
  .l-main-center-large h2 .sup {
    margin: 5px 0;
    font-size: 1.7rem;
  }

  .l-main-inner h3,
  .l-main-center h3,
  .l-main-center-large h3 {
    margin: 28px 0 12px;
  }

  .page-second .l-main-inner h3,
  .page-second
  .l-main-center h3,
  .page-second
  .l-main-center-large h3 {
    margin: 28px 0 12px;
  }

  .l-main-inner p,
  .l-main-center p,
  .l-main-center-large p {
    margin: 16px 0;
  }

  .l-main-inner p.mod-lead,
  .l-main-center p.mod-lead,
  .l-main-center-large p.mod-lead {
    margin: 16px 0;
    font-size: 1.6rem;
  }

  .l-main-inner p.mod-note,
  .l-main-center p.mod-note,
  .l-main-center-large p.mod-note {
    font-size: 1.2rem;
  }

  .page-second .l-main-inner p,
  .page-second
  .l-main-center p,
  .page-second
  .l-main-center-large p {
    margin: 16px 0;
    font-size: 1.6rem;
  }

  .page-second .l-main-inner p.mod-lead,
  .page-second
  .l-main-center p.mod-lead,
  .page-second
  .l-main-center-large p.mod-lead {
    font-size: 1.6rem;
  }

  .page-second .l-main-inner p.mod-note,
  .page-second
  .l-main-center p.mod-note,
  .page-second
  .l-main-center-large p.mod-note {
    font-size: 1.2rem;
  }
*/

  .l-main-inner a[href$='.pdf']:after,
  .l-main-inner a[target='_blank']:after,
  .l-main-center a[href$='.pdf']:after,
  .l-main-center a[target='_blank']:after,
  .l-main-center-large a[href$='.pdf']:after,
  .l-main-center-large a[target='_blank']:after {
    margin: 0 0.5em 0 5px;
  }

  .l-main-inner a.insta,
  .l-main-center a.insta,
  .l-main-center-large a.insta {
    font-size: 1.6rem;
  }

  .l-main-inner a.insta:before,
  .l-main-center a.insta:before,
  .l-main-center-large a.insta:before {
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
}















/*
#colors

@primary #005abb
@secondary #aa55cc
@primary-text #cccccc
*/
/*
#styleguide
デフォルトテーブル

```
<div class="l-main-inner">
<table>
<tr>
<th>テーブル見出し</th>
<td>テーブル内容</td>
</tr>
<tr>
<th>テーブル見出し</th>
<td>テーブル内容</td>
</tr>
</table>
</div>
```
*/
.l-main-inner table,
.l-main-center table {
  table-layout: fixed;
  width: 100%;
  margin: 30px 0;
}

.l-main-inner table th,
.l-main-inner table td,
.l-main-center table th,
.l-main-center table td {
  vertical-align: top;
}

.l-main-inner table th,
.l-main-center table th {
  width: 180px;
  padding: 10px;
  border: 1px solid #ccc;
  background: #eee;
  /*font-family: 'Public Sans', 'Noto Sans', 'Noto Sans CJK JP', 'NotoSansCJKjp-Jxck', 'Yu Gothic', YuGothic, Meiryo, sans-serif;*/
  /*font-size: 1.8rem;*/
  font-weight: bold;
  line-height: 1.77778;
}

.l-main-inner table td,
.l-main-center table td {
  padding: 10px;
  border: 1px solid #ccc;
  /*font-family: 'Public Sans', 'Noto Sans', 'Noto Sans CJK JP', 'NotoSansCJKjp-Jxck', 'Yu Gothic', YuGothic, Meiryo, sans-serif;*/
  /*font-size: 1.6rem;*/
  line-height: 2;
}

.l-main-inner table tr > td > *:first-child,
.l-main-center table tr > td > *:first-child {
  margin-top: 0 !important;
}

.l-main-inner table tr > td > *:last-child,
.l-main-center table tr > td > *:last-child {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 768px) {
  .l-main-inner table,
  .l-main-center table {
    display: block;
  }

  .l-main-inner table th,
  .l-main-center table th {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: none;
    /*font-size: 1.6rem;*/
  }

  .l-main-inner table td,
  .l-main-center table td {
    display: block;
  }
}

/*
#styleguide
旧テーブル（.tableSet）

```
<div class="l-main-inner">
<table cellpadding="10" cellspacing="1" class="tableSet">
  <tbody>
    <tr class="zebra">
      <th colspan="2" class="cellA">年譜</th>
    </tr>
    <tr>
      <th class="cellC">1949年</th>
      <td class="align_l linebottomblue">6月15日　御殿場会議　国際基督教大学創立</td>
    </tr>
    <tr class="zebra">
      <th class="cellC">1952年</th>
      <td class="align_l linebottomblue">語学研究所開設
        <br> 4月29日　献学式挙行</td>
    </tr>
  </tbody>
</table>

<table class="mod-table">
<tr>
<th>テーブル見出し</th>
<td>テーブル内容</td>
</tr>
<tr>
<th>テーブル見出し</th>
<td>テーブル内容</td>
</tr>
</table>

<table class="mod-table-half">
<tr>
<th>半サイズ<br>テーブル見出し</th>
<td>半サイズ<br>テーブル内容</td>
</tr>
<tr>
<th>半サイズ<br>テーブル見出し</th>
<td>半サイズ<br>テーブル内容</td>
</tr>
</table>
</div>
```
*/
.tablewrap {
  overflow-x: auto;
}

@media screen and (max-width: 768px) {
  .tablewrap {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
  }
}

.l-main-inner .tableSet,
.l-main-inner .tableSet2,
.l-main-inner .mod-table,
.l-main-inner .mod-table-half,
.l-main-center .tableSet,
.l-main-center .tableSet2,
.l-main-center .mod-table,
.l-main-center .mod-table-half {
  table-layout: auto;
  border: none;
}

.l-main-inner .tableSet th,
.l-main-inner .tableSet td,
.l-main-inner .tableSet2 th,
.l-main-inner .tableSet2 td,
.l-main-inner .mod-table th,
.l-main-inner .mod-table td,
.l-main-inner .mod-table-half th,
.l-main-inner .mod-table-half td,
.l-main-center .tableSet th,
.l-main-center .tableSet td,
.l-main-center .tableSet2 th,
.l-main-center .tableSet2 td,
.l-main-center .mod-table th,
.l-main-center .mod-table td,
.l-main-center .mod-table-half th,
.l-main-center .mod-table-half td {
  border-color: #ccc;
}

.l-main-inner .tableSet th,
.l-main-inner .tableSet2 th,
.l-main-inner .mod-table th,
.l-main-inner .mod-table-half th,
.l-main-center .tableSet th,
.l-main-center .tableSet2 th,
.l-main-center .mod-table th,
.l-main-center .mod-table-half th {
  width: auto;
  background: #eee;
  color: #000;
}

@media screen and (max-width: 768px) {
  .l-main-inner .tableSet,
  .l-main-inner .tableSet2,
  .l-main-inner .mod-table,
  .l-main-inner .mod-table-half,
  .l-main-center .tableSet,
  .l-main-center .tableSet2,
  .l-main-center .mod-table,
  .l-main-center .mod-table-half {
    display: table;
  }

  .l-main-inner .tableSet th,
  .l-main-inner .tableSet td,
  .l-main-inner .tableSet2 th,
  .l-main-inner .tableSet2 td,
  .l-main-inner .mod-table th,
  .l-main-inner .mod-table td,
  .l-main-inner .mod-table-half th,
  .l-main-inner .mod-table-half td,
  .l-main-center .tableSet th,
  .l-main-center .tableSet td,
  .l-main-center .tableSet2 th,
  .l-main-center .tableSet2 td,
  .l-main-center .mod-table th,
  .l-main-center .mod-table td,
  .l-main-center .mod-table-half th,
  .l-main-center .mod-table-half td {
    display: table-cell;
  }
}

.l-main-inner .mod-table-half,
.l-main-center .mod-table-half {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .l-main-inner .mod-table-half,
  .l-main-center .mod-table-half {
    width: 100%;
  }
}

/*
#styleguide
スマホでtableが縦に並ぶパターン（左見出し）
colspan/rowspan使用不可・2列での使用を想定

```
<div class="l-main-inner">
<table class="mod-table-sp-row">
<tr>
<th>テーブル見出し</th>
<td>テーブル内容</td>
</tr>
<tr>
<th>テーブル見出し</th>
<td>テーブル内容</td>
</tr>
</table>
</div>
```
*/
@media screen and (max-width: 768px) {
  .l-main-inner table.mod-table-sp-row,
  .l-main-center table.mod-table-sp-row {
    border-bottom: 1px solid #ccc;
  }

  .l-main-inner table.mod-table-sp-row tbody,
  .l-main-inner table.mod-table-sp-row tr,
  .l-main-center table.mod-table-sp-row tbody,
  .l-main-center table.mod-table-sp-row tr {
    display: block;
    width: 100%;
  }

  .l-main-inner table.mod-table-sp-row th,
  .l-main-center table.mod-table-sp-row th {
    min-width: none;
    border-bottom: none;
    text-align: left;
  }

  .l-main-inner table.mod-table-sp-row td,
  .l-main-center table.mod-table-sp-row td {
    width: 100%;
    padding: 10px;
    border-bottom: none;
    text-align: left;
  }
}

/*
#styleguide
スマホでtableが縦に並ぶパターン（上見出し）
colspan/rowspan使用不可・2列での使用を想定

```
<div class="l-main-inner">
<table class="mod-table-sp-col js-table-sp-col">
<tr>
<th>テーブル見出し1</th>
<th>テーブル見出し2</th>
</tr>
<tr>
<td>テーブル内容</td>
<td>テーブル内容</td>
</tr>
<tr>
<td>テーブル内容</td>
<td>テーブル内容</td>
</tr>
<tr>
<td>テーブル内容</td>
<td>テーブル内容</td>
</tr>
</table>
</div>
```
*/
.l-main-inner table.mod-table-sp-col th,
.l-main-center table.mod-table-sp-col th {
  width: auto;
  padding: 10px;
}

.l-main-inner table.mod-table-sp-col th.mod-table-sp-col-th,
.l-main-center table.mod-table-sp-col th.mod-table-sp-col-th {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-main-inner table.mod-table-sp-col,
  .l-main-center table.mod-table-sp-col {
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc;
  }

  .l-main-inner table.mod-table-sp-col tbody,
  .l-main-inner table.mod-table-sp-col tr,
  .l-main-center table.mod-table-sp-col tbody,
  .l-main-center table.mod-table-sp-col tr {
    display: block;
    width: 100%;
  }

  .l-main-inner table.mod-table-sp-col th,
  .l-main-center table.mod-table-sp-col th {
    display: none;
  }

  .l-main-inner table.mod-table-sp-col th.mod-table-sp-col-th,
  .l-main-center table.mod-table-sp-col th.mod-table-sp-col-th {
    display: block;
    border-bottom: none;
  }

  .l-main-inner table.mod-table-sp-col td,
  .l-main-center table.mod-table-sp-col td {
    width: 100%;
    padding: 10px;
    border-bottom: none;
    text-align: left;
  }
}

/*
#styleguide
.mod-table-simple
シンプルテーブル（枠なし）

.th-nowrap を付与すると、th が自動改行しなくなります。
```
<div class="l-main-inner">
<table class="mod-table-simple">
<tr>
<th>テーブル見出し</th>
<td>テーブル内容</td>
</tr>
<tr>
<th>テーブル見出し</th>
<td>テーブル内容</td>
</tr>
</table>
</div>
```
*/
.l-main-inner .mod-table-simple,
.l-main-center .mod-table-simple {
  table-layout: auto;
  width: 100%;
}

.l-main-inner .mod-table-simple th,
.l-main-center .mod-table-simple th {
  width: auto;
  padding: 2px 0;
  background: none;
  box-shadow: none;
  font-family: 'Public Sans', 'Noto Sans', 'Noto Sans CJK JP', 'NotoSansCJKjp-Jxck', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
  font-weight: normal;
}

.l-main-inner .mod-table-simple td,
.l-main-center .mod-table-simple td {
  padding: 2px 0 2px 40px;
  border: none;
}

.l-main-inner .mod-table-simple.th-nowrap th,
.l-main-center .mod-table-simple.th-nowrap th {
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .l-main-inner .mod-table-simple,
  .l-main-center .mod-table-simple {
    display: table;
  }

  .l-main-inner .mod-table-simple th,
  .l-main-inner .mod-table-simple td,
  .l-main-center .mod-table-simple th,
  .l-main-center .mod-table-simple td {
    display: table-cell;
  }
}

/*
#colors

@primary #005abb
@secondary #aa55cc
@primary-text #cccccc
*/
/*
#styleguide
.mod-box（旧.column_box）

```
<div class="l-main-inner">
<div class="mod-box">
<ul>
<li>この入学試験問題（総合教養の講義および英語リスニングの音声を含む）の全体、または一部をみだりに複写または複製して使用すること、および本学の許可なく刊行物等にすることはご遠慮ください。</li>
<li>解答についてのご質問には一切お答えできません。</li>
</ul>
<h3>「献学」に込められた意味　h3タイトル 24px #000000</h3>
<p>第2 次世界大戦への深い反省から、平和で自由な民主日本を築き上げ国際社会に貢献する人材を育成する新しい大学を設立したいという希望のもと、北米と日本のキ リスト者が大規模な募金運動を展開した。日本でもそのヴィジョンに賛同した2 万人を大きく上回る人々（95%が非キリスト者）からの募金により購入した校地に本学は創立された。</p>
</div>
</div>
```
*/
.l-main-inner .mod-box,
.l-main-inner .column_box,
.l-main-center .mod-box,
.l-main-center .column_box {
  margin: 35px 0 50px;
  padding: 30px 38px;
  background: #eee;
}

.l-main-inner .mod-box > *:first-child,
.l-main-inner .column_box > *:first-child,
.l-main-center .mod-box > *:first-child,
.l-main-center .column_box > *:first-child {
  margin-top: 0;
}

.l-main-inner .mod-box > *:last-child,
.l-main-inner .column_box > *:last-child,
.l-main-center .mod-box > *:last-child,
.l-main-center .column_box > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .l-main-inner .mod-box,
  .l-main-inner .column_box,
  .l-main-center .mod-box,
  .l-main-center .column_box {
    padding: 15px 20px;
  }
}

/*
#colors

@primary #005abb
@secondary #aa55cc
@primary-text #cccccc
*/
/*
#styleguide
.mod-box-enclose

引用文などを囲む

```
<div class="l-main-inner">

<div class="mod-box-enclose">
<div class="mod-box-enclose-inner">
<p>テキストテキストテキストテキスト<br>
テキストテキストテキストテキストテキストテキスト<br>
テキストテキストテキストテキスト。</p>
</div>
</div>

</div>
```
*/
.mod-box-enclose {
  display: flex;
  justify-content: center;
  margin: 46px 0 0;
}

.mod-box-enclose-inner {
  display: block;
  position: relative;
  padding: 30px 40px;
  text-align: center;
}

.mod-box-enclose-inner:before,
.mod-box-enclose-inner:after {
  content: '';
  display: block;
  position: absolute;
  width: 100px;
  height: 100px;
}

.mod-box-enclose-inner:before {
  top: 0;
  left: 0;
  border-top: 12px solid #ccc;
  border-left: 12px solid #ccc;
}

.mod-box-enclose-inner:after {
  right: 0;
  bottom: 0;
  border-right: 12px solid #ccc;
  border-bottom: 12px solid #ccc;
}

.mod-box-enclose-inner *:first-child {
  margin-top: 0 !important;
}

.mod-box-enclose-inner *:last-child {
  margin-bottom: 0 !important;
}

.mod-box-enclose-inner p.message {
  /*font-size: 2rem;*/
  font-weight: bold;
}

/*
#styleguide
.mod-box-enclose2

引用文などを囲む その２

```
<div class="l-main-inner">

<div class="mod-box-enclose2">
<div class="mod-box-enclose2-inner">
<h2>見出し見出し</h2>
<p>テキストテキストテキストテキストテキストテキスト。テキストテキストテキストテキスト。テキストテキストテキストテキストテキストテキストテキストテキスト。テキストテキストテキストテキストテキスト。</p>
</div>
</div>

</div>
```
*/
.mod-box-enclose2 {
  width: 100%;
}

.mod-box-enclose2-inner {
  padding: 0 45px;
  border-right: 12px solid #ccc;
  border-left: 12px solid #ccc;
}

.mod-box-enclose2-inner *:first-child {
  margin-top: 0;
}

.mod-box-enclose2-inner *:last-child {
  margin-bottom: 0;
}

.mod-box-enclose2-inner .l-grid:last-child > div {
  margin-bottom: 0;
}

/*
#colors

@primary #005abb
@secondary #aa55cc
@primary-text #cccccc
*/
/*
#styleguide
画像配置

基本、.wrap-img で囲み、imgタグはfigureタグで囲む。
キャプションを入れる場合は、 figcaptionタグを使用する。
２カラムの場合は、.wrap-img に .column2 を付与。
３カラムの場合は、.wrap-img に .column3 を付与。
第２階層下部で使用するインスタ用？画像４枚セットの場合は、.l-main-center-large で展開。.wrap-img に .column4 を付与。

```
<div class="l-main-inner">
<h3>通常画像</h3>
<p>文章中に入ってくる画像文章中に入ってくる画像文章中に入ってくる画像文章中に入ってくる画像<br>
<img src="http://placehold.jp/270x202.png" alt=""><br>
文章中に入ってくる画像文章中に入ってくる画像文章中に入ってくる画像文章中に入ってくる画像</p>


<h3>画像１カラム</h3>
<figure>
  <img src="http://placehold.jp/860x300.png" alt="">
</figure>


<h3>画像２カラム</h3>
<div class="wrap-img column2">
<figure>
<img src="http://placehold.jp/400x300.png" alt="">
</figure>
<figure>
  <img src="http://placehold.jp/800x600.png" alt="">
</figure>
<figure>
<img src="http://placehold.jp/400x225.png" alt="">
</figure>
<figure>
  <img src="http://placehold.jp/800x450.png" alt="">
</figure>
</div>


<h3>画像３カラム</h3>
<div class="wrap-img column3">
<figure>
  <img src="http://placehold.jp/270x270.png" alt="">
</figure>
<figure>
  <img src="http://placehold.jp/270x270.png" alt="">
</figure>
<figure>
  <img src="http://placehold.jp/540x540.png" alt="">
</figure>
<figure>
  <img src="http://placehold.jp/270x202.png" alt="">
</figure>
<figure>
  <img src="http://placehold.jp/270x202.png" alt="">
</figure>
<figure>
  <img src="http://placehold.jp/270x202.png" alt="">
</figure>
</div>
</div>

<div class="l-main-center-large">
<h3>インスタ用？画像</h3>
<div class="wrap-img column4">
<figure>
  <img src="http://placehold.jp/280x280.png" alt="">
</figure>
<figure>
  <img src="http://placehold.jp/280x280.png" alt="">
</figure>
<figure>
  <img src="http://placehold.jp/280x280.png" alt="">
</figure>
<figure>
  <img src="http://placehold.jp/280x280.png" alt="">
</figure>
</div>
</div>

```
*/
.l-main-inner img,
.l-main-center img,
.l-main-center-large img {
  max-width: 100%;
  margin: 15px 0;
  vertical-align: middle;
}

.l-main-inner figure,
.l-main-center figure,
.l-main-center-large figure {
  margin: 30px 0;
}

.l-main-inner figure img,
.l-main-center figure img,
.l-main-center-large figure img {
  margin: 0;
}

.l-main-inner figure.border img,
.l-main-center figure.border img,
.l-main-center-large figure.border img {
  border: 1px solid #eee;
}

.l-main-inner figcaption,
.l-main-center figcaption,
.l-main-center-large figcaption {
  margin: 12px 0;
  /*font-size: 1.4rem;*/
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .l-main-inner figure,
  .l-main-center figure,
  .l-main-center-large figure {
    text-align: center;
  }
}

h2 + .wrap-img,
h3 + .wrap-img,
h4 + .wrap-img {
  margin-top: -30px;
}

.wrap-img.column2,
.wrap-img.column3,
.wrap-img.column5 {
  display: flex;
  flex-wrap: wrap;
}

.wrap-img.column2 figure {
  width: 400px;
  margin-left: 60px;
}

.wrap-img.column2 figure:nth-child(2n + 1) {
  margin-left: 0;
}

.wrap-img.column2 figure:last-child,
.wrap-img.column2 figure:nth-last-child(2) {
  margin-bottom: 0;
}

.wrap-img.column3 figure {
  width: 270px;
  margin-left: 25px;
}

.wrap-img.column3 figure:nth-child(3n + 1) {
  margin-left: 0;
}

.wrap-img.column3 figure:last-child,
.wrap-img.column3 figure:nth-last-child(2),
.wrap-img.column3 figure:nth-last-child(3) {
  margin-bottom: 0;
}

.wrap-img.column4 {
  display: flex;
  justify-content: space-between;
}

.wrap-img.column4 figure {
  margin-bottom: 0;
}

.wrap-img.column5 figure {
  width: 385px;
  margin-left: 20px;
  margin-bottom: 0;
}

.wrap-img.column5 figure:nth-child(3n + 1) {
  margin-left: 0;
}

.wrap-img.column5 figure:last-child,
.wrap-img.column5 figure:nth-last-child(2),
.wrap-img.column5 figure:nth-last-child(3) {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  h2 + .wrap-img,
  h3 + .wrap-img,
  h4 + .wrap-img {
    margin-top: -15px;
  }

  .wrap-img.column2,
  .wrap-img.column3 {
    display: block;
  }

  .wrap-img.column2 figure,
  .wrap-img.column3 figure {
    width: 100%;
    margin-left: 0;
  }

  .wrap-img.column4 figure {
    margin-left: 2%;
  }

  .wrap-img.column4 figure:first-child {
    margin-left: 0;
  }

  .wrap-img.column5 figure {
    width: 100%;
    margin-left: auto!important;
    margin-right:auto;
    max-width: 450px;
  }
}

img.book-shadow {
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.5);
}

/*
#styleguide
画像配置：PC回り込み、SP縦並び

画像サイズ：-column1 から 12

```
<div class="l-main-inner">

<h3>画像回り込み右 / 画像サイズ：設定なし（画像サイズでの表示）</h3>
<div class="float-img">
<figure class="float-img-right">
<img src="http://placehold.jp/400x300.png" alt="">
</figure>
<p>初海外、そして初めての寮暮らしで、出発前は不安しかありませんでしたが、しっかりとしたサポートがあったので無事に研修を終えることができました。私のように海外に行ったことがない人でも、このプログラムでは充実した時間を過ごすことができると思います。 SOASには魅力的な授業の選択肢がいくつもあり、私は、前半3週間は国際関係、後半3週間は映画研究を選択しました。１年生の夏休み中に、英語で興味ある科目を受講できたことは非常に有意義でした。授業は1クラス10名ほどの少人数制で、ディスカッションやディベー卜の時間が毎回設けられ、国籍の異なるクラスメイトとの意見交換を通してさまざまな国の政治や教育の内情を知ることができとても楽しかったです。前半の国際関係の授業では、これまで学んできたことを日本以外の視点から深く学ぶことができました。また、イギリスがEUの離脱を決定した時期だったので、ヨーロッパの先行きについて、クラスでディスカッションすることができたことも視野が広がるきっかけとなりました。後半の映画研究は、学問としての予備知識がなく語彙や理論などは聞いたことのないものばかりでしたが、映画専攻のSOAS学生に会ったり、普段何気なく観ている映画の表現手法に焦点を当て学んだりしたことで、映画への興味がより深まりました。
授業以外では、寮生活も思い出深いです。フランスからの学生と互いの国の英語教育について話し込んだり、社会人学生からはさまざまなアドバイスをもらったりと、普段会うことのないような方々との出会いがあり、寮ならではの経験ができました。また、人種、言語、国籍がさまざまな人たちが暮らすロンドンでの生活はとても刺激的でした。 このプログラムに参加し、英語を使って仕事をしたいという思いがより強まったほか、語学力だけでなくコミュニケーション能力や一般常識の重要さも痛感しました。発言したくても始めはなかなか手を挙げられなかったこと、クラスメイトとの日常挨拶がとっさに出てこなかったこと、小銭の種類が分からずに会計で戸惑ったことなど、実際に英語圏に身を置いてみないとわからない経験ばかりでした。また、SOASで出会った学生は多様で、自分の視野がいかに狭かったかに気づくことができ、とても有意義な6週間でした。</p>
</div>

<h3>画像回り込み左 / 画像サイズ：-column4</h3>
<div class="float-img">
<figure class="float-img-left float-img-column4">
<img src="http://placehold.jp/400x300.png" alt="">
</figure>
<p>初海外、そして初めての寮暮らしで、出発前は不安しかありませんでしたが、しっかりとしたサポートがあったので無事に研修を終えることができました。私のように海外に行ったことがない人でも、このプログラムでは充実した時間を過ごすことができると思います。 SOASには魅力的な授業の選択肢がいくつもあり、私は、前半3週間は国際関係、後半3週間は映画研究を選択しました。１年生の夏休み中に、英語で興味ある科目を受講できたことは非常に有意義でした。授業は1クラス10名ほどの少人数制で、ディスカッションやディベー卜の時間が毎回設けられ、国籍の異なるクラスメイトとの意見交換を通してさまざまな国の政治や教育の内情を知ることができとても楽しかったです。前半の国際関係の授業では、これまで学んできたことを日本以外の視点から深く学ぶことができました。また、イギリスがEUの離脱を決定した時期だったので、ヨーロッパの先行きについて、クラスでディスカッションすることができたことも視野が広がるきっかけとなりました。後半の映画研究は、学問としての予備知識がなく語彙や理論などは聞いたことのないものばかりでしたが、映画専攻のSOAS学生に会ったり、普段何気なく観ている映画の表現手法に焦点を当て学んだりしたことで、映画への興味がより深まりました。
授業以外では、寮生活も思い出深いです。フランスからの学生と互いの国の英語教育について話し込んだり、社会人学生からはさまざまなアドバイスをもらったりと、普段会うことのないような方々との出会いがあり、寮ならではの経験ができました。また、人種、言語、国籍がさまざまな人たちが暮らすロンドンでの生活はとても刺激的でした。 このプログラムに参加し、英語を使って仕事をしたいという思いがより強まったほか、語学力だけでなくコミュニケーション能力や一般常識の重要さも痛感しました。発言したくても始めはなかなか手を挙げられなかったこと、クラスメイトとの日常挨拶がとっさに出てこなかったこと、小銭の種類が分からずに会計で戸惑ったことなど、実際に英語圏に身を置いてみないとわからない経験ばかりでした。また、SOASで出会った学生は多様で、自分の視野がいかに狭かったかに気づくことができ、とても有意義な6週間でした。</p>
</div>

<h3>画像サイズ：-column3</h3>
<div class="float-img">
<figure class="float-img-left float-img-column3">
<img src="http://placehold.jp/400x300.png" alt="">
</figure>
</div>

<h3>画像サイズ：-column6</h3>
<div class="float-img">
<figure class="float-img-left float-img-column6">
<img src="http://placehold.jp/400x300.png" alt="">
</figure>
</div>

</div>

```
*/
@media print, screen and (min-width: 769px) {
  .l-main-inner .float-img,
  .l-main-center .float-img,
  .l-main-center-large .float-img {
    margin-top: 12px;
  }

  .l-main-inner .float-img:after,
  .l-main-center .float-img:after,
  .l-main-center-large .float-img:after {
    content: '';
    display: block;
    clear: both;
  }

  .l-main-inner .float-img-right,
  .l-main-center .float-img-right,
  .l-main-center-large .float-img-right {
    float: right;
    margin-top: 8px !important;
    margin-bottom: 20px !important;
    margin-left: 20px !important;
  }

  .l-main-inner .float-img-left,
  .l-main-center .float-img-left,
  .l-main-center-large .float-img-left {
    float: left;
    margin-top: 8px !important;
    margin-right: 20px !important;
    margin-bottom: 20px !important;
  }

  .l-main-inner .float-img-column1,
  .l-main-center .float-img-column1,
  .l-main-center-large .float-img-column1 {
    max-width: calc(8.33333% - 20px);
  }

  .l-main-inner .float-img-column2,
  .l-main-center .float-img-column2,
  .l-main-center-large .float-img-column2 {
    max-width: calc(16.66667% - 20px);
  }

  .l-main-inner .float-img-column3,
  .l-main-center .float-img-column3,
  .l-main-center-large .float-img-column3 {
    max-width: calc(25% - 20px);
  }

  .l-main-inner .float-img-column4,
  .l-main-center .float-img-column4,
  .l-main-center-large .float-img-column4 {
    max-width: calc(33.33333% - 20px);
  }

  .l-main-inner .float-img-column5,
  .l-main-center .float-img-column5,
  .l-main-center-large .float-img-column5 {
    max-width: calc(41.66667% - 20px);
  }

  .l-main-inner .float-img-column6,
  .l-main-center .float-img-column6,
  .l-main-center-large .float-img-column6 {
    max-width: calc(50% - 20px);
  }

  .l-main-inner .float-img-column7,
  .l-main-center .float-img-column7,
  .l-main-center-large .float-img-column7 {
    max-width: calc(58.33333% - 20px);
  }

  .l-main-inner .float-img-column8,
  .l-main-center .float-img-column8,
  .l-main-center-large .float-img-column8 {
    max-width: calc(66.66667% - 20px);
  }

  .l-main-inner .float-img-column9,
  .l-main-center .float-img-column9,
  .l-main-center-large .float-img-column9 {
    max-width: calc(75% - 20px);
  }

  .l-main-inner .float-img-column10,
  .l-main-center .float-img-column10,
  .l-main-center-large .float-img-column10 {
    max-width: calc(83.33333% - 20px);
  }

  .l-main-inner .float-img-column11,
  .l-main-center .float-img-column11,
  .l-main-center-large .float-img-column11 {
    max-width: calc(91.66667% - 20px);
  }

  .l-main-inner .float-img-column12,
  .l-main-center .float-img-column12,
  .l-main-center-large .float-img-column12 {
    max-width: calc(100% - 20px);
  }
}

/*
#colors

@primary #005abb
@secondary #aa55cc
@primary-text #cccccc
*/
/*
#styleguide
動画配置

```
<div class="l-main-inner">

<div class="wrap-youtube">
<iframe width="854" height="480" src="https://www.youtube.com/embed/bjmBJ1Fl0cs" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>

</div>
```
*/
.wrap-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.wrap-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
