@charset "UTF-8";
/*
Theme Name: NPO Kasai International Association
Theme URI: https://kasai-kokusai.or.jp/
Description: 加西市国際交流協会 サイトテーマ
Version: 1.0
*/

/* css reset
---------------------------------------------*/

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}

/*
nav ul {
    list-style:none;
}
*/

ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

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

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* end css reset
---------------------------------------------*/


/* グーテンベルクの設定
---------------------------------------------*/


/* end グーテンベルクの設定
---------------------------------------------*/



/* 基本設定
---------------------------------------------*/

html {
  /*font-size: 62.5%;*/ /* ≒10px */
  /*font-family: var(--fontgothic);*/
  /*font-family: "BIZ UDPGothic", sans-serif;*/
  /*font-weight: 400;*/
  font-style: normal;
}


body {
  line-height: 1.3;
  background: url(./img/bg001.png) no-repeat top center;
  background-size: contain;
}

/* コンテンツ量が少ない時だけフッターを下部に固定 */
.wrapper--all {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
}


p {
  color: #000;
  font-size: var(--f5);
  line-height: 1.5;
  margin-bottom: 10px;
  font-family: var(--jp-lang);
}

a {
  color: #484848;
  text-decoration: underline;
  transition: .3s;
}

a:hover {
  opacity: .9;
  text-decoration: none;
}

.txt--center {
  text-align: center;
}

/*画像が縦長になるのを回避*/
img {
  height: auto;
  width: auto;
  max-width: 100%;
  vertical-align: bottom;
}

/* 変数 */
:root {
    /*フォントサイズに関する参考サイト：https://type-scale.com*/
  --f1: 3.125em; /* 50px */
  --f2: 2.0625em; /* 33px */
  --f3: 1.75em; /* 28px */
  /*--f4: 1.625em; /* 26px */
  --f4: 1.5em; /* 24px */
  --f5: 1em;    /* 16px */
  --f6: 0.875em;  /* 14px */

  --basecolor: #58AA3D; /* 基本色 */
  --secondcolor: #FDF9EB;
  --accentcolor: #0981DD;
  --thirdcolor: #4B4B4B;
  --gradient: linear-gradient( to right, ); /* 参考サイト：https://gradienthunt.com */

  /* フォントの指定 */
  --fontmincho: 'Hiragino Mincho', serif;
  --fontgothic: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --en-lang: "Space Mono", sans-serif;
  --jp-lang: "Zen Kaku Gothic New", sans-serif;
}
/* スクリーンリーダー用のテキスト */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* アニメーション */
@keyframes anim-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes movecloud01 {
  0% {
    translate: 1px 4px;
  }
  100% {
    translate: -2px -4px;
  }
}

@keyframes movecloud02 {
  0% {
    translate: -1px -4px;
  }
  100% {
    translate: 1px 4px;
  }
}

/* fadeIn */
.show-fade-in {
  opacity: 0;
}

.fadeIn {
  animation-name: anim-fadein;
  animation-duration: 1s;
  animation-delay: .2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

/* fadeUp */
.fadeInUp {
  animation-name: fadeUpAnime;
  animation-duration: .8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

/* ふわふわした動き */
.move-cloud01 {
  animation: movecloud01 5s ease-in-out alternate infinite;
}

.move-cloud02 {
  animation: movecloud02 5s ease-in-out alternate infinite;
}



/* end 基本設定
---------------------------------------------*/


/* レイアウト
---------------------------------------------*/


/* ヘッダー
--------------------------------------*/
.toggle-btn {
  display: none;
}

.header--wrap {
  width: 100vw;
}

.header__upper--wrap {
  width: 100vw;
  height: 85px;
  background-color: rgba(255, 255, 255, .5);
  backdrop-filter: blur(20px);
}

.header__upper {
  width: 90vw;
  max-width: 1500px;
  min-width: 1150px;
  margin: 0 auto 20px;
  padding-top: 5px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sp__site-ttl {
  display: none;
}

.site-ttl {
  width: 360px;
}

.site-ttl a,
.sp__site-ttl a {
  text-decoration: none;
}

.upper-nav {
  min-width: 710px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 15px;
}

.upper-nav li {
  font-weight: bold;
  padding: 0 10px;
  text-align: center;
  border-right: dotted 1px #116572;
}

.upper-nav li:last-child {
  border-right: none;
}

.upper-nav li a {
  font-family: var(--jp-lang);
  font-size: var(--f5);
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.upper-nav li a:hover {
  color: #17BEDE;
}

.nav-icon {
  display: block;
  width: 32px;
  height: 32px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  transition: .3s;
}

.nav-icon img {
  height: auto;
  left: 0;
  position: absolute;
  width: 100%;
}

.header__lower {
  width: 90vw;
  max-width: 1500px;
  min-width: 1150px;
  margin: 5px auto 20px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.lower-nav--wrap {
  width: 740px;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.lower-nav {
  background-color: #00C3E5;
  width: 280px;
  border-radius: 8px;
  padding: 0 15px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.lower-nav .nav-icon {
  margin-right: 5px;
  margin-top: 4px;
}

.lower-nav li a {
  font-family: var(--jp-lang);
  font-size: var(--f5);
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  line-height: 40px;
}

.lower-nav li a:hover {
  color: #1B4EE9;
}

.btn-contact a {
  display: block;
  margin-left: 10px;
  border-radius: 8px;
  font-family: var(--jp-lang);
  font-size: var(--f5);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  background-color: #06B902;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
}

.btn-contact a:hover {
  color: #035600;
  background-color: #6DCE6B;
}

/* 2枚目の画像は最初透明 */
.nav-icon img:last-of-type {
  opacity: 0;
  transition: opacity .3s;
}

.upper-nav li:hover .nav-icon img,
.lower-nav li:hover .nav-icon img {
  opacity: 1;
}

.upper-nav a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  bottom: -2px;       /*アンダーラインが位置する、各リストの下端からの高さ*/
  visibility: hidden;
  background: #17BEDE;
  opacity: 0;
  transition: .3s;
  }

.upper-nav a:hover::after,
.lower-nav a:hover::after {
  visibility: visible; /*ホバー後、アンダーラインを可視化する*/
  opacity: 1;
  transition: .3s;
  }


/* end ヘッダー
--------------------------------------*/


/* ページ設定
--------------------------------------*/

/* サイトの幅指定 */
.main__container {
  width: 950px;
  padding: 0;
  margin:  0 auto 50px;
}

.container__middle {
  width: 1000px;
  margin:  40px auto 100px;
}

.container__small {
  width: 808px;
  margin:  40px auto 100px;
}

.container__blog {
  max-width: 1100px;
  padding: 0 2vw;
  margin:  50px auto 100px;
  display: flex;
  justify-content: space-between;
}

.blog__article {
  width: 67%;
  max-width: 820px;
}

.blog__sidebar {
  width: 25%;
  max-width: 320px;
}

/* / サイトの幅指定 */


/* ページタイトル */
.page__ttl--wrap {
  width: 100%;
  margin: 70px auto 100px;
  text-align: center;
}

.page__ttl--en {
  font-family: var(--en-lang);
  font-size: 2.8125em;
  font-style: italic;
  color: var(--basecolor);
  line-height: 1.2;
}

.page__ttl {
  font-family: var(--jp-lang);
  font-size: 1.375em;
  font-weight: bold;
  color: var(--thirdcolor);
  line-height: 1.2;
}

/* / ページタイトル */


/* ボタンのホバーアニメーション */
.btn01 {
    position: relative;
    display: block;
    width: 180px;
    height: 45px;
    line-height: 45px;
    /*margin: 40px auto;*/
    margin-top: 20px;
    margin-bottom: 20px;
    text-align:  center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    border: 1px solid var(--basecolor);
    border-radius: 50px;
    transition: .2s;
    /*box-shadow: 2px 2px 5px 0px rgba(200,200,200,1);*/
    background-color: var(--basecolor);
    z-index: 1;
}

.btn01:hover {
    color: var(--basecolor);
    background: #fff;
}

.btn01 a {
  font-family: var(--jp-lang);
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  z-index: 15;
}

.btn01 a:hover {
  color: var(--basecolor);
}

.btn01 a span {
  display: inline-block;
  transition: .3s;
}

.btn01 a:hover span {
  transform: translateX(-15px);
}

.btn01 a::after {
  content: "";
  color: var(--basecolor);
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--basecolor);
  border-right: 2px solid var(--basecolor);
  rotate: 45deg;
  transition: .5s;
  z-index: 11;
}

.btn01 a::before {
  content: "";
  color: var(--basecolor);
  position: absolute;
  top: calc(50%);
  right: 20px;
  width: 12px;
  height: 2px;
  background: var(--basecolor);
  transition: .5s;
  z-index: 12;
}

.btn01 a:hover::after,
.btn01 a:hover::before {
  right: 13px;
}

/*ボタンのホバーアニメーション*/

.btn--center {
  margin: 40px auto;
}

.btn--right {
  margin: 20px 0 20px auto;
}

.btn-wide {
  width: 350px;
}


.btn001--small {
  font-size: var(--f4);
  width: 396px;
  margin-top: 10px;
}

.btn001--small a {
  width: 190px;
  font-size: .93em;
  margin: 30px auto;
  width: 11em;
  padding: 0;
  border-radius: 10px;
  padding: 1em 0;
}

.btn001--big {
}

.btn001--big a {
  margin: 30px auto;
  width: 20em;
  padding: 1.5em 0;
  border-radius: 15px;
  font-size: var(--f4);
}

.btn001--main-visual {
  margin: 30px 0 0 20px;
}

.btn001--main-visual a {
  font-size: .93em;
  margin: 0;
  width: 10em;
  padding: .6em .5em;
}

.post p.btn__reservation--big {
  font-size: var(--f3) !important;
  margin: 10px auto !important;
}

/* / ボタンの設定 */

/* 文字の設定 */
.main__container p {
  font-family: var(--jp-lang);
}

.page__heading {
  font-family: var(--jp-lang);
  font-size: var(--f4);
  font-weight: bold;
  color: var(--accentcolor);
  text-align: center;
  margin-bottom: 60px;
}

/* / 文字の設定 */

.w50 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.w60 {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.w70 {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.table-style01,
.table-style02,
.table-style03 {
  font-family: var(--jp-lang);
  font-size: var(--f5);
  margin-top: 30px;
  margin-bottom: 30px;
}

.table-style01 table,
.table-style02 table,
.table-style03 table {
  width: 100%;
}

.table-style01 th,
.table-style01 td,
.table-style03 th,
.table-style03 td {
  font-family: var(--jp-lang);
  border-bottom: dotted 4px #58AA3D;
  padding: 1em 0;
}

.table-style01 tr td:first-child {
  color: var(--basecolor);
  width: 28%;
  font-weight: bold;
}

.table-style03 tr td:first-child {
  color: var(--basecolor);
  font-weight: bold;
}

.table-style01 th,
.table-style03 th {
  font-weight: normal;
  text-align: left;
}

.table-style02 table {
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  width: 100%;
}

.table-style02 th,
.table-style02 td {
  font-family: var(--m-plus-1);
  border-bottom: solid 1px #000;
  border-left: solid 1px #000;
  padding: 1em;
  /*text-align: center;*/
}

.table-style02 th {
  background-color: #ECECEC;
}

.has-text-align-right {
  text-align: right;
}

.has-text-align-left {
  text-align: left;
}

.has-text-align-center {
  text-align: center;
}

.is-style-stripes tr:nth-child(odd) {
  background-color: #f4f4f4;
}

/* / ページ設定
--------------------------------------*/


/* トップページ
--------------------------------------*/

/* メインビジュアル */
.main-img--wrap {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  max-width: 1500px;
  min-width: 1000px;
  min-height: 600px;
  padding-left: 30px;
  padding-right: 30px;
  height: 80vh;
  margin: 20px auto 50px;
  position: relative;
}

.main-img {
  min-height: 600px;
  height: 75vh;
  width: 50%;
  display: grid;
  place-items: flex-end;
  text-align: center;
}

.main-img-mask {
  height: 100%;
  /*width: 60%;
  min-width: 655px;*/
  margin-right: 4%;
  mask-image: url("./img/clover-shape.svg");/*マスク用画像*/
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: auto;
  -webkit-mask-image: url("./img/clover-shape.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: auto;
}

.main-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.main-copy {
  opacity: 0;
  width: 35%;
  /*margin-top: 15vh;*/
  min-height: 600px;
  display: grid;
  place-items: center;
}

.main-copy img {
  margin-top: -80px;
}

.world-greeting {
  opacity: 0;
  position: absolute;
}

.w-g01 {
  width: 77px;
  right: 40%;
  top: 8%;
}

.w-g02 {
  width: 40px;
  right: 30%;
  top: 8%;
}

.w-g03 {
  width: 95px;
  right: 35%;
  top: 20%;
}

.w-g04 {
  width: 53px;
  right: 25%;
  top: 15%;
}

.w-g05 {
  width: 30px;
  right: 32%;
  bottom: 25%;
}

.w-g06 {
  width: 86px;
  right: 20%;
  bottom: 25%;
}

.w-g07 {
  width: 67px;
  right: 25%;
  bottom: 15%;
}

.w-g08 {
  width: 70px;
  right: 35%;
  bottom: 15%;
}

/* / メインビジュアル */



.top__heading {
  text-align: center;
}

.top__heading p {
  font-size: var(--f1);
  color: var(--basecolor);
  font-family: var(--en-lang);
  font-style: italic;
  margin-bottom: 0;
}

.top__heading h2 {
  color: var(--thirdcolor);
  font-family: var(--jp-lang);
  font-weight: bold;
  font-size: 1.125em;
  margin-top: 0;
}

.top__ttl {
 font-size: 3.125em;
 font-family: var(--inter);
 font-weight: bold;
 text-align: center;
}

.top__event-list {
 width: 77vw;
 margin: 60px auto 40px;
}

/* イベント情報 */
.event-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.event-list li img {
  overflow: hidden;
  border-radius: 5px;
  object-fit: cover;
}

.top__event-list .event-list li {
  width: 22%;
  margin-right: 4%;
}

.top__event-list .event-list li img {
  width: 100%;
  height: 210px;
}

.top__event-list .event-list li:nth-child(4n) {
  margin-right: 0;
}

.event-date {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 5px;
  margin-bottom: 2px;
}

.event-day {
  font-size: var(--f5);
  font-family: var(--jp-lang);
  font-weight: bold;
  padding-top: 3px;
  display: inline-block;
}

.event-cate {
  font-size: var(--f5);
  font-family: var(--jp-lang);
  display: inline-block;
  border: solid 1px #000;
  line-height: 1;
  padding: .2em .5em .1em;
}

.event-list p {
  font-family: var(--jp-lang);
  font-size: var(--f5);
  font-weight: bold;
}

/* / イベント情報 */


/* ニュース */
.top__news-list--wrap {
  width: 100%;
  padding: 40px 0 30px;
}

.top__news-list {
  width: 80%;
  max-width: 1150px;
  margin: 20px auto 5px;
}

.top__news-list li {
  font-family: var(--jp-lang);
  width: 90%;
  padding: 1em 5%;
  margin-bottom: 15px;
  background-color: #F3F3F3;
  border-radius: 50px;
}

.to-news-list {
  text-align: right;
  width: 80%;
  max-width: 1150px;
  margin: 5px auto 20px;
}

.to-news-list a {
  font-family: var(--jp-lang);
  font-weight: bold;
  font-size: 1.2em;
}

.top__information--list--day {
  padding-right: 1.5em;
}

/* / ニュース */


/* 外国人の方へ */
.top__foreigner--wrap {
  min-width: 1000px;
  max-width: 1200px;
  margin: 30px auto 50px;
  position: relative;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
}

.top__foreigner {
  width: 47%;
}

.top__foreigner img {
  border-radius: 10px;
}

.top__foreigner p {
  font-family: var(--jp-lang);
}

.foreigner--ttl {
  text-align: center;
}

.foreigner--ttl p {
  font-size: 1.125em;
  color: var(--thirdcolor);
  font-family: var(--en-lang);
  font-weight: bold;
  margin-bottom: 0;
}

.foreigner--ttl h3 {
  color: var(--thirdcolor);
  font-family: var(--jp-lang);
  font-weight: bold;
  font-size: var(--f4);
  margin-top: 0;
}

/* / 外国人の方へ */


/* 語学学習 */
.top__language--wrap {
  min-width: 1000px;
  max-width: 1200px;
  margin: 30px auto 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 35px auto;
  background: #EFF1E3;
  border-radius: 40px;
}

.top__language--ttl {
  text-align: left;
  margin-bottom: 35px;
}

.top__language--ttl p {
  font-size: 2.375em;
  color: var(--basecolor);
  font-family: var(--en-lang);
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0;
}

.top__language--ttl h2 {
  color: var(--thirdcolor);
  font-family: var(--jp-lang);
  font-weight: bold;
  font-size: 1.25em;
  margin-top: 0;
}

.top__language--info {
  width: 47%;
  margin-left: 8%;
  margin-top: 5%;
}

.top__language--class--wrap {
  width: 32%;
  margin-right: 6%;
  margin-top: 5%;
}

.top__language--class--wrap p {
  font-family: var(--jp-lang);
}

.top__language--class {
  width: 80%;
  background-color: #fff;
  border-radius: 30px;
  margin-bottom: 20px;
  padding: 6% 10%;
}

.language--lesson {
  text-align: left;
  margin-bottom: 10px;
}

.language--lesson p {
  font-size: 1.125em;
  color: var(--thirdcolor);
  font-family: var(--en-lang);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0;
}

.language--lesson h2 {
  color: var(--thirdcolor);
  font-family: var(--jp-lang);
  font-size: var(--f2);
  font-weight: normal;
  margin-top: 0;
}

/* / 語学学習 */


/* 通訳・翻訳／講師派遣・出張講座 */
.top__business--wrap {
  min-width: 1000px;
  max-width: 1200px;
  margin: 30px auto 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 35px auto;
}

.top__business {
  border: solid 2px #AECB07;
  border-radius: 40px;
  width: 39%;
  padding: 4%;
}

.top__business--ttl {
  text-align: left;
  margin-bottom: 35px;
}

.top__business--ttl p {
  font-size: 2.1875em;
  color: var(--basecolor);
  font-family: var(--en-lang);
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0;
}

.top__business--ttl h2 {
  color: var(--thirdcolor);
  font-family: var(--jp-lang);
  font-weight: bold;
  font-size: 1.25em;
  margin-top: 0;
}

/* / 通訳・翻訳／講師派遣・出張講座 */


/* 食文化交流事業 */
.top__food--wrap {
  width: 100%;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 10%, rgba(249, 250, 240, 1) 10%, rgba(249, 250, 240, 1) 90%, rgba(252, 252, 252, 1) 90%);
  margin: 50px auto 70px;
}

.top__food {
  min-width: 1000px;
  max-width: 1200px;
  margin: 30px auto 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  margin: 35px auto;
}

.top__food--img {
  width: 30vw;
  min-width: 458px;
  max-width: 658px;
  height: 30vw;
  min-height: 458px;
  max-height: 658px;
  border-radius: 50%;
  overflow: hidden;
}

.top__food--info {
  width: 28vw;
  min-width: 425px;
  max-width: 580px;
  padding-left: 3%;
  margin-top: 6%;
}

.top__food--ttl {
  text-align: left;
  margin-bottom: 35px;
}

.top__food--ttl p {
  font-size: 2.1875em;
  color: var(--basecolor);
  font-family: var(--en-lang);
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0;
}

.top__food--ttl h2 {
  color: var(--thirdcolor);
  font-family: var(--jp-lang);
  font-weight: bold;
  font-size: 1.25em;
  margin-top: 0;
}

/* / 食文化交流事業 */


/* 私たちについて */
.top__about--wrap {
  width: 47vw;
  min-width: 700px;
  margin: 30px auto 60px;
  padding: 30px 4%;
  border-top: solid 1px #AECB07;
  border-bottom: solid 1px #AECB07;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top__about--info {
  width: 47%;
}

.top__about--logo {
  width: 30%;
}

.top__about--logo {
  vertical-align: top;
}

.top__heading--about {
  text-align: left;
  margin-bottom: 35px;
}

.top__heading--about p {
  font-size: 2.375em;
  color: var(--basecolor);
  font-family: var(--en-lang);
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0;
}

.top__heading--about h2 {
  color: var(--thirdcolor);
  font-family: var(--jp-lang);
  font-weight: bold;
  font-size: 1.25em;
  margin-top: 0;
}

/* / 私たちについて */


/* ニュースレター／ボランティア／会員募集）*/
.top__support--wrap {
  min-width: 1000px;
  max-width: 1300px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 60px auto;
}

.top__support {
  width: 23vw;
  min-width: 300px;
  max-width: 400px;
  height: 23vw;
  min-height: 310px;
  max-height: 380px;
  border: solid 1px #AECB07;
  background:rgba(245, 239, 191, .2);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin-left: 15px;
  margin-right: 15px;
  z-index: 1;
}

.top__heading--support {
  padding-top: 5em;
  text-align: center;
  margin-bottom: 1.5em;
}

.top__support--newsletter .top__heading--support,
.top__support--join .top__heading--support {
  padding-top: 6em;
}

.top__heading--support,
.top__heading--support .btn01 {
  position: relative;
  z-index: 10;
}

.top__heading--support p {
  font-size: var(--f2);
  color: var(--basecolor);
  font-family: var(--en-lang);
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0;
}

.top__heading--support h2 {
  color: var(--thirdcolor);
  font-family: var(--jp-lang);
  font-weight: bold;
  font-size: 1.25em;
  margin-top: 0;
}

.top__support--newsletter::after {
  content: "";
  background:url(./img/img_top-service001.jpg) no-repeat;
  background-size: cover;
  opacity: .3;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.top__support--volunteer::after {
  content: "";
  background:url(./img/img_top-service002.jpg) no-repeat;
  background-size: cover;
  opacity: .3;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.top__support--join::after {
  content: "";
  background:url(./img/img_top-service003.jpg) no-repeat;
  background-size: cover;
  opacity: .3;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

/* / ニュースレター／ボランティア／会員募集 */


/* / トップページ
--------------------------------------*/


/* 多言語相談窓口
--------------------------------------*/
.page__block1--wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 80px auto 50px;
}

.page__block1--txt,
.page__block1--img {
  width: 40%;
}

.page__block1--img img {
  border-radius: 10px;
  overflow: hidden;
  width: auto;
}

.page__heading--middle {
  font-family: var(--jp-lang);
  color: var(--basecolor);
  font-weight: bold;
  font-size: 1.375em;
  width: 360px;
  background-color: rgba(255, 255, 255, .3);
  border: solid 1px var(--basecolor);
  border-radius: 20px;
  padding: .7em 1em .7em 2.5em;
  margin-top: 50px;
  margin-bottom: 30px;
  position: relative;
}

.page__heading--middle:first-child {
  margin-top: 0;
}

.page__heading--middle::before {
  content: "";
  background: url(./img/icon001.svg) no-repeat;
  background-size: cover;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 1em;
  top: .7em;
}


/* / 多言語相談窓口
--------------------------------------*/




/* 外国語を学ぶ
--------------------------------------*/
.page__desc {
  font-family: var(--jp-lang);
  text-align: center;
  width: 450px;
  margin: 0 auto 50px;
}

.page__subttl--wrap {
  text-align: center;
  border-bottom: solid 2px #78C0F8;
  margin-bottom: 80px;
  padding-bottom: .5em;
}

.page__subttl--en {
  font-family: var(--en-lang);
  color: #E0E0E0;
  font-weight: bold;
  font-size: 2.5em;
  line-height: 1;
}

.page__subttl {
  font-family: var(--jp-lang);
  color: var(--accentcolor);
  font-weight: bold;
  font-size: 1.875em;
  line-height: 1;
  margin-top: -20px;
}

.highlight-txt {
  display: inline-block;
  position: relative;
  font-weight: bold;
  z-index: 1;
}

.highlight-txt::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 8px;
  background-color: #FCC8C8;
  left: 0;
  bottom: 2px;
  z-index: -1;
}


/* / 外国語を学ぶ
--------------------------------------*/



/* 通訳・翻訳
--------------------------------------*/
.page__block2--wrap {
  width: 75%;
  margin: 20px auto 50px;
}

.liststyle01 {
    margin: -10px 0 20px 1rem;
  }

.liststyle01 li {
  font-family: var(--jp-lang);
  list-style-position: inside;
  list-style-type: disc;
  margin-bottom: 7px;
}

.page__heading--small {
  font-family: var(--jp-lang);
  font-weight: bold;
  font-size: 1.375em;
  width: 100%;
  background: #EEEEEE;
  border-radius: 10px;
  padding: .7em .5em .7em .5em;
  margin-bottom: 30px;
  position: relative;
}

.page__heading--mini {
  font-family: var(--jp-lang);
  font-weight: bold;
  font-size: 1.25em;
  margin-top: 30px;
  margin-bottom: 15px;
  position: relative;
}

.serivice--flow {
  width: 330px;
  margin: 20px auto 50px;
}

.serivice--flow li {
  font-family: var(--jp-lang);
  width: 100%;
  background: #DBFBFF;
  border-radius: 10px;
  text-align: center;
  padding: 1em 0;
  position: relative;
  margin-bottom: 50px;
}

.serivice--flow li.no-bg {
  font-family: var(--jp-lang);
  text-align: left;
  background: none;
  padding: 0 0;
}

.serivice--flow li::after {
  content: "";
  background: url(./img/arrow001.svg) no-repeat;
  width: 55px;
  height: 45px;
  position: absolute;
  left: calc(50% - 25px);
  bottom: -50px;
}

.serivice--flow li:last-child::after {
  background: none;
}

/* / 通訳・翻訳
--------------------------------------*/


/* ご支援のお願い
--------------------------------------*/
.liststyle03 {
  margin: 30px 0 50px 1rem;
}

.liststyle03 li {
  font-family: var(--jp-lang);
  font-size: 1.25em;
  list-style-position: inside;
  list-style-type: none;
  background-color: #DFF8F7;
  border-radius: 50px;
  margin-bottom: 15px;
  padding: .7em 1em;
}

.liststyle03 li::before {
  content: "● ";
  color: var(--accentcolor);
}

/* / ご支援のお願い
--------------------------------------*/


/* イベント情報
--------------------------------------*/
.page__event-list .event-list li {
  width: 32%;
  margin-bottom: 40px;
  margin-right: 2%;
}

.page__event-list .event-list li img {
  width: 100%;
  height: 243px;
}

.page__event-list .event-list li:nth-child(3n) {
  margin-right: 0;
}

.category--name {
  font-family: var(--jp-lang);
  font-size: 1.25em;;
  margin-bottom: 20px;
  font-weight: bold;
}

.category--name span {
  font-weight: normal;
}

/* / イベント情報
--------------------------------------*/


/* お知らせ一覧
--------------------------------------*/
.page__news-list .news-list li {
  background-color: rgba(255, 255, 255, .6);
  border: solid 1px #e6e6e6;
}

/* / お知らせ一覧
--------------------------------------*/




/* お問い合わせ
--------------------------------------*/
.contact-form {
  width: 85%;
  margin: 0 auto 20px;
}

.contact-form table {
  width: 100%;
}

.contact-form th {
  text-align: left;
  font-weight: normal;
  font-family: var(--m-plus-1);
  font-size: 1.125em;
  font-weight: bold;
  vertical-align: middle;
  padding-right: 2em;
  width: 25%;
}

.contact-form th,
.contact-form td {
  padding-bottom: 20px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
select,
textarea {
  background: #fff;
  border: solid 2px #9F9F9F;
  border-radius: 5px;
  font-weight: normal;
  font-family: var(--m-plus-1);
  font-size: 1.125em;
  padding: 17px 1.5%;
  width: 97%;
}

select {
  width: 104%;
}

input[type=date] {
  background: #fff;
  border: solid 2px #9F9F9F;
  border-radius: 5px;
  font-weight: normal;
  font-family: var(--m-plus-1);
  font-size: 1.125em;
  padding: 17px 1.5%;
  width: 50%;
}

.btn--contact-form {
  background: var(--basecolor);
  color: #fff;
  border-radius: 50px;
  height: 50px;
  margin: 0 0 0 28%;
  width: 130px;
  box-shadow: 3px 3px 0px 0px rgb(233, 223, 223);
  transition: .2s;
  overflow: hidden;
}

.btn--contact-form > p {
  margin: 0 !important;
}

.btn--contact-form:hover {
  background: #6DCE6B;
  box-shadow: 0px 0px 0px 0px rgba(233, 223, 223, 1);
  transform: translate(1px, 2px);
}

.btn--contact-form .wpcf7-submit,
.btn--contact-form .wpcf7-confirm {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-weight: normal;
  font-family: var(--jp-lang);
  font-size: var(--f5);
  line-height: 50px;
  width: 130px;
}

.btn--contact-form .confirm {
  margin: 20px 0 0 0;
  text-align: center;
}

/* ラジオボタンカスタマイズ */
input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 0 0 .5em 0;
}

.wpcf7-radio .wpcf7-list-item.first {
  margin-left: 0;
  margin-bottom: 7px;
}

.wpcf7-radio span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.wpcf7-radio span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 1px solid #606060;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.wpcf7-radio span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: #606060;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}
/* / ラジオボタンカスタマイズ */

/* チェックボックスカスタマイズ */
input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin: 0 0 .5em 0;
}

.wpcf7-checkbox .wpcf7-list-item.first {
  margin-left: 0;
  margin-bottom: 7px;
}

.wpcf7-checkbox span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.wpcf7-checkbox span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 2px;
  border: 1px solid #606060;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.wpcf7-checkbox span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #606060;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  /*border-bottom: solid 3px #606060;
  border-left: solid 3px #606060;
  transform: rotate(-45deg);*/
  display: none;
}

input[type="checkbox"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}
/* / チェックボックスカスタマイズ */


/* / お問い合わせ
--------------------------------------*/


/* お知らせ
--------------------------------------*/

/* 一覧ページ */
.news-list {
  width: 100%;
  max-width: 1150px;
  margin: 20px auto 5px;
}

.news-list li {
  font-family: var(--jp-lang);
  line-height: 1.4;
  width: 90%;
  padding: 1em 5%;
  margin-bottom: 15px;
  background-color: #efefef;
  border-radius: 50px;
}

.news-list .top__information--list--day {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

/* / 一覧ページ */

/* サイド */
h2.wp-block-heading {
  color: #fff;
  font-family: var(--jp-lang);
  font-size: 1.25em;
  background-color: #1bc3e1;
  border-radius: 10px;
  padding: .5em .5em;
}

.wp-block-group {
  margin-bottom: 50px;
}

/* サイド */


/* / お知らせ
--------------------------------------*/


/* ブログ一覧 ------------*/
.blog-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 3em 0;
}

.blog-list::after {
  display: block;
  content: "";
  width: 30%;
}

.blog-list__item {
  width: 30%;
  border-bottom: dotted 1px #A77249;
  padding-bottom: .7em;
  margin-bottom: 2em;
}

.blog-list__item--img {
  width: 100%;
  height: 160px;
  border-radius: 15px;
  border: solid 5px #F7D7CC;
  vertical-align: bottom;
  overflow: hidden;
}

.blog-list__item--img img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
  object-position: center center;
}

.blog-list__item--day {
  font-size: var(--f6);
  line-height: 1;
  margin: .5em 0 0;
}

.blog-list__item--category {
  font-size: var(--f6);
  font-family: var(--honbun);
  display: inline-block;
  line-height: 1;
  margin: .5em 0;
  padding: .2em 0;
  color: #58380C;
  border: solid 1px #58380C;
  border-radius: 3px;
}

.blog-list__item--category a {
  /*display: block;*/
  width: 100%;
  padding: .1em .5em;
  text-decoration: none;
}

.blog-list__item--title {
  font-size: 1.15em;
  font-family: var(--honbun);
}

.blog-list__item--title a {
  text-decoration: none;
}

/* 一覧では最新の情報を非表示 */
.page-id-4635 #block-4, /* ←テストサイト */
.page-id-4635 #block-2, /* ←テストサイト */
.page-id-4782 #block-2,
.page-id-4782 #block-3 {
  display: none;
}
/* / 一覧では最新の情報を非表示 */

/* / ブログ一覧 ------------*/



/* 検索結果 */
.search__title {
  width: auto;
  color: var(--basecolor);
  font-size: var(--f2);
  margin-bottom: 30px;
}

.search__list {
  margin: 30px 0;
}

.search__list li {
  border-bottom: solid 1px #000;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.search__list--heading {
  font-size: var(--f4);
}

.search-no-results p.title {
  text-align: left;
  margin-bottom: 50px;
}

.search__list--txt {

}

.search-no-results #content {
  text-align: center;
  line-height: 2;
  border: solid 1px #333333;
  padding-bottom: 40px;
}

/* / 検索結果 */



/* プライバシーポリシー -------*/

  .nallow-box {
    margin: 60px auto 0;
    width: 80%;
  }

  .nallow-box h3 {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .nallow-box h3 {
    margin: 30px 0 5px;
  }


/* / プライバシーポリシー --------*/




/* 投稿ページ -------*/
.post--day {
  font-size: var(--f6);
  font-family: var(--jp-lang);
  margin: 3px 0;
}

h2.blog-ttl + .post--day {
  font-size: var(--f6);
  font-family: var(--jp-lang);
  margin: -2.3em 0 20px 0;
  text-align: right;
}

.event--day {
  font-size: 1.25em;
  font-family: var(--jp-lang);
  font-weight: bold;
  margin: 3px 0;
}

.post--category {
  display: inline-block;
  margin: 3px 0;
}

.post--category a {
  display: block;
  font-size: var(--f6);
  font-family: var(--jp-lang);
  color: #000;
  border: solid 1px #000;
  background-color: rgba(255, 255, 255, .5);
  padding: 0 .65em .2em;
  text-decoration: none;
}

h2.blog-ttl {
  font-family: var(--jp-lang);
  font-size: var(--f4) !important;
  border: solid 2px #25D4F3;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .6);
  padding: .5em .8em;
  margin-bottom: 1.5em;
}

.blog__main--photo {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1em;
}

.blog__main--photo img {
  object-fit: cover;
  object-position: center center;
  vertical-align: bottom;
}

.widget_block h4 {
  background: #FDEAE5;
  font-family: var(--jp-lang);
  margin-top: 3em;
  border-radius: 5px;
  padding: 1em;
}

.wp-block-latest-posts__list li,
.wp-block-categories-list li,
.widget_recent_entries li {
  border-bottom: dotted 1px #0391A9;
}

.wp-block-latest-posts__list li a,
.wp-block-categories-list li a {
  display: block;
  font-size: var(--f5);
  font-family: var(--jp-lang);
  text-decoration: none;
  padding: 1.2em 1em;
  transition: .7s;
}

.widget_recent_entries li {
  font-size: var(--f5);
  font-family: var(--jp-lang);
  text-decoration: none;
  padding: 1.2em 1em;
  transition: .7s;
}

.wp-block-latest-posts__list li a:hover,
.wp-block-categories-list li a:hover,
.widget_recent_entries li:hover {
  background-color: #ebfbff;
}

.wp-block-latest-posts__list li a::before,
.widget_recent_entries li a::before {
  content: "◯";
}

.widget_recent_entries .post-date {
  display: block;
  text-align: right;
  font-size: small;
  padding-top: 5px;
}

.widget_recent_entries .post-date::after {
  content: "update";
}

.widget_recent_entries .widgettitle{
  display: none;
}



/*ブロックエディタ設定*/
figcaption {
  margin-top: .5em;
}

.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
  font-family: var(--jp-lang);
}

.post h1 {
  font-size: 2em;
}

.post h2 {
  font-size: 1.75em;
}

.post h3 {
  font-size: 1.5em;
}

.post h4 {
  font-size: 1.25em;
}

.post h5 {
  font-size: var(--f5);
}

.post h6 {
  font-size: var(--f6);
}

.post p {
  font-size: var(--f5);
  font-family: var(--jp-lang);
  margin: 1em 0;
}

.post .aligncenter,
.post .aligncenter img,
.aligncenter,
.aligncenter img {
  display: block;
  margin: 1em auto;
}

.post .alignleft {
  float: left;
  margin: 1em 1em 1em 0;
}

.post .alignright {
  float: right;
  margin: 1em 0 1em 1em;
}

.post .has-text-align-center {
  text-align: center;
}

/* / ブロックエディタ設定*/




/* / アーカイブへのリンク */

/* 表の基本スタイル */
/*.wp-block-table {
  margin: 20px 0;
}

.wp-block-table table {
  border: solid 1px #A3A12F;
}

.wp-block-table table thead {
  border-bottom: solid 1px #A3A12F;
}

.wp-block-table table th,
.wp-block-table table td {
  border: solid 1px #A3A12F;
  padding: 1em;
}

.wp-block-table table th {
  background: #F0EE7E;
}

.table--middle {
  width: 845px;
  margin-left: auto;
  margin-right: auto;
}*/


/* / 表の基本スタイル */


/*ページネーション*/
p.pagenation {
  clear: both;
  font-size: 12px;
  font-size: 1.2rem;
  overflow: hidden;
}

span.oldpage {
  float: left;
}

span.newpage {
  float: right;
}

/* ページ番号リンク */
p.pagenum {
  text-align: center;
}

p.pagenum a {
  /*background-color: #e6e6e6;*/
  text-decoration: none;
  color: #575757;
}

.page-numbers {
  background-color: #fff;
  border: solid 1px #F7D7CC;
  border-radius: 50%;
  display: inline-block;
  font-size: var(--f6);
  line-height: 30px;
  margin: 5px;
  padding: 1em;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: .5s;
}

.page-numbers:hover {
  background-color: #F7D7CC;
}

.current {
  background-color: #F7D7CC;
  border: solid 1px #F7D7CC;
}

/*p.pagenum span {
  background-color: #fff;
  border: solid 1px #999;
  color: #333;
}

p.pagenum a, p.pagenum span {
  padding: 3px 6px;
  color: #333;
}*/

/* end ページネーション*/




/* 投稿ページ -------*/


/* end ページレイアウト
--------------------------------------*/



/* フッター
--------------------------------------*/

/* バナーエリア */
.ban--kgc {
  min-width: 800px;
  max-width: 53%;
  margin: 50px auto 60px;
}

/* / バナーエリア */


.footer--wrap {
  width: 100%;
  background: url(./img/bg002.jpg) no-repeat bottom center;
  background-size: contain;
  padding-top: 50px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer--wrap p {
  margin-bottom: 0;
}

.footer__contact--wrap {
  width: 700px;
  margin: 40px auto 20px;
  padding: 30px 0;
  border: solid 2px #D3D3D3;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer--tel {
  font-size: var(--f4);
  font-family: var(--jp-lang);
  font-weight: bold;
  margin: 0 0 0 1em;
}

.footer__contact {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-right: 1.5em;
}

.footer__sns {
  width: 40px;
  margin-left: 10px;
}

.footer {
  text-align: center;
}

.footer__logo {
  width: 380px;
  margin: 20px auto 30px;
}

.footer__nav {
  width: 680px;
  font-size: var(--f5);
  font-family: var(--jp-lang);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px auto;
}

.footer__nav li {
  margin-right: .3em;
  margin-bottom: .3em;
  position: relative;
}

.footer__nav li::after {
  content: "｜";
  color: var(--basecolor);
}

.footer__nav li:nth-child(5n):after,
.footer__nav li:last-child:after {
  content: "";
}

.footer__nav a {
  color: var(--basecolor);
  text-decoration: none;
}

.footer__copyright {
  font-family: var(--jp-lang);
  font-size: var(--f6);
  text-align: center;
  margin-top: 20px;
  padding-bottom: 70px;
}


/* トップに戻るボタン */
  .to-top {
    position: fixed;
    cursor: pointer;
    border-radius: 5px;
    bottom: 50px;
    right: 80px;
    height: 40px;
    width: 40px;
    background-color: #d5e193;
  }

  .to-top::after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-top: solid 1px #212121;
    border-right: solid 1px #212121;
    transform: rotate(-45deg);
    left: calc(50% - 6px);
    top: calc(50% - 3px);
  }

  .to-top:hover {
    opacity: .6;
  }

/* / トップに戻るボタン */

/* end フッター
--------------------------------------*/


/* end レイアウト
---------------------------------------------*/



/* レスポンシブ調整（スマホレイアウト）
---------------------------------------------*/
@media screen and (max-width: 768px){

  /* iPhone safariの右側余白対策 */
  html, body {
    overflow-x: hidden;
  }

/* ヘッダー
--------------------------------------*/

.header--wrap {
  width: 97vw;
  min-width: 97vw;
  height: 60px;
  margin: 0 auto 20px;
  padding-top: 10px;
  padding-left: 3vw;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: fixed;
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, .1);
  z-index: 50;
}

.header__upper--wrap {
  width: 100%;
  height: auto;
  background-color: transparent;
}

.header__upper {
  width: 97vw;
  min-width: 97vw;
  max-width: 97vw;
  margin: 0 auto;
  padding-top: 60px;
  display: block;
}

.site-ttl {
  display: none;
}

.sp__site-ttl {
  display: block;
  width: 300px;
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
}

.upper-nav {
  min-width: 100%;
  width: 100%;
  display: block;
  margin-bottom: 30px;
}

.upper-nav li {
  width: 93vw;
  font-weight: bold;
  padding: 0;
  text-align: left;
  border-right: none;
  border-bottom: dotted 1px #116572;
  
}

.upper-nav li a {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 2vh 0;
}

.nav-icon {
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 0;
}

.nav--txt {
  padding-top: 5px;
}

.header__lower {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  display: block;
}

.lower-nav--wrap {
  width: 100%;
  display: block;
  padding: 0;
}

.lower-nav {
  background-color: #00C3E5;
  width: calc(100% - 30px);
  border-radius: 8px;
  padding: 0 15px;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.lower-nav li:first-child {
  border-bottom: solid 1px #fff;
}

.btn-contact a {
  margin-left: 0;
  margin-bottom: 10px;
}




/* / メニュー */


/* ハンバーガーメニュー */
.toggle-btn {
  display: flex;
  position: fixed;
  z-index : 3;
  right: 1vw;
  top: 10px;
  width : 30px;
  /*height: 20px;*/
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  z-index: 50;
}

.toggle-btn p {
  font-family: var(--inter);
  font-size: .8em;
  margin-top: 7px;
}

.toggle-btn a {
  display: block;
  width: 28px;
  position: relative;
}

.toggle-btn span {
  display : block;
  position: absolute;
  width   : 23px;
  height  : 2px ;
  right    : 10px;
  background : var(--basecolor);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
  z-index: 15;
}

.toggle-btn span:nth-child(1) {
  top: 16px;
}

.toggle-btn span:nth-child(2) {
  top: 24px;
}

.toggle-btn span:nth-child(3) {
  top: 32px;
}

/* スマホメニューを開いてる時のボタン */
.toggle-btn.active span:nth-child(1) {
  top: 23px;
  right: 10px;
  background: var(--basecolor);
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.toggle-btn.active span:nth-child(2),
.toggle-btn.active span:nth-child(3) {
  top: 23px;
  background: var(--basecolor);
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景 */
.global-nav-wrap {
  position: fixed;
  z-index : 25;
  top : 0;
  right : 0;
  color: #000;
  background: rgba(230, 243, 250, 1);
  text-align: left;
  width: 94vw;
  padding: 2vh 3vw 10vh;
  height: 88vh;
  transform: translateX(100vw);
  transition: all .7s;
  overflow-y: auto;
  z-index: 1;
  transition: all ease .7s;
}

.global-nav {
  min-width: 90%;
  width: 90%;
  margin: 40px auto 0;
  display: block;
  position: relative;
  z-index: 5;
  opacity: 1;
}

.global-nav li {
  font-size: var(--m-plus-1);
  font-size: 1.25em;
  font-weight: bold;
  margin-right: 0;
  text-align: left;
  border-bottom: solid 1px #CDC54F;
  width: 100%;
}

.nav-txt--en {
  font-size: .73em;
  display: block;
}

.global-nav li a {
  font-size: var(--jp-lang);
  text-decoration: none;
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding: 1em 0;
}

.nav-icon {
  display: block;
  position: relative;
  margin-left: 0;
  margin-right: 1em;
  margin-bottom: 5px;
  transition: .3s;
}

/* クリックでjQueryで追加・削除 */
.global-nav-wrap.panel-open {
  transform: translateX(0);
}

/* end ヘッダー
--------------------------------------*/


/* ページ設定
--------------------------------------*/

/* サイトの幅指定 */
.main__container {
  max-width: 90vw;
  min-width: 90vw;
  padding: 20px 0 0;
  margin:  0 auto 70px;
}


.container__large,
.container__middle,
.container__small,
.container__blog,
.blog__article,
.blog__sidebar {
  width: 96%;
  padding: 0 2%;
  margin:  20px auto 60px;
}

.container__blog {
  display: block;
}

.page-id-4031 { /* スタジオページの背景対策 */
  margin-bottom: 0;
}

.container__column {
  min-width: 96%;
  max-width: 96%;
  padding: 0 2%;
  margin:  20px auto 60px;
  display: block;
  justify-content: space-between;
}

.container__mainContent {
  width: 100%;
}

.container__sidebar {
  width: 100%;
}

/* / サイトの幅指定 */


/* ページタイトル */
.page__ttl--wrap {
  width: 100%;
  margin: 90px auto 30px;
  text-align: center;
}

.page__ttl--en {
  font-family: var(--en-lang);
  font-size: 1.875em;
  font-style: italic;
  color: var(--basecolor);
  line-height: 1.2;
}

.page__ttl {
  font-family: var(--jp-lang);
  font-size: 1.25em;
  font-weight: bold;
  color: var(--thirdcolor);
  line-height: 1.2;
}

/* / ページタイトル */


/* ボタンの設定 */
.btn-wide {
  width: 80%;
}

/* / ボタンの設定 */


/* 文字の設定 */
.main__container p {
  font-family: var(--jp-lang);
}

.page__heading {
  font-size: 1.25em;
  margin-bottom: 30px;
}

/* / 文字の設定 */


/* 見出し */
.heading {
  color: #fff;
  background: #11740C;
  font-size: var(--f3);
  font-weight: normal;
}

.heading--large,
.heading--middle {
  width: 96%;
  padding: .5em 2%;
  margin: 40px auto 30px;
}

/* / 見出し */

.w50,
.w60,
.w70 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.table-style01 th,
.table-style01 td,
.table-style03 th,
.table-style03 td {
  display: block;
  width: 100%;
}

.table-style01 th {
  border-bottom: none;
}

.table-style01 tr td:first-child,
.table-style03 tr td:first-child {
  width: 100%;
  border-bottom: none;
}

.table-style01 tr td:first-child {
  margin-bottom: 5px;
  padding-bottom: 5px;
}


/* / ページ設定
--------------------------------------*/


/* トップページ
--------------------------------------*/

/* メインビジュアル */
.main-img--wrap {
  display: block;
  width: 97vw;
  max-width: 97vw;
  min-width: 97vw;
  min-height: auto;
  height: auto;
  margin: 40px auto 40px;
  padding: 0;
  position: relative;
}

.main-img {
  min-height: auto;
  height: 97vw;
}

.main-img,
.main-img img {
  width: 100%;
  min-width: 100%;
}

.main-copy {
  opacity: 0;
  width: 70%;
  margin: 80px auto 20px;
  min-height: auto;
}

.main-copy img {
  margin-top: 0;
}

.w-g01 {
  width: 50px;
  left: 3vw;
  top: 15px;
}

.w-g02 {
  width: 30px;
  left: 3vw;
  top: 180px;
}

.w-g03 {
  width: 62px;
  left: 18vw;
  top: 210px;
}

.w-g04 {
  width: 38px;
  right: 2vw;
  top: 25px;
}

.w-g05 {
  width: 23px;
  right: 5vw;
  top: 100px;
}

.w-g06 {
  width: 56px;
  right: 3vw;
  top: 180px;
}

.w-g07 {
  width: 44px;
  right: 20vw;
  top: 210px;
}

.w-g08 {
  width: 48px;
  left: 3vw;
  top: 100px;
}

/* / メインビジュアル */

.top__heading p {
  font-size: var(--f2);
}

.top__event-list {
  width: 95vw;
  margin: 20px auto 40px;
}

.top__event-list .event-list li {
  width: 48%;
}

/* イベント情報 */
.event-day,
.event-cate,
.event-list p {
  font-size: var(--f6);
}
/* / イベント情報 */

/* ニュース */
.top__news-list {
  width: 90%;
  max-width: 90%;
  margin: 20px auto 5px;
}

.top__news-list li {
  border-radius: 20px;
}

.top__information--list--day {
  padding-right: 0;
  display: block;
}

.to-news-list a {
  font-size: var(--f5);
}

/* / ニュース */

/* 外国人の方へ */
.top__foreigner--wrap {
  min-width: 90%;
  max-width: 90%;
  margin: 30px auto 50px;
  position: relative;
  padding: 0;
  display: block;
  justify-content: space-between;
}

.top__foreigner {
  width: 100%;
}

.foreigner--ttl p {
font-size: .9375em;
}

.foreigner--ttl h3 {
  font-size: 1.25em;
}
/* / 外国人の方へ */


/* 語学学習 */
.top__language--wrap {
  min-width: 90%;
  max-width: 90%;
  margin: 30px auto 50px;
  padding-bottom: 20px;
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 35px auto;
  background: #EFF1E3;
  border-radius: 40px;
}

.top__language--ttl p {
  font-size: 2.em;
}

.top__language--ttl h2 {
  font-size: 1.125em;
}

.top__language--info {
  width: 90%;
  margin-left: 8%;
  margin-top: 0;
  padding-top: 5%;
}

.top__language--class--wrap {
  width: 90%;
  margin: 5% auto 0;
}

/* / 語学学習 */


/* 通訳・翻訳／講師派遣・出張講座 */
.top__business--wrap {
  min-width: 90%;
  max-width: 90%;
  margin: 30px auto 50px;
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 35px auto;
}

.top__business {
  width: 90%;
  padding: 5%;
  margin-bottom: 20px;
}

.top__business--ttl p {
  font-size: 2em;
}

.top__business--ttl h2 {
  font-size: 1.125em;
}

/* / 通訳・翻訳／講師派遣・出張講座 */


/* 食文化交流事業 */
.top__food--wrap {
  width: 100%;
  background: rgba(249, 250, 240, 1);
  margin: 50px auto 50px;
  padding: 5% 0;
}

.top__food {
  min-width: 90%;
  max-width: 90%;
  margin: 30px auto 50px;
  display: block;
  margin: 35px auto;
}

.top__food--img {
  width: 60%;
  min-width: 300px;
  max-width: 300px;
  height: 60%;
  min-height: 300px;
  max-height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px auto;
}

.top__food--info {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding-left: 3%;
  margin-top: 6%;
}

.top__food--ttl p {
  font-size: 2em;
}

.top__food--ttl h2 {
  font-size: 1.125em;
}

/* / 食文化交流事業 */


/* 私たちについて */
.top__about--wrap {
  width: 90%;
  min-width: 90%;
  margin: 30px auto 60px;
  padding: 30px 4%;
  border-top: solid 1px #AECB07;
  border-bottom: solid 1px #AECB07;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top__about--info,
.top__about--logo {
  width: 60%;
  margin: 20px auto;
  text-align: center;
}

.top__about--info .top__heading--about {
  text-align: center;
}

.top__about--info .btn01 {
  margin-left: auto;
  margin-right: auto;
}

.top__heading--about p {
  font-size: 2.25em;
}

.top__heading--about h2 {
  font-size: 1.125em;
}

/* / 私たちについて */


/* ニュースレター／ボランティア／会員募集）*/
.top__support--wrap {
  min-width: 90%;
  max-width: 90%;
  display: block;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px auto;
}

.top__support {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  border: solid 1px #AECB07;
  background:rgba(245, 239, 191, .2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin: 0 0 20px;
  z-index: 1;
}

.top__heading--support {
  padding-top: 2em;
  text-align: center;
  margin-bottom: 0;
}

.top__support--newsletter .top__heading--support,
.top__support--join .top__heading--support {
  padding-top: 3em;
}

.top__support .btn--center {
  margin: 10px auto;
}

/* / ニュースレター／ボランティア／会員募集）*/


/* / トップページ
---------------------------------- */


/* 多言語相談窓口
--------------------------------------*/
.page__block1--wrap {
  width: 100%;
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px auto 30px;
}

.page__block1--txt,
.page__block1--img {
  width: 100%;
}

.page__heading--middle {
  font-size: 1.25em;
  border-radius: 15px;
  width: 80%;
}

/* / 多言語相談窓口
--------------------------------------*/


/* 外国語を学ぶ
--------------------------------------*/
.page__desc {
  width: 90%;
  margin: 0 auto 30px;
}

.page__subttl--wrap {
  margin-bottom: 40px;
}

.page__subttl--en {
  font-size: 1.375em;
}

.page__subttl {
  font-size: 1.625em;
}

/* / 外国語を学ぶ
--------------------------------------*/


/* 通訳・翻訳
--------------------------------------*/
.page__block2--wrap {
  width: 100%;
  margin: 20px auto 40px;
}

.page__heading--small {
  width: calc(100% - 1em);
}

/* / 通訳・翻訳
--------------------------------------*/


/* イベント情報
--------------------------------------*/
.page__event-list .event-list li {
  width: 47%;
  margin-bottom: 30px;
}

/* / イベント情報
--------------------------------------*/



/* ブログ一覧 ------------*/
.blog-list__item {
  width: 45%;
}

.blog-list__item--img {
  width: 100%;
  height: 26vw;
  border-radius: 15px;
  border: solid 5px #F7D7CC;
  vertical-align: bottom;
  overflow: hidden;
}

/* / ブログ一覧 ------------*/


/* / 下層ページ全体-------*/




  /* プライバシーポリシー -------*/

  .nallow-box {
    margin: 40px auto 0;
    width: 92%;
  }
  
  .nallow-box h3 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  
  .nallow-box h3 {
    margin: 30px 0 5px;
  }
  
  .liststyle01 {
    margin: -10px 0 20px 1rem;
  }
  
  .liststyle01 li {
    list-style-position: inside;
    list-style-type: disc;
  }


/* / プライバシーポリシー --------*/

/* 投稿ページ -------*/
.post figure img,
.post img {
  max-width: 100%;
}


/* / 投稿ページ -------*/


/* end ページレイアウト
--------------------------------------*/
 
/* お問い合わせ
--------------------------------------*/
.contact-form {
  width: 90%;
  margin: 0 auto 20px;
}

.contact-form th,
.contact-form td {
  display: block;
  width: 100%;
}

.contact-form th {
  padding-bottom: 5px;
}

.contact-form td {
  padding-bottom: 30px;
}

/* end お問い合わせ
--------------------------------------*/

  

/* フッター
--------------------------------------*/

/* バナーエリア */
.ban--kgc {
  min-width: 90%;
  max-width: 90%;
  margin: 20px auto 20px;
}

.ban--kgc a {
  display: block;
  width: 100%;
  height: 380px;
  background: url(./img/ban-kasai_global_center--sp.png) no-repeat;
  background-size: contain;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/* / バナーエリア */

.footer__contact--wrap {
  width: 90%;
  margin: 40px auto 20px;
  padding: 30px 0;
  border: solid 2px #D3D3D3;
  border-radius: 20px;
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

.footer--tel {
  font-size: 1.25em;
  font-family: var(--jp-lang);
  font-weight: bold;
  margin: 0 0 10px 0;
}

.footer__nav {
  width: 80%;
}

.footer__contact {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-right: 1.5em;
  margin-left: 1.5em;
  margin-top: 10px;
}

.footer__sns {
  display: inline-block;
  width: 40px;
  margin-left: 20px;
  margin: 10px 20px 
}

.footer__logo {
  width: 320px;
  margin: 20px auto 30px;
}


  /* トップへ戻るボタン */
  .to-top {
    position: fixed;
    bottom: 50px;
    right: 3%;
    height: 40px;
    width: 40px;
  }


/* end フッター
--------------------------------------*/






}
/* end レスポンシブ調整（スマホレイアウト）
---------------------------------------------*/