@charset "UTF-8";
/* -------------------------------------------------------------------------

		reset.sass

		要素のデフォルトスタイル、フォントサイズのリセット

------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------

		style 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, main {
  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, main {
  display: block;
}

ol, 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;
}

input, textarea {
  margin: 0;
  padding: 0;
}

small {
  font-size: smaller;
}

sup {
  font-size: 0.7em;
  vertical-align: top;
}

sub {
  font-size: 0.7em;
  vertical-align: baseline;
}

/* -------------------------------------------------------------------------

		font styles

------------------------------------------------------------------------- */
/* YUI 3.9.1 (build 5852) Copyright 2013 Yahoo! Inc. http://yuilibrary.com/license/ */
/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
  font: 81.25%/1.231 arial, sans-serif;
  *font-size: small; /* for IE */
  *font: x-small; /* for IE in quirks mode */
}

/**
 * Nudge down to get to 13px equivalent for these form elements
 */
select,
input,
button,
textarea {
  font: 99% arial, sans-serif;
}

/**
 * To help tables remember to inherit
 */
table {
  font-size: inherit;
  font: 100%;
}

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssfonts {
  display: none;
}

/* -------------------------------------------------------------------------

		vars.sass

		scssファイル内で使う変数を定義

------------------------------------------------------------------------- */
/* width
------------------------------------------------- */
/* color
------------------------------------------------- */
/* text color
------------------------------------------------- */
/* fonts
------------------------------------------------- */
/* transition
------------------------------------------------- */
/* animation
------------------------------------------------- */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* -------------------------------------------------------------------------

		function.sass

		scssファイル内で使う関数を定義

------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------

		mixin.sass

		mixinを定義

------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------

		util.sass

		案件に依存せず汎用的に使うClassを定義

------------------------------------------------------------------------- */
/* layout
------------------------------------------------- */
.image_text_view_l,
.image_text_view_r {
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .image_text_view_l,
  .image_text_view_r {
    overflow: visible;
  }
}

.image_text_view_l .img {
  float: left;
  margin-right: 50px;
}
@media only screen and (max-width: 768px) {
  .image_text_view_l .img {
    width: 100%;
    float: none;
    margin: 0 auto 20px;
  }
}

.image_text_view_r .img {
  float: right;
  margin-left: 50px;
}
@media only screen and (max-width: 768px) {
  .image_text_view_r .img {
    width: 100%;
    float: none;
    margin: 0 auto 20px;
  }
}

.image_text_view_l .img > div,
.image_text_view_r .img > div {
  margin-bottom: 15px;
}

.image_text_view_l .img img,
.image_text_view_r .img img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.image_text_view_l .text,
.image_text_view_r .text {
  overflow: hidden;
  line-height: 1.8;
}
.image_text_view_l .text p,
.image_text_view_r .text p {
  margin-bottom: 1em;
  line-height: 1.8;
}
.image_text_view_l .text p:last-child,
.image_text_view_r .text p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .image_text_view_l .text,
  .image_text_view_r .text {
    overflow: visible;
  }
}

@media only screen and (max-width: 768px) {
  .image_text_view_l .text {
    margin-left: 0 !important;
  }
}

@media only screen and (max-width: 768px) {
  .image_text_view_r .text {
    margin-right: 0 !important;
  }
}

/* br
------------------------------------------------- */
.sp_none {
  display: inline-block;
}

.pc_none {
  display: none;
}

@media screen and (max-width: 742px) {
  .sp_none {
    display: none;
  }
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
  .pc_none {
    display: inline-block;
  }
}
.xs_only {
  display: none;
}
@media screen and (max-width: 480px) {
  .xs_only {
    display: inline-block;
  }
}

/* float clear
------------------------------------------------- */
/*for modern browser*/
.clear_fix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

/*for IE 5.5-7*/
.clear_fix {
  zoom: 1;
}

.clear_both {
  clear: both;
  height: 1px;
  font-size: 1px;
  text-align: center;
  line-height: 0;
}

.clear {
  clear: both;
}

/* float
------------------------------------------------- */
.float_r {
  float: right;
  display: inline;
}

.float_l {
  float: left;
  display: inline;
}

/* margin + padding （0から5刻みでクラスを定義 ex: mb0, mb5, mb10...）
------------------------------------------------- */
.mt0 {
  margin-top: 0px !important;
}

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

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

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

.mb50 {
  margin-bottom: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

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

.mb100 {
  margin-bottom: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

/* align
------------------------------------------------- */
.align_l {
  text-align: left !important;
}

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

.align_c {
  text-align: center !important;
}

/* font
------------------------------------------------- */
.smaller {
  font-size: 85% !important;
}

.larger {
  font-size: larger !important;
}

.bold {
  font-weight: bold !important;
}

/* display
------------------------------------------------- */
.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

/* justify layout
Usage:
<ul class="just_layout">
	<li class ="just_item"></li>
</ul>
------------------------------------------------- */
.just_layout {
  text-align: justify;
  text-justify: distribute-all-lines;
  zoom: 1;
  display: block;
  line-height: 0;
}
.just_layout:after {
  line-height: 0;
  visibility: hidden;
  content: "";
  display: inline-block;
  width: 100%;
}
.just_layout .just_item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  line-height: normal;
}

* html .just_layout .just_item {
  display: inline;
  zoom: 1;
}

*:first-child + html .just_layout .just_item {
  display: inline;
  zoom: 1;
}

/* list
------------------------------------------------- */
.list_disc {
  margin-left: 1.2em;
  list-style: disc;
}

.list_square {
  margin-left: 1.2em;
  list-style: square;
}

.list_decimal {
  margin-left: 1.7em;
  list-style: decimal;
}

.list_decimal_zero {
  margin-left: 2.3em;
  list-style: decimal-leading-zero;
}

/* list style (IE8以上)
------------------------------------------------- */
/* ---- ※ ---- */
.list_asterisk > li {
  text-indent: -1.3em;
  margin-left: 1.3em;
}
.list_asterisk > li:before {
  content: "※ ";
}
.list_asterisk > li > * {
  text-indent: 0;
}

/* ---- ・ ---- */
.list_dot > li {
  text-indent: -1em;
  margin-left: 1em;
}
.list_dot > li:before {
  content: "・";
}
.list_dot > li > * {
  text-indent: 0;
}

/* ---- ● ---- */
.list_circle > li {
  text-indent: -1em;
  margin-left: 1em;
}
.list_circle > li:before {
  content: "● ";
}
.list_circle > li > * {
  text-indent: 0;
}

/* ---- 1. ---- */
.list_decimal_01 > li {
  counter-increment: decimal_01;
  margin-left: 1.2em;
  text-indent: -1.2em;
}
.list_decimal_01 > li:before {
  content: counter(decimal_01) ". ";
}
.list_decimal_01 > li > * {
  text-indent: 0;
}

/* ---- (1) ---- */
.list_decimal_02 > li {
  counter-increment: decimal_02;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_decimal_02 > li:before {
  content: "(" counter(decimal_02) ") ";
}
.list_decimal_02 > li > * {
  text-indent: 0;
}

/* ---- [1] ---- */
.list_decimal_03 > li {
  counter-increment: decimal_03;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_decimal_03 > li:before {
  content: "[" counter(decimal_03) "] ";
}
.list_decimal_03 > li > * {
  text-indent: 0;
}

/* ---- 丸数字 ---- */
.list_decimal_04 > li {
  counter-increment: decimal_04;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_decimal_04 > li:before {
  content: counter(decimal_04);
  border: 1px solid #000;
  padding: 0 3px;
  font-size: 10px;
  margin-right: 5px;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
}
.list_decimal_04 > li > * {
  text-indent: 0;
}

/* ---- upper alpha ---- */
.list_upper_alpha_01 > li {
  counter-increment: upper_alpha_01;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_upper_alpha_01 > li:before {
  content: counter(upper_alpha_01, upper-alpha) ") ";
}
.list_upper_alpha_01 > li > * {
  text-indent: 0;
}

/* 注釈 (IE8以上)
------------------------------------------------- */
/* ---- ※（注釈） ---- */
.notes {
  margin-left: 1.3em;
  text-indent: -1.3em;
}
.notes:before {
  content: "※ ";
}
.notes > * {
  text-indent: 0;
}

/* ---- ※n （番号付き注釈）---- */
.notes_num {
  counter-increment: decimal_notes;
  margin-left: 1.9em;
  text-indent: -1.9em;
}
.notes_num:before {
  content: "※" counter(decimal_notes) " ";
}
.notes_num > * {
  text-indent: 0;
}

/* 章番号用mixin (IE8以上)
usage:
■キャプションに章番号をつける場合
$counterName: oreoreCounter;
.parent-section {
	@include resetCounter($counterName);
	h2 {
		@include addCounter($counterName, '第', '章');
	}
}
■入れ子になってるリストに通し番号(1-1-1など）を付ける場合
$counterName: listCounter;
ol {
	@include resetCounter($counterName);
	li {
		@include addCounters($counterName, '-');
	}
}
------------------------------------------------- */
/* グリッドレイアウト用mixin (IE8以上)
usage:
■12分割で間隔が20pxのグリッドのクラスを作る場合
・SASS
@include grid_system(12, 20px);
・HTML
<div class="grid_system_12">  ← このdivへの幅指定はNG
	<div class="grid_6"></div> ┐
	<div class="grid_3"></div> ├ 子要素は合計が12になるようにクラス名を付ける
	<div class="grid_3"></div> ┘
</div>
------------------------------------------------- */
/* -------------------------------------------------------------------------

		module.sass

		見出し、ボタン、表など繰り返し使うパーツ（モジュール）のスタイルを定義

------------------------------------------------------------------------- */
/* text link
------------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a.underline:hover {
  text-decoration: underline;
}
a.color:hover {
  color: #084e72;
}

a[href*="tel:"] {
  cursor: default;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href*="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}

/*img
------------------------------------------------- */
img {
  line-height: 1;
  vertical-align: top;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -ms-transition: 　none;
}

/* form
------------------------------------------------- */
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=text],
input[type=submit],
input[type=tel],
input[type=email],
textarea {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  margin: 0;
  background-color: #fff;
  border: 1px solid #C4C4C3;
  font-size: 16px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1% 2%;
  border-radius: 0;
  outline: none;
  border: 1px solid #aaa;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
input[type=text].narrow,
input[type=submit].narrow,
input[type=tel].narrow,
input[type=email].narrow,
textarea.narrow {
  width: 20%;
}

input[type=text] {
  width: 60%;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  input[type=text] {
    width: 100%;
  }
}

input[type=text]:focus,
textarea:focus {
  -webkit-box-shadow: 0 0 7px #52a8ec;
          box-shadow: 0 0 7px #52a8ec;
  border: 1px solid #52a8ec;
}

input[type=radio],
input[type=checkbox] {
  margin-right: 5px;
  vertical-align: baseline;
  border-style: none;
}

label {
  margin-right: 15px;
  cursor: pointer;
}

input[type=submit],
input[type=button] {
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  display: block;
  width: 360px;
  border-radius: 0;
  -webkit-appearance: none;
}

select {
  font-size: 16px;
  padding: 1% 2%;
}

textarea {
  height: 200px;
}
@media only screen and (max-width: 736px) {
  textarea {
    height: 150px;
  }
}

/* animation
------------------------------------------------- */
.animation {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.animation.fast {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.animation.slow {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.animation.cubic {
  -webkit-transition: all 0.5s;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition: all 0.5s;
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

/* pager - WPのページャー
------------------------------------------------- */
/* list */
.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .pager {
    margin: 0 auto 60px;
  }
}
.pager a, .pager span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 2px;
  border: 1px solid #8c7e52;
  color: #8c7e52;
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .pager a, .pager span {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
}
.pager .prev, .pager .next {
  position: relative;
  color: #084e72;
  font-size: 2rem;
}
.pager .prev::after, .pager .next::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 16px;
  height: 16px;
  border-top: 2px solid #8c7e52;
  border-right: 2px solid #8c7e52;
}
.pager .prev:hover::after, .pager .next:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.pager .prev::after {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
          transform: translate(-30%, -50%) rotate(-135deg);
}
.pager .next::after {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
          transform: translate(-70%, -50%) rotate(45deg);
}
.pager a:hover, .pager .current {
  background: #8c7e52;
  color: #fff;
}
.pager .current {
  cursor: default;
  pointer-events: none;
}

/* detail */
.pager.big {
  width: 610px;
  margin: 100px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .pager.big {
    width: calc(100% - 40px);
  }
}
.pager.big a {
  width: calc((100% - 10px) / 3);
  height: 50px;
  margin: 0;
  background: #8c7e52;
  color: #fff;
  font-size: 1.6rem;
}
.pager.big .to_prev, .pager.big .to_next {
  position: relative;
}
.pager.big .to_prev::after, .pager.big .to_next::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 14px;
  height: 14px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.pager.big .to_prev::after {
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .pager.big .to_prev::after {
    left: 10px;
  }
}
.pager.big .to_next::after {
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pager.big .to_next::after {
    right: 10px;
  }
}

/* btn
------------------------------------------------- */
/* icon
------------------------------------------------- */
/* title
------------------------------------------------- */
.contents_title {
  display: inline-block;
  margin-bottom: 60px;
  padding: 0 200px;
  background: url(../img/common/bg_title.png) no-repeat 50% 50%;
  background-size: 401px 117px;
}
@media screen and (max-width: 768px) {
  .contents_title {
    padding: 0;
    background-position-y: 0;
    background-size: contain;
  }
}
.contents_title span:first-of-type {
  margin: 0 auto;
  font-size: 3rem;
  font-weight: 600;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
@media screen and (max-width: 768px) {
  .contents_title span:first-of-type {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
.contents_title span:last-of-type {
  display: block;
  padding-top: 30px;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .contents_title span:last-of-type {
    display: block;
    padding-top: 0;
  }
}

.page_lead {
  padding: 50px 0;
  background: url(../img/common/bg_title.png) no-repeat 50% 25%;
  background-size: 401px 117px;
  font-size: 3rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page_lead {
    margin: 0 20px;
    padding: 30px 0;
    background-size: contain;
    font-size: 2.4rem;
    line-height: 1.7;
  }
}

.contents_head {
  display: inline-block;
  margin-bottom: 30px;
  padding: 2px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .contents_head {
    padding: 6px 0 0;
  }
}

/* background
------------------------------------------------- */
.bg_paper {
  margin-bottom: 100px;
  padding: 50px 0;
  background: url(../img/common/bg_paper.png) no-repeat 50% 50%;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .bg_paper {
    margin-bottom: 50px;
  }
}
.bg_paper .inner {
  margin-bottom: 0;
}

/* season color
------------------------------------------------- */
.bg_spring {
  background: #ab327c;
}

.bg_summer {
  background: #099dbd;
}

.bg_autumn {
  background: #a0641e;
}

.bg_winter {
  background: #1d5386;
}

.spring {
  color: #ab327c;
}

.summer {
  color: #099dbd;
}

.autumn {
  color: #a0641e;
}

.winter {
  color: #1d5386;
}

/* -------------------------------------------------------------------------

		layout.sass

		ヘッダー、フッター、サイドバー等のサイトの構造に関わるスタイルを定義

------------------------------------------------------------------------- */
/* html
------------------------------------------------- */
html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}

/* body
------------------------------------------------- */
body {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 500;
  background-color: #fff;
  color: #000;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
  right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 50px;
  }
}
body *, body *::before, body *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* noscript
------------------------------------------------- */
.noscript {
  background-color: #084e72;
  padding: 　10px 0;
  text-align: 　center;
  font-weight: 　bold;
}

/* header
------------------------------------------------- */
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  -webkit-transition: 3s;
  transition: 3s;
}
@media screen and (max-width: 768px) {
  .site_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }
}
.site_header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .site_header .header_inner {
    width: calc(100% - 50px);
    height: 50px;
    padding-left: 10px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .site_header .site_id {
    padding-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .site_header .site_id {
    padding-top: 5px;
  }
}
.site_header .site_id a {
  position: relative;
  display: block;
  color: #084e72;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .site_header .site_id a {
    font-size: 2rem;
  }
}
.site_header .site_id .id_lead {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  margin-right: 15px;
  padding-left: 20px;
  padding-right: 20px;
  color: #000;
  font-size: 1.4rem;
  font-weight: 900;
  vertical-align: middle;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .site_header .site_id .id_lead {
    display: none;
  }
}
.site_header .site_id .id_lead::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 12px;
  height: 1px;
  margin-top: -1px;
  background: #bfbfbf;
}
.site_header .site_id .id_lead::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 12px;
  height: 1px;
  margin-top: -1px;
  background: #bfbfbf;
}
.site_header .site_id .id_small {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  vertical-align: middle;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .site_header .site_id .id_small {
    font-size: 1.2rem;
  }
}
.site_header .site_id .phonetic {
  position: absolute;
  top: -12px;
  right: 0;
  font-size: 1rem;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .site_header .site_id .phonetic {
    top: -10px;
    letter-spacing: 0.1em;
  }
}
.site_header .header_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .site_header .header_box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.site_header .header_box .tel span {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  color: #000;
  font-size: 1.6rem;
  font-weight: 600;
  vertical-align: middle;
  letter-spacing: 2px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .site_header .header_box .tel span {
    padding-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .site_header .header_box .tel span {
    display: none;
  }
}
.site_header .header_box .tel a {
  display: inline-block;
  color: #084e72;
  font-size: 3.4rem;
  vertical-align: middle;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .site_header .header_box .tel a {
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .site_header .header_box .tel a {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(8, 78, 114, 0.8);
    font-size: 0;
  }
  .site_header .header_box .tel a::before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    content: "\f095";
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-size: 2.4rem;
    font-weight: 900;
  }
}
.site_header .header_box .translate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  margin-left: 20px;
  background: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .site_header .header_box .translate {
    width: 50px;
    height: 50px;
    margin-left: 0;
  }
}
.site_header .header_box .translate:hover {
  background: #084e72;
}
.site_header .header_box .translate > img {
  width: 24px;
  height: 24px;
}
.site_header .header_box #google_translate_element {
  display: none;
  width: auto;
  height: 60px;
  padding: 2px 10px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .site_header .header_box #google_translate_element {
    position: absolute;
    top: 50px;
    right: 100px;
  }
}
.site_header .header_box #google_translate_element .skiptranslate {
  width: 100%;
  height: 100%;
}
.site_header .header_box #google_translate_element .skiptranslate > div {
  position: relative;
}
.site_header .header_box #google_translate_element .skiptranslate > div::before {
  position: absolute;
  top: 50%;
  right: 8px;
  content: "";
  width: 0;
  height: 0;
  margin-top: -4px;
  border: 4px solid transparent;
  border-top: 6px solid #000;
}
.site_header .header_box #google_translate_element select {
  width: 100%;
  border: 1px solid #bfbfbf;
}
.site_header .header_box #google_translate_element img {
  width: 42px;
  height: 16px;
}

/* drawer-hamberger
------------------------------------------------- */
.drawer-hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer-hamburger {
    top: 0;
    display: block;
    width: 30px;
    height: 30px;
    padding: 10px;
    background: #084e72;
  }
}
.drawer-hamburger .drawer-hamburger-icon,
.drawer-hamburger .drawer-hamburger-icon:after,
.drawer-hamburger .drawer-hamburger-icon:before {
  height: 3px;
  background: #fff;
}
.drawer-hamburger .drawer-hamburger-icon {
  margin-top: 0;
}
.drawer-hamburger:hover {
  background: #084e72;
}

/* gloal navi
------------------------------------------------- */
.drawer--right .global_nav {
  position: relative;
  right: 0;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  background: #084e72;
  overflow: visible;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .drawer--right .global_nav {
    position: fixed;
    right: -100%;
    height: 100vh;
    width: 80vw;
    margin-bottom: 0;
    overflow: scroll;
  }
}
.drawer--right .global_nav .drawer-menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1040px;
  margin: 0 auto;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@media screen and (max-width: 768px) {
  .drawer--right .global_nav .drawer-menu {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.drawer--right .global_nav .drawer-menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .drawer--right .global_nav .drawer-menu li {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 30px;
    padding: 15px 0;
    border-right: none;
    text-align: left;
  }
}
.drawer--right .global_nav .drawer-menu li:last-of-type {
  border: none;
}
.drawer--right .global_nav .drawer-menu li a {
  position: relative;
  display: inline-block;
  padding: 10px 0 10px 20px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .drawer--right .global_nav .drawer-menu li a {
    padding: 12px 0 8px 20px;
  }
}
@media screen and (max-width: 768px) {
  .drawer--right .global_nav .drawer-menu li a {
    display: block;
    padding-left: 0;
  }
}
.drawer--right .global_nav .drawer-menu li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 15px;
  height: 1px;
  margin-top: -1px;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .drawer--right .global_nav .drawer-menu li a::before {
    content: none;
  }
}
.drawer--right .global_nav .drawer-menu li a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .drawer--right .global_nav .drawer-menu li a::after {
    content: none;
  }
}
.drawer--right .global_nav .drawer-menu li a:hover::after {
  width: 100%;
}
.drawer--right .global_nav .drawer-menu .logo {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer--right .global_nav .drawer-menu .logo {
    display: block;
    height: 60px;
    margin-bottom: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #000;
    text-align: center;
  }
  .drawer--right .global_nav .drawer-menu .logo a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .drawer--right .global_nav .drawer-menu .logo img {
    width: auto;
    height: 100%;
  }
}

.drawer--right.drawer-open .drawer-nav {
  top: 50px;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 0;
}
.drawer--right.drawer-open .drawer-hamburger .drawer-hamburger-icon {
  background: transparent;
}
.drawer--right.drawer-open .drawer-hamburger .drawer-hamburger-icon::before, .drawer--right.drawer-open .drawer-hamburger .drawer-hamburger-icon::after {
  background: #fff;
}

.drawer-overlay {
  background: rgba(0, 0, 0, 0.7);
  z-index: 3;
}

/* main title
------------------------------------------------- */
.main_title {
  position: relative;
  height: 350px;
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  .main_title {
    height: 120px;
    margin-top: 0;
    padding: 20px;
  }
}
.plan .main_title {
  background: url(../img/plan/img_mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}
.information .main_title {
  background: url(../img/information/img_mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}
.sightseeing .main_title {
  background: url(../img/sightseeing/img_mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.page_title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 4rem;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .page_title {
    font-size: 8vw;
  }
}

/* breadcrumb
------------------------------------------------- */
.breadcrumb {
  max-width: 1040px;
  margin: 20px auto 60px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin: 15px 10px 30px;
  }
}
.breadcrumb ul {
  letter-spacing: -0.5em;
}
.breadcrumb li {
  display: inline-block;
  margin-right: 5px;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: normal;
}
.breadcrumb li::after {
  content: "＞";
}
.breadcrumb li:last-of-type {
  margin: 0;
  padding: 0;
  border: none;
}
.breadcrumb li:last-of-type::after {
  content: none;
}
.breadcrumb li:last-of-type a {
  cursor: default;
  pointer-events: none;
}
.breadcrumb li a {
  padding-right: 5px;
  color: #000;
}
.breadcrumb li a:hover {
  color: #084e72;
}

/* column(one)
------------------------------------------------- */
main {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main {
    width: 100%;
  }
}

/* column(two)
------------------------------------------------- */
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    display: block;
    width: 100%;
  }
}
.wrapper main {
  width: 890px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .wrapper main {
    width: 100%;
  }
}
.wrapper aside {
  width: 270px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .wrapper aside {
    width: 100%;
    margin-bottom: 50px;
  }
}

/* page_content
------------------------------------------------- */
.contents, .inner {
  width: 1040px;
  margin: 0 auto 160px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contents, .inner {
    width: 100%;
    margin-bottom: 80px;
  }
}

/* sidebar
------------------------------------------------- */
/* footer
------------------------------------------------- */
.site_footer {
  position: relative;
  padding: 190px 0 280px;
  background: url(../img/common/img_footer.jpg) no-repeat 50% 100%;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .site_footer {
    padding: 50px 20px 200px;
  }
}

.footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.footer_contact {
  position: relative;
  padding: 40px 120px 40px 50px;
  background: rgba(255, 255, 255, 0.4);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer_contact {
    padding: 40px 20px 20px;
  }
}
.footer_contact .ft_contact_title {
  position: absolute;
  bottom: 40px;
  right: 40px;
  padding: 15px 0;
  background: #fff;
  font-size: 2.5rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .footer_contact .ft_contact_title {
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .footer_contact .ft_contact_title {
    top: -20px;
    bottom: auto;
    left: 20px;
    right: auto;
    padding: 10px 20px;
    font-size: 1.6rem;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    letter-spacing: 0.1em;
  }
}
.footer_contact .ft_name {
  position: relative;
  margin-bottom: 10px;
  border-bottom: 1px solid #5fb1c4;
  font-size: 3.6rem;
  line-height: 1.6;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .footer_contact .ft_name {
    font-size: 3rem;
  }
}
.footer_contact .id_lead {
  display: block;
  margin-bottom: 5px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footer_contact .id_lead {
    margin-bottom: 10px;
  }
}
.footer_contact .id_lead span {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  font-size: 1.6rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .footer_contact .id_lead span {
    font-size: 1.4rem;
  }
}
.footer_contact .id_lead span::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 12px;
  height: 1px;
  margin-top: -1px;
  background: #5fb1c4;
}
.footer_contact .id_lead span::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 12px;
  height: 1px;
  margin-top: -1px;
  background: #5fb1c4;
}
.footer_contact .id_small {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer_contact .id_small {
    font-size: 1.8rem;
  }
}
.footer_contact .phonetic {
  position: absolute;
  top: 40px;
  right: 10px;
  font-size: 1.2rem;
  letter-spacing: 0.75em;
}
@media screen and (max-width: 768px) {
  .footer_contact .phonetic {
    top: 37px;
    right: 50%;
    margin-right: -9em;
    letter-spacing: 0.45em;
  }
}
.footer_contact .ft_tel {
  font-size: 5rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .footer_contact .ft_tel {
    font-size: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .footer_nav {
    display: none;
  }
}
.footer_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.footer_nav li {
  display: block;
  font-size: 2rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.footer_nav li:not(:first-of-type) {
  margin-right: 40px;
}
.footer_nav a {
  position: relative;
  display: inline-block;
  font-weight: 900;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .footer_nav a {
    padding-right: 10px;
  }
}
.footer_nav a::before, .footer_nav a::after {
  position: absolute;
  top: 0;
  content: "";
  width: 1px;
  height: 0;
  background: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer_nav a::before {
  left: 0;
}
.footer_nav a::after {
  right: 0;
}
.footer_nav a:hover::before, .footer_nav a:hover::after {
  height: 100%;
}

.copyright {
  position: absolute;
  bottom: 50px;
  right: 100px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .copyright {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.copyright a {
  color: #fff;
}
.copyright a:hover {
  color: #084e72;
}

/* page_top
------------------------------------------------- */
.page_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
}
.page_top a {
  position: relative;
  display: block;
  width: 40px;
  height: 60px;
  padding-top: 40px;
  color: #084e72;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
}
.page_top a::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 2px;
  height: 40px;
  background: #084e72;
}
.page_top a::after {
  position: absolute;
  top: -3px;
  left: 50%;
  content: "";
  width: 2px;
  height: 25px;
  margin-left: -7px;
  background: #084e72;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.page_top a:hover {
  opacity: 0.8;
}

/* -------------------------------------------------------------------------

		contents.sass

		各ページ固有のスタイルを定義

------------------------------------------------------------------------- */
/* home - トップページ
------------------------------------------------- */
.home .site_header {
  display: none;
  -webkit-transition: 5s;
  transition: 5s;
}
@media screen and (max-width: 768px) {
  .home .site_header {
    display: block;
  }
}
.home .site_header.fixed {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-animation: fadeIn 1s;
          animation: fadeIn 1s;
}
@media screen and (max-width: 768px) {
  .home .site_header.fixed {
    -webkit-animation: none;
            animation: none;
  }
}
.home .mainvisual {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-bottom: 140px;
  background: url(../img/index/img_mv.jpg) no-repeat 50% 100%;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .home .mainvisual {
    height: calc(100vh - 50px);
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .home .mainvisual {
    height: 50vh;
    background-position-y: 0;
  }
}
.home .mainvisual::before {
  position: absolute;
  bottom: -70px;
  left: 50px;
  content: "";
  width: 1px;
  height: 170px;
  background: rgba(191, 191, 191, 0.5);
}
@media screen and (max-width: 768px) {
  .home .mainvisual::before {
    bottom: -70px;
    left: 50%;
    margin-left: -1px;
    height: 140px;
  }
}
.home .mainvisual::after {
  position: absolute;
  bottom: 55px;
  left: 30px;
  content: "SCROLL";
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .home .mainvisual::after {
    bottom: 35px;
    left: 50%;
    margin-left: -15px;
    font-size: 1rem;
  }
}
.home .top_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .home .top_header {
    display: none;
  }
}
.home .top_header .site_id {
  position: relative;
  color: #fff;
  font-size: 3rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.home .top_header .site_id .id_lead {
  display: block;
  margin-bottom: 10px;
  letter-spacing: normal;
}
.home .top_header .site_id .id_lead span {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 1.4rem;
  font-weight: 900;
}
.home .top_header .site_id .id_lead span::before, .home .top_header .site_id .id_lead span::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 12px;
  height: 1px;
  margin-top: -1px;
  background: #fff;
}
.home .top_header .site_id .id_lead span::before {
  left: 0;
}
.home .top_header .site_id .id_lead span::after {
  right: 0;
}
.home .top_header .site_id .id_small {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: normal;
}
.home .top_header .site_id .phonetic {
  position: absolute;
  top: 35px;
  right: 1px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.6em;
}
.home .top_header .tel {
  color: #fff;
}
.home .top_header .tel span {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 1.6rem;
  font-weight: 600;
  vertical-align: middle;
  letter-spacing: 2px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .home .top_header .tel span {
    padding-top: 5px;
  }
}
.home .top_header .tel a {
  display: inline-block;
  color: #fff;
  font-size: 3.4rem;
  font-weight: 400;
  vertical-align: middle;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .home .top_header .tel a {
    padding-top: 10px;
  }
}
.home .top_header .translate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  margin-left: 20px;
  background: #000;
}
.home .top_header .translate img {
  width: 24px;
  height: 24px;
}
.home .mv_lead {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 4rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .home .mv_lead {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}
@media screen and (max-width: 480px) {
  .home .mv_lead {
    font-size: 8vw;
    text-align: center;
    font-weight: 400;
  }
}
.home .mv_lead span {
  display: block;
  padding-top: 180px;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .home .mv_lead span {
    padding-top: 0;
    font-size: 1.6rem;
  }
}
.home .mv_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: absolute;
  bottom: 40px;
  right: 0;
  padding: 0 50px 30px;
  background: rgba(8, 78, 114, 0.9);
}
@media screen and (max-width: 768px) {
  .home .mv_nav {
    display: none;
  }
}
.home .mv_nav li {
  position: relative;
  padding-top: 40px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.home .mv_nav li:not(:first-of-type) {
  margin-right: 30px;
}
.home .mv_nav li::before {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  width: 1px;
  height: 12px;
  margin-left: -1px;
  background: #fff;
}
.home .mv_nav li a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .home .mv_nav li a {
    padding-right: 5px;
  }
}
.home .mv_nav li a::before, .home .mv_nav li a::after {
  position: absolute;
  top: 0;
  content: "";
  width: 1px;
  height: 0;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.home .mv_nav li a::before {
  left: 0;
}
.home .mv_nav li a::after {
  right: 0;
}
.home .mv_nav li a:hover::before, .home .mv_nav li a:hover::after {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .home .insta .contents_title {
    padding: 0 40px;
  }
}
.home .insta .insta_area {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .home .insta .insta_area.pc {
    display: none;
  }
}
.home .insta .insta_area.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .home .insta .insta_area.sp {
    display: block;
    margin: 0 20px 20px;
  }
  .home .insta .insta_area.sp iframe {
    width: 100% !important;
  }
}
.home .insta .insta_link {
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
}
.home .insta .insta_link::before {
  display: inline-block;
  margin-top: -6px;
  padding-right: 10px;
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  font-size: 2.4rem;
  font-weight: 600;
  vertical-align: middle;
}
.home .insta .insta_link:hover {
  border-bottom: 1px solid #8c7e52;
  color: #8c7e52;
}
.home .top_plan .top_plan_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .home .top_plan .top_plan_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home .top_plan .top_plan_inner > div {
  position: relative;
  width: calc((100% - 10px) / 2);
}
@media screen and (max-width: 768px) {
  .home .top_plan .top_plan_inner > div {
    width: 100%;
    padding: 0 20px;
  }
  .home .top_plan .top_plan_inner > div:first-of-type {
    margin-bottom: 120px;
  }
  .home .top_plan .top_plan_inner > div:nth-of-type(2) {
    margin-bottom: 60px;
  }
}
.home .top_plan .top_plan_inner > div a {
  display: block;
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 15px 80px;
  background: #fff;
  border-bottom: 1px solid #084e72;
  color: #084e72;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home .top_plan .top_plan_inner > div a {
    width: 50vw;
    min-width: 250px;
  }
}
@media screen and (max-width: 480px) {
  .home .top_plan .top_plan_inner > div a {
    width: calc(100% - 100px);
    padding: 15px;
  }
}
.home .top_plan .top_plan_inner > div a::after {
  position: absolute;
  top: 50%;
  right: 60px;
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -4px;
  border-top: 1px solid #084e72;
  border-right: 1px solid #084e72;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.home .top_plan .top_plan_inner > div a:hover {
  background: #084e72;
  color: #fff;
}
.home .top_plan .top_plan_inner > div a:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.home .top_plan .top_plan_inner .season {
  position: absolute;
  top: -0.75em;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .home .top_plan .top_plan_inner .season {
    font-size: 6rem;
  }
}
.home .top_plan .top_plan_inner .slick-dots {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.home .top_plan .top_plan_inner .slick-dots li {
  width: 20%;
}
.home .top_plan .top_plan_inner .slick-dots li.slick-active {
  opacity: 0.5;
}
.home .top_plan .top_plan_detail {
  padding: 50px 50px 60px;
  background: url(../img/common/bg_paper.png) no-repeat 50% 50%;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .home .top_plan .top_plan_detail {
    padding: 30px 20px 50px;
  }
}
.home .top_plan .top_plan_detail .top_plan_lead {
  margin-bottom: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .home .top_plan .top_plan_detail .top_plan_lead {
    font-size: 1.6rem;
  }
}
.home .top_plan .top_plan_detail .top_plan_price {
  display: inline-block;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .home .top_plan .top_plan_detail .top_plan_price {
    font-size: 1.4rem;
  }
}
.home .top_plan .top_plan_detail .top_plan_price span {
  display: inline-block;
  color: #084e72;
  font-size: 4rem;
  line-height: 1.2;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .home .top_plan .top_plan_detail .top_plan_price span {
    padding-left: 10px;
    font-size: 2.7rem;
  }
}
.home .top_plan .other_season_box .season {
  right: 0;
}
@media screen and (max-width: 768px) {
  .home .top_plan .other_season_box .season {
    right: 20px;
  }
}
.home .charm {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e1ebee));
  background: linear-gradient(to bottom, #ffffff 0%, #e1ebee 100%);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home .charm {
    background: none;
  }
}
.home .charm::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 504px;
  height: 372px;
  background: url(../img/index/img_charm_bottom.png) no-repeat 100% 100%;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .home .charm::after {
    background: none;
  }
}
.home .charm > div {
  margin-bottom: 290px;
}
@media screen and (max-width: 768px) {
  .home .charm > div {
    margin-bottom: 15vw;
  }
}
@media screen and (max-width: 480px) {
  .home .charm > div {
    margin-bottom: 25vw;
  }
}
.home .charm > div:last-of-type {
  margin-bottom: 0;
  padding-bottom: 307px;
}
@media screen and (max-width: 768px) {
  .home .charm > div:last-of-type {
    padding-bottom: 0;
  }
}
.home .charm .inner {
  position: relative;
  width: 1040px;
  height: 439px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .home .charm .inner {
    width: 100%;
    height: auto;
    padding-bottom: 65vw;
  }
}
@media screen and (max-width: 480px) {
  .home .charm .inner {
    padding-bottom: 70vw;
  }
}
.home .charm .text_box {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 450px;
  padding: 50px 30px;
  background: #fff;
  text-align: left;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .home .charm .text_box {
    position: static;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 100%;
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
.home .charm .charm_head {
  position: relative;
  margin-bottom: 20px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .home .charm .charm_head {
    padding-left: 40px;
  }
}
.home .charm .charm_head span {
  position: absolute;
  top: -110px;
  color: #084e72;
  font-size: 7rem;
  font-weight: 400;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .home .charm .charm_head span {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 5rem;
    vertical-align: middle;
  }
}
.home .charm .charm_text {
  font-weight: 400;
}
.home .charm figure:first-of-type {
  position: absolute;
  width: 707px;
  height: 439px;
}
@media screen and (max-width: 768px) {
  .home .charm figure:first-of-type {
    bottom: 18vw;
    left: 20px;
    width: 75vw;
    height: 46.57vw;
  }
}
@media screen and (max-width: 480px) {
  .home .charm figure:first-of-type {
    bottom: 22vw;
  }
}
.home .charm figure:nth-of-type(2) {
  position: absolute;
  width: 320px;
  height: 199px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .home .charm figure:nth-of-type(2) {
    width: 50vw;
    height: 31.25vw;
  }
}
.home .charm .charm01 {
  background: url(../img/index/bg_charm01.png) no-repeat 100% 100%;
}
@media screen and (max-width: 768px) {
  .home .charm .charm01 {
    background-size: 50vw 31.11vw;
  }
}
.home .charm .charm01 .text_box {
  right: 0;
}
.home .charm .charm01 .charm_head span {
  right: 30px;
}
@media screen and (max-width: 768px) {
  .home .charm .charm01 .charm_head span {
    right: 0;
  }
}
.home .charm .charm01 figure:nth-of-type(2) {
  bottom: -114px;
  right: 450px;
}
@media screen and (max-width: 768px) {
  .home .charm .charm01 figure:nth-of-type(2) {
    bottom: -50px;
    right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .home .charm .charm01 figure:nth-of-type(2) {
    bottom: -25px;
  }
}
.home .charm .charm02 {
  background: url(../img/index/bg_charm02.png) no-repeat 0 100%;
}
@media screen and (max-width: 768px) {
  .home .charm .charm02 {
    background-size: 50vw 31.11vw;
  }
}
.home .charm .charm02 .text_box {
  left: 0;
}
.home .charm .charm02 .charm_head span {
  left: 30px;
}
@media screen and (max-width: 768px) {
  .home .charm .charm02 .charm_head span {
    left: 0;
  }
}
.home .charm .charm02 figure:first-of-type {
  right: 0;
}
@media screen and (max-width: 768px) {
  .home .charm .charm02 figure:first-of-type {
    right: auto;
  }
}
.home .charm .charm02 figure:nth-of-type(2) {
  bottom: -114px;
  left: 450px;
}
@media screen and (max-width: 768px) {
  .home .charm .charm02 figure:nth-of-type(2) {
    bottom: -50px;
    left: auto;
    right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .home .charm .charm02 figure:nth-of-type(2) {
    bottom: -25px;
  }
}
.home .charm .charm03 {
  background: url(../img/index/bg_charm03.png) no-repeat 100% 100%;
}
@media screen and (max-width: 768px) {
  .home .charm .charm03 {
    background-size: 50vw 31.11vw;
  }
}
.home .charm .charm03 .text_box {
  right: 0;
}
.home .charm .charm03 .charm_head span {
  right: 30px;
}
@media screen and (max-width: 768px) {
  .home .charm .charm03 .charm_head span {
    right: 0;
  }
}
.home .charm .charm03 figure:nth-of-type(2) {
  bottom: -114px;
  right: 450px;
}
@media screen and (max-width: 768px) {
  .home .charm .charm03 figure:nth-of-type(2) {
    bottom: -50px;
    right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .home .charm .charm03 figure:nth-of-type(2) {
    bottom: -25px;
  }
}
.home .charm .charm04 {
  background: url(../img/index/bg_charm04.png) no-repeat 0 100%;
}
@media screen and (max-width: 768px) {
  .home .charm .charm04 {
    background-size: 50vw 31.11vw;
  }
}
.home .charm .charm04 .text_box {
  left: 0;
}
.home .charm .charm04 .charm_head span {
  left: 30px;
}
@media screen and (max-width: 768px) {
  .home .charm .charm04 .charm_head span {
    left: 0;
  }
}
.home .charm .charm04 figure:first-of-type {
  right: 0;
}
.home .charm .charm04 figure:nth-of-type(2) {
  bottom: -101px;
  left: 450px;
}
@media screen and (max-width: 768px) {
  .home .charm .charm04 figure:nth-of-type(2) {
    bottom: -50px;
    left: auto;
    right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .home .charm .charm04 figure:nth-of-type(2) {
    bottom: -25px;
  }
}
.home .charm .charm05 {
  background: url(../img/index/bg_charm05.png) no-repeat 100% 100%;
}
@media screen and (max-width: 768px) {
  .home .charm .charm05 {
    background-size: 50vw 31.11vw;
  }
}
.home .charm .charm05 .text_box {
  right: 0;
}
.home .charm .charm05 .charm_head span {
  right: 30px;
}
@media screen and (max-width: 768px) {
  .home .charm .charm05 .charm_head span {
    right: 0;
  }
}
.home .charm .charm05 figure:nth-of-type(2) {
  bottom: -101px;
  right: 450px;
}
@media screen and (max-width: 768px) {
  .home .charm .charm05 figure:nth-of-type(2) {
    bottom: -25px;
    right: 20px;
  }
}
.home .access {
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .home .access {
    padding-top: 20vw;
  }
}
@media screen and (max-width: 480px) {
  .home .access {
    padding-top: 30vw;
  }
}
.home .access .access_head {
  display: inline-block;
  position: relative;
  padding: 50px 210px 0;
  font-size: 2rem;
  font-weight: 900;
}
@media screen and (max-width: 480px) {
  .home .access .access_head {
    padding: 50px 35px 0;
    font-size: 1.8rem;
  }
}
.home .access .access_head::before, .home .access .access_head::after {
  position: absolute;
  bottom: 15px;
  content: "";
  width: 200px;
  height: 1px;
  background: #bfbfbf;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .home .access .access_head::before, .home .access .access_head::after {
    bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .home .access .access_head::before, .home .access .access_head::after {
    bottom: 18px;
    width: 100px;
  }
}
@media screen and (max-width: 480px) {
  .home .access .access_head::before, .home .access .access_head::after {
    bottom: 15px;
    width: 30px;
  }
}
.home .access .access_head::before {
  left: 0;
}
@media screen and (max-width: 768px) {
  .home .access .access_head::before {
    left: 50%;
    margin-left: -220px;
  }
}
@media screen and (max-width: 480px) {
  .home .access .access_head::before {
    margin-left: -140px;
  }
}
.home .access .access_head::after {
  right: 0;
}
@media screen and (max-width: 768px) {
  .home .access .access_head::after {
    right: 50%;
    margin-right: -220px;
  }
}
@media screen and (max-width: 480px) {
  .home .access .access_head::after {
    margin-right: -140px;
  }
}
.home .access .access_head.car {
  margin-bottom: 40px;
  background: url(../img/index/ico_car.png) no-repeat 50% 5px;
  background-size: 45px 28px;
}
.home .access .access_head.train {
  margin-bottom: 10px;
  background: url(../img/index/ico_train.png) no-repeat 50% 1px;
  background-size: 37px 47px;
}
.home .access .access_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 1040px;
  margin: 0 auto 60px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .home .access .access_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
}
.home .access .access_inner > div {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .home .access .access_inner > div {
    margin-bottom: 0;
  }
}
.home .access .access_inner > div:last-of-type {
  margin-bottom: 0;
}
.home .access .access_inner .from_head {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .home .access .access_inner .from_head {
    position: relative;
    padding: 10px 30px 10px 10px;
    background: rgba(191, 191, 191, 0.2);
    font-size: 1.8rem;
  }
  .home .access .access_inner .from_head::after {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    content: "\f067";
    color: #084e72;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    background: none !important;
  }
}
.home .access .access_inner .from_head.open::after {
  content: "\f068";
  font-weight: 900;
}
.home .access .access_inner .routeTtl {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .home .access .access_inner .routeTtl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .home .access .access_inner .route {
    margin-bottom: 50px;
    padding-left: 10px;
  }
}
.home .access .access_inner .route p {
  position: relative;
  margin-bottom: 30px;
  padding-left: 35px;
}
.home .access .access_inner .route p::before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  width: 15px;
  height: 15px;
  border: 5px solid #ccc;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.home .access .access_inner .route p::after {
  position: absolute;
  top: 20px;
  left: 5px;
  content: "";
  width: 5px;
  height: 45px;
  background: rgba(204, 204, 204, 0.15);
  z-index: -1;
}
.home .access .access_inner .route p:last-of-type {
  margin-bottom: 0;
}
.home .access .access_inner .route p:last-of-type::after {
  content: none;
}
.home .access .access_inner .route p.long::after {
  height: 95px;
}
.home .access .access_inner .route p span {
  display: block;
  margin-top: 30px;
  font-size: 1.4rem;
}
.home .access .access_inner .from_kyoto .from_head span {
  color: #084e72;
}
.home .access .access_inner .from_kyoto p::before {
  border: 5px solid #084e72;
}
.home .access .access_inner .from_kyoto p::after {
  background: rgba(8, 78, 114, 0.15);
}
.home .access .access_inner .from_osaka .from_head span {
  color: #907c10;
}
.home .access .access_inner .from_osaka p::before {
  border: 5px solid #907c10;
}
.home .access .access_inner .from_osaka p::after {
  background: rgba(144, 124, 16, 0.15);
}
.home .access .access_inner .from_nagoya .from_head span {
  color: #961121;
}
.home .access .access_inner .from_nagoya p::before {
  border: 5px solid #961121;
}
.home .access .access_inner .from_nagoya p::after {
  background: rgba(150, 17, 33, 0.15);
}
.home .access .access_inner.train .from_head span {
  display: block;
}
.home .access .train_lead {
  margin-bottom: 40px;
  font-weight: 400;
}
.home .access .parking_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 650px;
  margin: 0 auto 95px;
}
@media screen and (max-width: 768px) {
  .home .access .parking_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
}
.home .access .parking_info .parking_text {
  padding: 60px 50px 70px;
  background: url(../img/common/bg_paper.png) no-repeat 0 0;
  background-size: cover;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .home .access .parking_info .parking_text {
    padding: 40px;
  }
}
.home .access .parking_info .parking_text .parking_head {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 5px;
  font-size: 2rem;
  font-weight: 900;
}
.home .access .parking_info .parking_text .parking_head::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 30px;
  height: 1px;
  background: #959595;
}
.home .access .parking_info .parking_img {
  -ms-flex-preferred-size: 325px;
      flex-basis: 325px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .home .access .parking_info .parking_img {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.home .access .parking_info .parking_img figure:nth-of-type(1) {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100% - 140px);
}
@media screen and (max-width: 768px) {
  .home .access .parking_info .parking_img figure:nth-of-type(1) {
    height: 160px;
  }
}
@media screen and (max-width: 480px) {
  .home .access .parking_info .parking_img figure:nth-of-type(1) {
    height: 100px;
  }
}
.home .access .parking_info .parking_img figure:nth-of-type(1) img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .home .access .parking_info .parking_img figure:nth-of-type(1) img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 480px) {
  .home .access .parking_info .parking_img figure:nth-of-type(1) img {
    width: auto;
    height: 100%;
  }
}
.home .access .parking_info .parking_img figure:nth-of-type(2) {
  width: 325px;
  height: 140px;
}
@media screen and (max-width: 768px) {
  .home .access .parking_info .parking_img figure:nth-of-type(2) {
    width: 100%;
    height: auto;
  }
}
.home .map {
  position: relative;
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 768px) {
  .home .map {
    height: 75vw;
  }
}
.home .map::before {
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "地図";
  padding-top: 20px;
  background: #fff;
  font-size: 2.5rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 1em;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .home .map::before {
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .home .map::before {
    content: none;
  }
}
.home .map iframe {
  width: 100% !important;
  height: 100%;
}

/* -------------------------------------------------------------------------

		contents.sass

		各ページ固有のスタイルを定義

------------------------------------------------------------------------- */
/* plan - ご宿泊・お料理プラン
------------------------------------------------- */
.plan .page_lead {
  margin-bottom: 60px;
}
.plan .contents:not(:last-of-type) {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .plan .contents:not(:last-of-type) {
    margin-bottom: 120px;
  }
}
.plan .menu_top {
  position: relative;
}
.plan .menu_lead {
  position: absolute;
  top: -70px;
  height: 100px;
  background: #fff;
  font-size: 2.4rem;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .plan .menu_lead {
    position: relative;
    top: 0;
    left: 0 !important;
    height: auto;
    margin-bottom: 20px;
    padding: 0 20px;
    font-size: 2rem;
  }
}
.plan .menu_lead .season {
  display: inline-block;
  width: 100px;
  height: 100px;
  color: #fff;
  font-size: 6rem;
  font-weight: 400;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .plan .menu_lead .season {
    position: absolute;
    top: -60px;
    left: 0;
    width: 50px;
    height: 50px;
    font-size: 3rem;
  }
}
.plan .menu_lead .text {
  display: inline-block;
  padding: 10px 20px;
  vertical-align: middle;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .plan .menu_lead .text {
    padding: 15px 20px 5px;
  }
}
@media screen and (max-width: 768px) {
  .plan .menu_lead .text {
    padding: 0;
  }
}
.plan .menu_image {
  width: 100%;
  height: 439px;
}
@media screen and (max-width: 768px) {
  .plan .menu_image {
    height: auto;
    margin-bottom: 20px;
  }
}
.plan .menu_image img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .plan .menu_image img {
    width: 100%;
    height: auto;
  }
}
.plan .menu_box {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/bg_paper.png) no-repeat 50% 50%;
  background-size: cover;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .plan .menu_box {
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin: 0 20px;
  }
}
.plan .menu_box_inner {
  position: relative;
  padding: 40px 50px;
}
@media screen and (max-width: 768px) {
  .plan .menu_box_inner {
    padding: 40px 20px;
  }
}
.plan .menu_box_inner::before {
  position: absolute;
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  z-index: -1;
}
.plan .menu_box_inner::after {
  position: absolute;
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  z-index: -1;
}
.plan .menu_box_inner .menu_head {
  margin-bottom: 40px;
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .plan .menu_box_inner .menu_head {
    margin-bottom: 20px;
    font-size: 6vw;
  }
}
.plan .menu_box_inner .menu_head span {
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  .plan .menu_box_inner .menu_head span {
    font-size: 4vw;
  }
}
.plan .menu_box_inner ul {
  display: inline-block;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 480px) {
  .plan .menu_box_inner ul {
    display: block;
    margin-left: 30px;
  }
}
.plan .menu_box_inner ul:first-of-type {
  margin-right: 50px;
}
@media screen and (max-width: 480px) {
  .plan .menu_box_inner ul:first-of-type {
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.plan .menu_box_inner ul li {
  margin-bottom: 5px;
}
.plan .menu_box_inner ul li:last-of-type {
  margin-bottom: 0;
}
.plan .menu_box_inner ul li span {
  font-size: 1.4rem;
}
.plan .price_table {
  width: 550px;
  margin: 50px auto 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plan .price_table {
    width: 100%;
    padding: 0 20px;
  }
}
.plan .price_table .price_head {
  display: inline-block;
  padding: 5px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 2.4rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .plan .price_table .price_head {
    padding: 8px 0 2px;
  }
}
@media screen and (max-width: 768px) {
  .plan .price_table .price_head {
    font-size: 2rem;
  }
}
.plan .price_table .price_head span {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .plan .price_table .price_head span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .plan .price_table table {
    display: block;
  }
  .plan .price_table table tbody {
    display: block;
  }
}
.plan .price_table tr {
  border-bottom: 1px solid #bfbfbf;
}
@media screen and (max-width: 768px) {
  .plan .price_table tr {
    display: block;
  }
}
.plan .price_table th {
  width: 330px;
  padding: 30px;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .plan .price_table th {
    display: block;
    width: 100%;
    padding: 20px 20px 5px;
  }
}
.plan .price_table td {
  padding: 30px;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .plan .price_table td {
    display: block;
    padding: 0 20px 20px;
    font-size: 1.8rem;
  }
}
.plan .price_table .note {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .plan .price_table .note {
    margin-left: 1.3em;
    text-indent: -1.3em;
    text-align: left;
  }
}
.plan .plan_winter {
  margin-top: -220px;
  padding-top: 220px;
}
@media screen and (max-width: 768px) {
  .plan .plan_winter {
    margin-top: -130px;
    padding-top: 130px;
  }
}
.plan .plan_winter .menu_lead {
  left: 30px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .plan .plan_winter .season {
    padding-top: 10px;
  }
}
.plan .plan_winter .menu_image {
  text-align: left;
}
.plan .plan_winter .menu_box {
  right: 0;
  border-top: 3px solid #1d5386;
  padding-top: 2px;
}
.plan .plan_winter .menu_box > div {
  border-top: 1px solid #1d5386;
  border-bottom: 1px solid #1d5386;
}
.plan .plan_winter .menu_box > div > p {
  color: #1d5386;
}
.plan .plan_winter .menu_box_inner::before {
  top: 0;
  right: 0;
  width: 83px;
  height: 77px;
  background-image: url(../img/plan/ico_plan_01.png);
}
.plan .plan_winter .menu_head span {
  display: block;
}
.plan .plan_winter .menu_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .plan .plan_winter .menu_img {
    padding: 0 20px;
  }
}
.plan .plan_winter .menu_img li {
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 768px) {
  .plan .plan_winter .menu_img li {
    width: calc((100% - 20px) / 2);
  }
}
.plan .plan_winter .menu_img li:nth-last-of-type(n + 4) {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .plan .plan_winter .menu_img li:nth-last-of-type(n + 4) {
    margin-bottom: 20px;
  }
}
.plan .plan_season {
  margin-top: -220px;
  padding-top: 220px;
}
@media screen and (max-width: 768px) {
  .plan .plan_season {
    margin-top: -130px;
    padding-top: 130px;
  }
}
.plan .plan_season .menu_lead {
  right: 30px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .plan .plan_season .season {
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .plan .plan_season .season:nth-of-type(2) {
    left: 50px;
  }
  .plan .plan_season .season:nth-of-type(3) {
    left: 100px;
  }
}
.plan .plan_season .menu_image {
  text-align: right;
}
.plan .plan_season .menu_box {
  left: 120px;
  border-top: 3px solid #ab327c;
  padding-top: 2px;
}
.plan .plan_season .menu_box > div {
  border-top: 1px solid #ab327c;
  border-bottom: 1px solid #ab327c;
}
.plan .plan_season .menu_box > div > p {
  color: #ab327c;
}
.plan .plan_season .menu_box_inner::before {
  bottom: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background-image: url(../img/plan/ico_plan_02.png);
}
@media screen and (max-width: 480px) {
  .plan .plan_season .menu_box_inner::before {
    right: 0;
    left: auto;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
.plan .plan_others .menu_lead {
  padding: 10px 20px;
  border-top: 2px solid #ccc;
}
@media screen and (max-width: 768px) {
  .plan .plan_others .menu_lead {
    display: inline-block;
    padding: 10px 0;
  }
}
.plan .plan_others .menu_text {
  margin-top: 50px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .plan .plan_others .menu_text {
    padding: 0 20px;
    text-align: left;
  }
}
.plan .steak .menu_lead {
  left: 30px;
  padding: 0 20px;
  border-top-color: #a0641e;
  line-height: 100px;
}
@media screen and (max-width: 768px) {
  .plan .steak .menu_lead {
    padding: 10px 0;
    line-height: 1.7;
  }
}
.plan .steak .menu_lead span {
  padding: 0 5px;
  font-size: 1.8rem;
}
.plan .steak .menu_image {
  margin-bottom: 30px;
  text-align: left;
}
.plan .steak .second_image {
  width: 100%;
  height: 439px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .plan .steak .second_image {
    height: auto;
    margin-bottom: 20px;
  }
}
.plan .steak .second_image img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .plan .steak .second_image img {
    width: 100%;
    height: auto;
  }
}
.plan .steak .menu_box {
  top: 25%;
  right: 50px;
  border-top: 3px solid #a0641e;
  padding-top: 2px;
}
.plan .steak .menu_box > div {
  border-top: 1px solid #a0641e;
  border-bottom: 1px solid #a0641e;
}
.plan .steak .menu_box > div > p {
  color: #a0641e;
}
.plan .steak .menu_box_inner::before {
  bottom: 20px;
  left: 0;
  width: 48px;
  height: 60px;
  background-image: url(../img/plan/ico_plan_03.png);
}
@media screen and (max-width: 480px) {
  .plan .steak .menu_box_inner::before {
    right: 0;
    left: auto;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
.plan .steak .menu_box_inner::after {
  top: 10px;
  right: 20px;
  width: 33px;
  height: 33px;
  background-image: url(../img/plan/ico_plan_03_2.png);
}
@media screen and (max-width: 480px) {
  .plan .steak .menu_box_inner::after {
    right: auto;
    left: 20px;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
.plan .steak li {
  font-family: YakuHanMP, "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.plan .steak span {
  padding: 0 5px;
  font-size: 1.4rem;
}
.plan .steak .menu_text {
  position: absolute;
  bottom: 15%;
  left: 0;
  margin-top: 0;
  padding: 50px 30px;
  background: #fff;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .plan .steak .menu_text {
    position: static;
    margin-top: 50px;
    padding: 0 20px;
  }
}
.plan .oysters .menu_lead {
  left: 30px;
  border-top-color: #099dbd;
}
.plan .oysters .menu_image {
  text-align: left;
}
.plan .oysters .menu_box {
  top: 35%;
  right: 120px;
  border-top: 3px solid #099dbd;
  padding-top: 2px;
}
.plan .oysters .menu_box > div {
  border-top: 1px solid #099dbd;
  border-bottom: 1px solid #099dbd;
}
.plan .oysters .menu_box > div > p {
  color: #099dbd;
}
.plan .oysters .menu_box_inner::before {
  bottom: 0;
  right: 10px;
  width: 62px;
  height: 56px;
  background-image: url(../img/plan/ico_plan_04.png);
}
.plan .breakfast .menu_lead {
  right: 30px;
  border-top-color: #f89b09;
}
.plan .breakfast .menu_image {
  margin-bottom: 30px;
  text-align: right;
}
.plan .breakfast .menu_box {
  top: 25%;
  left: 20px;
  border-top: 3px solid #f89b09;
  padding-top: 2px;
}
.plan .breakfast .menu_box > div {
  border-top: 1px solid #f89b09;
  border-bottom: 1px solid #f89b09;
}
.plan .breakfast .menu_box > div > p {
  color: #f89b09;
}
.plan .breakfast .second_image {
  width: 100%;
  height: 439px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .plan .breakfast .second_image {
    height: auto;
    margin-top: 30px;
  }
}
.plan .breakfast .second_image img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .plan .breakfast .second_image img {
    width: 100%;
    height: auto;
  }
}
.plan .breakfast .menu_text {
  position: absolute;
  bottom: 15%;
  right: 0;
  margin-top: 0;
  padding: 50px 30px;
  background: #fff;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .plan .breakfast .menu_text {
    position: static;
    margin-top: 50px;
    padding: 0 20px;
  }
}
.plan .breakfast .menu_box_inner::before {
  bottom: 0;
  right: 80px;
  width: 73px;
  height: 53px;
  background-image: url(../img/plan/ico_plan_05.png);
}
@media screen and (max-width: 768px) {
  .plan .breakfast .menu_box_inner::before {
    right: 20px;
  }
}

/* -------------------------------------------------------------------------

		contents.sass

		各ページ固有のスタイルを定義

------------------------------------------------------------------------- */
/* information - 館内のご案内
------------------------------------------------- */
.information .inner {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .information .inner {
    margin-bottom: 50px;
  }
}
.information .info_inner {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .information .info_inner {
    margin-bottom: 30px;
  }
}
.information .info_inner.fig_l {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .information .info_inner.fig_l {
    text-align: center;
  }
}
.information .info_inner.fig_r {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .information .info_inner.fig_r {
    text-align: center;
  }
}
.information .main_img {
  display: inline-block;
  width: 707px;
  height: 439px;
}
@media screen and (max-width: 768px) {
  .information .main_img {
    width: 100%;
    height: auto;
  }
}
.information .sub_img_box {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .information .sub_img_box {
    position: static;
    padding: 0 20px;
  }
}
.information .sub_img_box figure {
  width: 320px;
}
@media screen and (max-width: 768px) {
  .information .sub_img_box figure {
    width: calc((100% - 10px) / 2);
  }
}
.information .sub_img_box.row figure:first-of-type {
  margin-right: 10px;
}
.information .sub_img_box.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .information .sub_img_box.column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.information .sub_img_box.column figure:first-of-type {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .information .sub_img_box.column figure:first-of-type {
    margin-bottom: 0;
    margin-right: 10px;
  }
}
.information .text_area {
  position: absolute;
  display: inline-block;
  padding: 40px 30px;
  background: #fff;
  font-weight: 400;
  text-align: left;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .information .text_area {
    position: static;
    padding: 20px;
  }
}
.information .text_area .detail_head {
  margin-bottom: 20px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .information .text_area .detail_head {
    margin-bottom: 10px;
  }
}
.information .bg_paper .inner {
  margin-bottom: 0;
}
.information .photo_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .information .photo_list {
    padding: 0 20px;
  }
}
.information .photo_list li {
  width: 325px;
}
@media screen and (max-width: 768px) {
  .information .photo_list li {
    width: 100%;
    margin-bottom: 20px;
  }
  .information .photo_list li:last-of-type {
    margin-bottom: 0;
  }
}
.information .photo_list figure figcaption {
  margin-top: 10px;
  padding: 0 10px;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .information .photo_list figure figcaption {
    margin-top: 5px;
  }
}
.information .info_lead {
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .information .info_lead {
    padding: 0 20px;
  }
}
.information .note {
  display: inline-block;
  margin-bottom: 80px;
  padding: 0 100px 20px;
  border-bottom: 1px solid #bfbfbf;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .information .note {
    width: calc(100% - 40px);
    margin: 0 20px 40px;
    padding: 0 0 20px;
  }
}
.information .note .note_head {
  position: relative;
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: 400;
}
.information .note .note_head::before, .information .note .note_head::after {
  position: absolute;
  top: 50%;
  content: "";
  height: 1px;
  margin-top: -1px;
  background: #bfbfbf;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .information .note .note_head::before, .information .note .note_head::after {
    margin-top: -3px;
  }
}
.information .bl_noteList {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 50px;
  padding: 0 100px 20px;
  border-bottom: 1px solid #bfbfbf;
  font-weight: 400;
  width: 100%;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .information .bl_noteList {
    width: calc(100% - 40px);
    margin: 40px 20px 40px;
    padding: 0 0 20px;
  }
}
.information .bl_noteList_ttl {
  position: relative;
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: 400;
}
.information .bl_noteList_ttl:not(:first-child) {
  margin-top: 20px;
}
.information .bl_noteList_ttl::before, .information .bl_noteList_ttl::after {
  width: 180px;
  position: absolute;
  top: 50%;
  content: "";
  height: 1px;
  margin-top: -1px;
  background: #bfbfbf;
}
@media screen and (max-width: 768px) {
  .information .bl_noteList_ttl::before, .information .bl_noteList_ttl::after {
    width: calc((100% - 9em) / 2);
  }
}
.information .bl_noteList_ttl::before {
  left: -100px;
}
@media screen and (max-width: 768px) {
  .information .bl_noteList_ttl::before {
    left: 0;
  }
}
.information .bl_noteList_ttl::after {
  right: -100px;
}
@media screen and (max-width: 768px) {
  .information .bl_noteList_ttl::after {
    right: 0;
  }
}
.information .bl_noteList ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .information .bl_noteList ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
.information .bl_noteList li {
  text-align: center;
  margin: 0 !important;
}
@media screen and (max-width: 768px) {
  .information .bl_noteList li {
    width: 100%;
  }
}
.information .info_top {
  margin-bottom: 220px;
  background: url(../img/information/bg_info_top.png) no-repeat 100% 100%;
  background-size: 311px 280px;
}
@media screen and (max-width: 768px) {
  .information .info_top {
    margin-bottom: 50px;
    padding-bottom: 10vw;
    background-size: 30vw 27vw;
  }
}
.information .info_top .info_inner {
  width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .information .info_top .info_inner {
    width: 100%;
  }
}
.information .info_top .text_area {
  bottom: 79px;
  left: 680px;
}
.information .info_top .text_area dl {
  width: 220px;
  letter-spacing: -0.5em;
}
.information .info_top .text_area dt {
  display: inline-block;
  width: 160px;
  margin-bottom: 10px;
  letter-spacing: normal;
}
.information .info_top .text_area dt:last-of-type {
  margin-bottom: 0;
}
.information .info_top .text_area dd {
  display: inline-block;
  width: calc(100% - 160px);
  margin-bottom: 10px;
  letter-spacing: normal;
}
.information .info_top .text_area dd:last-of-type {
  margin-bottom: 0;
}
.information .info_top .sub_img_box {
  bottom: -120px;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .information .room li {
    margin-bottom: 20px;
  }
  .information .room li:last-of-type {
    margin-bottom: 0;
  }
}
.information .room li:nth-last-of-type(n + 4) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .information .room li:nth-last-of-type(n + 4) {
    margin-bottom: 20px;
  }
}
.information .bath {
  background: url(../img/information/bg_info_bath.png) no-repeat 0 40%;
  background-size: 306px 280px;
}
@media screen and (max-width: 768px) {
  .information .bath {
    background-size: 30vw 27vw;
  }
}
.information .bath .info_inner {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .information .bath .info_inner {
    margin-bottom: 40px;
  }
}
.information .bath .text_area {
  bottom: 0;
  right: 0;
  width: 210px;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .information .bath .text_area {
    height: auto;
  }
}
.information .bath .text_area li:first-of-type {
  margin-bottom: 5px;
}
.information .bath .sub_img_box {
  top: 20px;
  left: 43px;
}
.information .bath .note .note_head::before, .information .bath .note .note_head::after {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .information .bath .note .note_head::before, .information .bath .note .note_head::after {
    width: calc((100% - 9em) / 2);
  }
}
.information .bath .note .note_head::before {
  left: -100px;
}
@media screen and (max-width: 768px) {
  .information .bath .note .note_head::before {
    left: 0;
  }
}
.information .bath .note .note_head::after {
  right: -100px;
}
@media screen and (max-width: 768px) {
  .information .bath .note .note_head::after {
    right: 0;
  }
}
.information .bath .note ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .information .bath .note ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.information .bath .note li {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .information .bath .note li {
    width: 100%;
  }
}
.information .bath .note li:nth-last-of-type(n + 4) {
  margin-bottom: 5px;
}
.information .hall .hall_inner {
  background: url(../img/information/bg_info_hall.png) no-repeat 100% 50%;
  background-size: 306px 280px;
}
@media screen and (max-width: 768px) {
  .information .hall .hall_inner {
    background-position-y: 38%;
    background-size: 30vw 27vw;
  }
}
.information .hall .sub_img_box {
  top: 20px;
  right: 40px;
}
@media screen and (max-width: 768px) {
  .information .hall .sub_img_box {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .information .hall li {
    margin-bottom: 20px;
  }
  .information .hall li:last-of-type {
    margin-bottom: 0;
  }
}
.information .hall li:nth-last-of-type(n + 4) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .information .hall li:nth-last-of-type(n + 4) {
    margin-bottom: 20px;
  }
}
.information .appearance {
  background: url(../img/information/bg_info_appearance.png) no-repeat 0 50%;
  background-size: 307px 280px;
}
@media screen and (max-width: 768px) {
  .information .appearance {
    background-position-y: 45%;
    background-size: 30vw 27vw;
  }
}
.information .appearance .inner {
  margin-bottom: 0;
}
.information .appearance .sub_img_box {
  top: 20px;
  left: 40px;
}
@media screen and (max-width: 768px) {
  .information .appearance .sub_img_box {
    margin-top: 20px;
  }
}
.information .appearance .note_head::before, .information .appearance .note_head::after {
  width: calc((100% - 11em) / 2);
}
.information .appearance .note_head::before {
  left: 0;
}
.information .appearance .note_head::after {
  right: 0;
}
.information .appearance dl {
  display: inline-block;
  width: 230px;
  text-align: left;
  letter-spacing: -0.5em;
}
@media screen and (max-width: 768px) {
  .information .appearance dl {
    display: block;
    width: 100%;
    padding: 0 20vw;
  }
}
.information .appearance dl dt {
  display: inline-block;
  width: 110px;
  margin-bottom: 10px;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .information .appearance dl dt {
    width: 50%;
  }
}
.information .appearance dl dd {
  display: inline-block;
  width: calc(100% - 110px);
  margin-bottom: 10px;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .information .appearance dl dd {
    width: 50%;
  }
}
.information .spot {
  margin-bottom: 240px;
  background: url(../img/information/bg_info_spot.png) no-repeat 100% 100%;
  background-size: 307px 280px;
}
@media screen and (max-width: 768px) {
  .information .spot {
    margin-bottom: 80px;
    padding-bottom: 2vw;
    background-size: 30vw 27vw;
  }
}
@media screen and (max-width: 768px) {
  .information .spot .inner {
    margin-bottom: 0;
  }
}
.information .spot .text_area {
  right: -40px;
  bottom: 59px;
}
.information .spot .text_area ul {
  margin-bottom: 20px;
}
.information .spot .text_area li {
  margin-bottom: 5px;
  margin-left: 1em;
  text-indent: -1em;
}
.information .spot .text_area li::before {
  content: "・";
}
.information .spot .text_area a {
  color: #084e72;
  text-decoration: underline;
}
.information .spot .text_area a:hover {
  color: #8c7e52;
}
.information .spot .sub_img_box {
  bottom: -140px;
  left: 20px;
}

/* -------------------------------------------------------------------------

		contents.sass

		各ページ固有のスタイルを定義

------------------------------------------------------------------------- */
/* sightseeing - 観光のご案内
------------------------------------------------- */
.sightseeing section {
  position: relative;
  text-align: center;
}
.sightseeing section .ss_inner {
  width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sightseeing section .ss_inner {
    width: 100%;
    padding: 0 20px;
  }
}
.sightseeing section .ss_lead {
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 2;
}
.sightseeing section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sightseeing section ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sightseeing section li {
  width: 325px;
}
@media screen and (max-width: 768px) {
  .sightseeing section li {
    width: 100%;
    margin-bottom: 40px;
  }
  .sightseeing section li:last-of-type {
    margin-bottom: 0;
  }
}
.sightseeing section li:nth-last-of-type(n + 4) {
  margin-bottom: 40px;
}
.sightseeing section figcaption {
  margin-top: 10px;
  padding: 0 10px;
  font-weight: 400;
  text-align: left;
}
.sightseeing .viewland {
  padding-bottom: 100px;
  background: url(../img/sightseeing/bg_ss_01.png) no-repeat 100% 15%;
}
@media screen and (max-width: 768px) {
  .sightseeing .viewland {
    background-position-y: 10%;
  }
}
.sightseeing .sea::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: 100%;
  height: 70px;
  background: url(../img/sightseeing/bg_ss_02.png) repeat-x 0 50%;
}
.sightseeing .sea ul {
  position: relative;
  z-index: 1;
}
.sightseeing .temple {
  padding-bottom: 100px;
}
.sightseeing .bridge::before {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 25vw;
  height: 70px;
  background: url(../img/sightseeing/bg_ss_03.png) repeat-x 0 50%;
}
@media screen and (max-width: 768px) {
  .sightseeing .bridge::before {
    top: 32%;
  }
}
.sightseeing .bridge ul {
  position: relative;
  z-index: 1;
}
.sightseeing .ferry {
  padding-bottom: 100px;
  background: url(../img/sightseeing/bg_ss_04.png) no-repeat 0 5%;
}
.sightseeing .shopping {
  padding-bottom: 100px;
}
.sightseeing .shopping::before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 50vw;
  height: 70px;
  background: url(../img/sightseeing/bg_ss_05.png) no-repeat 100% 100%;
}
.sightseeing .shopping ul {
  position: relative;
  z-index: 1;
}

/* -------------------------------------------------------------------------

		print.sass

		印刷用のスタイルを定義

------------------------------------------------------------------------- */
@media print {
  /* IE zoom
  ------------------------------------------------- */
  /* for IE6 or older */
  * html body {
    zoom: 0.7;
  }
  /* for IE7 */
  * + html body {
    zoom: 1;
  }
}
/*# sourceMappingURL=style.css.map */