@charset "UTF-8";
html {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  color: gray;
  font-weight: 400;
  font-size: 10px;
}

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, a,
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, input[type=submit] {
  /* outline: 1px palevioletred solid; */
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1.5;
}

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

ul {
  list-style: none;
  display: flex;
}

ul li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  color: white;
  text-decoration: none;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  cursor: pointer;
}

/* iphoneデフォルトのボタンcssを無効にする */
input[type=submit], button, select, textarea {
  -webkit-appearance: none;
}

input[type=radio], input[name=birthday_day],
input[type=checkbox] {
  -webkit-appearance: auto;
}

img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

h1 {
  font-size: 2rem;
}

h2, h3, h4 {
  font-weight: normal !important;
}

h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 120px;
  color: #ffadad;
}

h3 {
  font-family: "PT Sans", sans-serif;
  font-size: 60px;
  letter-spacing: 5px;
}

h4 {
  font-size: 25px;
  letter-spacing: 3px;
}

/* pのみユーザー設定文字サイズに応じるためrem */
p, label {
  line-height: 3.5rem;
  font-size: 1.6rem;
}

li {
  font-size: 1.5rem;
}

th, td {
  font-size: 1.8rem;
  letter-spacing: 2px;
}

/* 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;
}

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

/* 月日ピッカーカレンダー */
select {
  border-color: -internal-light-dark(#DDD);
}

input::placeholder {
  color: #DDD;
}

/* 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;
}

section {
  margin-bottom: 100px;
}

.bl_flexbox {
  display: flex;
  justify-content: space-between;
}

.ipad_only, .sp_only {
  display: none;
}

@media screen and (max-width: 960px) {
  .pc_only {
    display: none;
  }
  .ipad_only {
    display: block;
  }
  section {
    margin-bottom: 100px;
  }
  .el_ttl {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 560px) {
  h2 {
    font-size: 100px;
  }
  .sp_only {
    display: block;
  }
}
/*============== ボタン ==============*/
.el_btn {
  width: 200px;
  height: 50px;
  color: white;
  background-color: #ffadad;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.el_blockLink {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*============== ページネーション ==============*/
.el_pagenation {
  margin-top: 95px;
}

.page-numbers {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.page-numbers li,
.page-numbers span {
  width: 30px;
  height: 48px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-numbers a {
  color: #ffadad;
}

.page-numbers span {
  background-color: #ffadad;
  color: white;
}

/*============== タイトル ==============*/
.el_ttl {
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
}

/*============== その他 ==============*/
.el_count {
  margin-bottom: -20px;
  font-family: "Allura", cursive;
  font-size: 80px;
  color: #ffadad;
  text-orientation: upright;
}

.el_border {
  width: 36px;
  margin-bottom: 18px;
  border-top: 1px solid #40688B;
}

/* =============================================
ヘルパー
============================================= */
.hp_fs_s {
  font-size: 12px !important;
  line-height: 12px;
}

.hp_fs_m {
  font-size: 16px !important;
}

.hp_red {
  color: #EB828A;
}

/*============== Margin ==============*/
.hp_mgb_m {
  margin-bottom: 50px;
}

.hp_mgb_100 {
  margin-bottom: 100px;
}

/*============== Padding ==============*/
.hp_pdt_100 {
  padding-top: 100px;
}

.hp_pdt_200 {
  padding-top: 200px;
}

.hp_pdb_100 {
  padding-bottom: 100px;
}

@media screen and (max-width: 560px) {
  .hp_pdt_100 {
    padding-top: 50px;
  }
  .hp_pdt_200 {
    padding-top: 100px;
  }
  .hp_pdb_100 {
    padding-bottom: 50px;
  }
}
/* =============================================
ヘッダー
============================================= */
.bl_header {
  background-color: gray;
  color: white;
  padding: 21px;
  position: relative;
  z-index: 10;
  position: fixed;
  top: 0;
  width: 100%;
}

.bl_header ul {
  width: 80%;
  margin: 0 auto;
  justify-content: center;
}

.bl_header li {
  margin-right: 65px;
}

/*============== ロゴ ==============*/
.bl_header_logo {
  width: 100px;
  position: fixed;
  top: 15px;
  left: 15px;
  display: none;
}

@media screen and (max-width: 1200px) {
  .bl_header_logo {
    z-index: 1;
    display: none;
  }
}
/* =============================================
MV
============================================= */
.ly_mv {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  background: url(./assets/img/mv.jpg) center no-repeat;
  background-size: cover;
}

.bl_mv {
  width: 100%;
  height: 100%;
}

.bl_mvCover {
  width: 50%;
  height: 100%;
}

.bl_mvCover_back {
  width: 50%;
  height: 100%;
  background: #ffff7f;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
}

.bl_mvTxt {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 31px));
  text-align: center;
  color: white;
}

.el_mvTxt_ttl {
  font-size: 22px;
  margin-bottom: 65px;
}

.bl_mvTxt > h1 {
  width: 250px;
  margin: auto;
  margin-bottom: 80px;
}

.mv_padding {
  padding-top: calc(100vh - 64.5px);
}

@media screen and (max-width: 960px) {
  .bl_mvCover {
    width: 100%;
  }
  .bl_mvCover_back {
    width: 100%;
  }
  .el_mvTxt_ttl {
    font-size: 18px;
    font-weight: normal;
  }
  .el_mv_adress {
    font-size: 14px;
  }
  .bl_mvTxt > h1 {
    width: 35vw;
    min-width: 210px;
  }
}
/* =============================================
フッター
============================================= */
.ly_footer {
  padding: 90px 0 50px;
  background-color: #ffffbc;
  text-align: center;
}

.ly_footer_address {
  margin-bottom: 30px;
}

.bl_footer > figure {
  width: 110px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.bl_sns {
  width: 390px;
  margin: 50px auto;
}

.el_sns__line, .el_sns__insta {
  position: relative;
  padding-left: 28px;
}

.el_sns__line::before, .el_sns__insta::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-37%);
}

.el_sns__line::before {
  content: url(../img/sns_line.svg);
}

.el_sns__insta::before {
  content: url(../img/sns_insta.svg);
}

.bl_footermanu {
  width: 800px;
  padding: 55px 0;
  margin: 0 auto;
  justify-content: space-between;
  border-top: 1px solid gray;
}

.el_copyright {
  font-size: 11px;
  color: gray;
}

.ly_footer a {
  color: gray;
}

@media screen and (max-width: 960px) {
  .bl_footermanu {
    width: 340px;
    flex-wrap: wrap;
    gap: 55px;
  }
}
@media screen and (max-width: 560px) {
  .bl_footer {
    width: 80%;
    margin: auto;
  }
  .bl_footermanu {
    width: 90%;
    gap: 20px;
  }
  .bl_sns {
    width: 100%;
  }
}
/*============== アニメーション ==============*/
/*　ハンバーガーメニューボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 0;
  top: 0;
  width: 83px;
  height: 58px;
  cursor: pointer;
  text-align: center;
  background-color: gray;
  z-index: 11;
}

.hamburger.active {
  background-color: #ffadad;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 35px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

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

.hamburger span:nth-child(2) {
  top: 35px;
}

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

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 36px;
  left: 20px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 36px;
  left: 20px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* メニュー背景　*/
.bl_siteMenu {
  position: fixed;
  top: 0;
  right: 0;
  background: #ffadad;
  text-align: center;
  width: 50%;
  height: 100%;
  display: block;
  transform: translateX(100%);
  transition: all 0.6s;
  z-index: 10;
}

.bl_siteMenu_sub {
  font-family: "Allura", cursive;
  font-size: 16px;
  line-height: 1;
  color: white;
  position: relative;
}

.bl_siteMenu_sub::before {
  content: "";
  width: 57px;
  height: 1px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: -67px;
  transform: translateY(-50%);
}

.bl_siteMenu ul {
  margin: auto;
  height: 70vh;
  width: 120px;
  position: relative;
  display: flex;
  flex-flow: column;
  top: 50%;
  transform: translateY(-50%);
  justify-content: space-between;
  text-align: left;
}

.bl_siteMenu ul li {
  width: 100%;
  transition: 0.4s all;
  font-size: 20px;
}

.bl_siteMenu ul li:last-child {
  padding-bottom: 0;
}

.bl_siteMenu a {
  font-size: 16px;
}

/* クリックでjQueryで追加・削除 */
.bl_siteMenu.active {
  display: block;
  transform: translateX(0%);
}

/* メニュー展開中スクロール禁止 */
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

@media screen and (max-width: 1200px) {
  .bl_header li {
    margin-right: 60px;
  }
  .bl_pcHeader {
    display: none;
  }
  .bl_siteMenu {
    width: 500px;
  }
  .bl_siteMenu ul {
    margin: 0 auto;
  }
}
@media screen and (max-width: 560px) {
  .bl_siteMenu {
    width: 100%;
  }
}
/* 画面横倒しの時のみ */
@media screen and (max-width: 300px) {
  .bl_siteMenu ul {
    height: 80vh;
  }
}
/* リンク */
.bl_header a {
  transition: 0.3s;
}

.bl_header a:hover {
  color: #ffadad;
}

/* メニュー展開時アニメーション */
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.box {
  opacity: 0;
}

/*==================================================
ふわっ
===================================*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*==============コンセプト  ==============*/
.ly_concept {
  padding: 130px 0 100px;
  background: #ffffbc;
}

.bl_conBack {
  width: 86%;
  height: 613px;
  background-color: white;
  position: absolute;
  right: 0;
}

.bl_concept_cont {
  width: 85%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.bl_concept_txt {
  width: 50%;
  max-width: 570px;
}

.bl_concept_txt > h2 {
  margin-bottom: 40px;
}

.bl_concept_txt > h4 {
  margin-bottom: 70px;
}

.bl_concept_cont > figure {
  width: 43%;
  position: relative;
  top: -60px;
}

@media screen and (max-width: 960px) {
  .bl_concept_cont {
    margin: auto 0 auto auto;
    width: 80%;
  }
  .bl_concept {
    background-color: white;
    padding-bottom: 50px;
  }
  .bl_concept figure {
    width: 60%;
    margin: auto;
    margin-bottom: 50px;
  }
  .bl_concept h4 {
    margin-bottom: 50px;
  }
  .bl_conTxt {
    position: relative;
    top: -62px;
    left: 50%;
    transform: translateX(-60%);
  }
}
@media screen and (max-width: 560px) {
  .ly_concept {
    margin-top: -150px;
  }
  .bl_concept {
    padding: 0;
  }
  .bl_concept figure {
    width: 100%;
  }
  .bl_concept h4 {
    width: 115%;
    position: relative;
    right: 9%;
    font-size: 23px;
  }
}
/*============== 特徴・強み ==============*/
.ly_feature {
  max-width: 1336px;
  margin: 0 auto;
}

.bl_feature {
  position: relative;
  margin-bottom: 280px;
}

.bl_feature > figure {
  width: 47%;
  max-width: 600px;
}

.bl_feature_txt {
  width: 63%;
  padding: 100px;
  background-color: #ffb6c1;
  mix-blend-mode: multiply;
  color: white;
  position: absolute;
  top: 150px;
  right: 0;
}

.bl_feature_txt > p {
  max-width: 500px;
  position: relative;
  left: 50%;
  transform: translateX(-40%);
}

@media screen and (max-width: 960px) {
  .bl_feature {
    margin-bottom: 0;
  }
  .bl_feature > figure {
    width: 80%;
  }
  .bl_feature_txt {
    width: 90%;
    top: -42px;
    position: relative;
    margin-left: auto;
  }
  .bl_feature_txt > p {
    max-width: initial;
    left: auto;
    transform: translateX(0);
  }
}
@media screen and (max-width: 560px) {
  .bl_feature_txt {
    padding: 90px 25px 50px;
  }
}
/*============== 流れ ==============*/
.ly_flow {
  padding-top: 100px;
}

.bl_flow {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 100px;
  position: relative;
  left: 40px;
  gap: 0 30px;
}

.bl_flow_item > p {
  max-width: 283px;
}

.bl_thumbnail {
  writing-mode: vertical-rl;
  position: relative;
  margin-bottom: 40px;
}

.bl_thumbnail > p {
  position: absolute;
  top: -70px;
  left: -50px;
  font-size: 18px;
}

.ly_flow_img {
  width: 220px;
  height: 300px;
  position: relative;
}

.ly_flow_img img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ly_flow_img::before {
  content: "";
  width: 220px;
  height: 300px;
  display: block;
  background-color: #ffffbc;
  position: relative;
  left: 20px;
  top: 20px;
  z-index: -1;
}

@media screen and (max-width: 1200px) {
  .ly_flow {
    padding-top: calc(250px - 15vw);
  }
  .bl_thumbnail {
    width: 80%;
  }
}
@media screen and (max-width: 960px) {
  .ly_flow {
    padding-top: 0;
  }
  .bl_flow {
    width: 60%;
    display: block;
    left: auto;
  }
  .bl_thumbnail {
    margin-right: auto;
    margin-left: auto;
    width: 260px;
  }
  .bl_flow_item > p {
    margin: auto;
    margin-bottom: 150px;
    max-width: 250px;
    max-width: initial;
  }
  .ly_flow .el_ttl {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 560px) {
  .bl_flow {
    width: 80%;
    left: auto;
  }
  .bl_thumbnail {
    width: 80%;
    margin-bottom: 50px;
  }
}
/*============== アクセス ==============*/
.ly_access {
  background-color: #ffb6c1;
}

.bl_access {
  width: 80%;
  max-width: 1155px;
  margin: 0 auto;
  padding: 120px 0;
}

.ly_access .bl_flexbox {
  gap: 85px;
}

.bl_access h3, .bl_access p {
  color: white;
}

.bl_accessTxt {
  width: 47%;
  max-width: 450px;
  position: relative;
}

.bl_accessTxt .el_ttl {
  text-align: left;
}

.bl_accessTxt figure {
  width: 100px;
}

.bl_accessTxt > p {
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 960px) {
  .bl_access {
    padding: 50px 0;
  }
  .bl_access figure {
    width: 130px;
    margin: auto;
  }
  .bl_access iframe {
    width: 100%;
    margin-bottom: 25px;
  }
  .bl_accessTxt {
    width: 100%;
  }
  .bl_accessTxt > p {
    position: relative;
  }
}
@media screen and (max-width: 560px) {
  .bl_access {
    width: 90%;
  }
  .bl_access iframe {
    height: 270px;
  }
}
/*============== プラン ==============*/
.bl_plan {
  width: 70%;
  margin: 0 auto;
}

.bl_plan p {
  font-size: 18px;
}

@media screen and (max-width: 560px) {
  .bl_plan p {
    font-size: 16px;
  }
}
/* 下の注意書き */
.bl_plan > p {
  text-align: right;
}

.bl_plan table {
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #C9C9C9;
}

.bl_plan th, .bl_plan td {
  height: 120px;
  vertical-align: middle;
  text-align: center;
}

.bl_plan td {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bl_plan tr + tr {
  border-top: 1px solid #C9C9C9;
}

.bl_plan th {
  width: 50%;
  border-right: 1px solid #C9C9C9;
  font-weight: normal;
}

.bl_plan_ticket td > p {
  width: 50%;
}

.bl_plan .bl_plan__l th, .bl_plan .bl_plan__l td {
  height: 150px;
  border: 2px solid #ffadad;
}

.bl_plan .bl_plan__l th {
  border-right: none;
}

.bl_plan__l th, .bl_plan__l td {
  display: table-cell;
}

.bl_plan__l .el_plan_l {
  font-size: 30px;
  line-height: 40px;
}

@media screen and (max-width: 560px) {
  .bl_plan {
    width: 80%;
  }
  .bl_plan table p {
    line-height: 3rem;
  }
  .bl_plan th, .bl_plan td {
    width: 100%;
    display: flex;
    align-items: center;
    height: 90px;
  }
  .bl_plan th p {
    margin: 0 auto;
  }
  .bl_plan__l th, .bl_plan__l td {
    height: 110px;
    flex-wrap: wrap;
    padding: 20px;
  }
  .bl_plan .bl_plan__l th {
    border: 2px solid #ffadad;
    border-bottom: none;
  }
  .bl_plan tr + tr, .bl_plan tr, .bl_plan th {
    border: none;
  }
  .bl_plan td {
    border-top: 1px solid #C9C9C9;
  }
  .el_plan_l {
    width: 100%;
  }
}
/* お問い合せフォーム */
.bl_contact {
  width: 60%;
  max-width: 800px;
  margin: 0 auto;
}

.el_contactBox {
  display: flex;
  justify-content: start;
  margin-bottom: 50px;
  position: relative;
  font-size: 16px;
}

.el_contactBox br {
  display: none;
}

.el_contactBox input, .el_contactBox textarea {
  width: 75%;
  padding: 10px;
  border: 1px solid #C9C9C9;
}

.mwform-radio-field label {
  display: flex;
}

.mwform-tel-field {
  width: 75%;
}

.mwform-tel-field input[type=text] {
  margin-right: 10px;
  margin-left: 10px;
}

.mwform-tel-field input:nth-child(1) {
  margin-left: 0;
}

.mwform-radio-field label input {
  width: 14px;
}

.el_required::after {
  content: "※";
  color: #EB828A;
}

.el_contactBox label {
  width: 200px;
}

/* 入力確認ボタン */
.el_contactBtn input[type=submit] {
  width: 300px;
  margin: 0 auto;
  padding: 15px;
  background-color: #ffadad;
  border: none;
  color: white;
  letter-spacing: 3px;
  font-size: 18px;
}

.el_contactBtn {
  text-align: center;
  margin-top: 100px;
}

.el_backBtn input[type=submit] {
  color: gray;
  background-color: white;
}

.mw_wp_form .error {
  position: absolute;
  left: 0;
  bottom: -15px;
}

/* 確認画面のみ表示 */
.el_confirm {
  display: none;
}

.mw_wp_form_confirm .el_confirm {
  display: block;
}

.mw_wp_form_confirm .el_required,
.mw_wp_form_confirm .el_noCon {
  display: none;
}

.mw_wp_form_confirm .el_contactBox {
  display: block;
  color: black;
}

.mw_wp_form_confirm .el_contactBtn {
  margin-top: 50px;
}

.mw_wp_form_confirm .el_backBtn {
  margin-top: 100px;
}

/* 完了画面 */
.mw_wp_form_complete p {
  text-align: center;
}

@media screen and (max-width: 960px) {
  .bl_contact {
    width: 90%;
  }
  .el_contactBox {
    display: block;
    margin-bottom: 30px;
  }
  .el_contactBox input {
    display: block;
  }
  .mwform-tel-field {
    display: block;
    width: 100%;
  }
  .el_contactBox input, .el_contactBox textarea {
    width: 100%;
  }
  .mwform-radio-field {
    height: 1.6rem;
  }
  .mwform-radio-field label {
    line-height: 1.6rem;
  }
  .el_radiobox p {
    line-height: 2.5rem;
  }
  .el_radio {
    margin-bottom: 25px;
  }
  .el_contact_space {
    height: 25px;
  }
  .el_contactBtn {
    margin-top: 60px;
  }
}
/*============== お知らせ ==============*/
.un_news {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 100px;
  text-align: left;
}

.un_news .el_btn {
  margin: 30px auto 0;
}

.un_news_item {
  padding: 30px 0 10px 30px;
  border-bottom: 1px solid gray;
}

.un_news a {
  color: black;
}

@media screen and (max-width: 560px) {
  .un_news_item {
    padding-left: 0;
  }
  .un_news {
    padding-bottom: 100px;
  }
}
/*============== お知らせアーカイブ ==============*/
.un_news.hp_mgb_100 {
  margin-bottom: 100px;
}

/*============== シングルページ ==============*/
.un_single {
  width: 70%;
  margin: 0 auto;
}

.un_single_ttl {
  margin-bottom: 30px;
  font-size: 35px;
  padding-bottom: 15px;
  border-bottom: 1px solid gray;
}

.un_single img {
  width: 500px;
  margin: 30px 0;
}

@media screen and (max-width: 560px) {
  .un_single {
    width: 90%;
  }
  .un_single img {
    width: 100%;
  }
  .un_single_ttl {
    font-size: 25px;
  }
}

/*# sourceMappingURL=style.css.map */
