@charset "UTF-8";
.croppie-container {
    width: 100%;
    height: 100%;
}
.croppie-container .cr-image {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    max-height: none;
    max-width: none;
}
.croppie-container .cr-boundary {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.croppie-container .cr-viewport,
.croppie-container .cr-resizer {
    position: absolute;
    border: 2px solid #fff;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.croppie-container .cr-resizer {
  z-index: 2;
  box-shadow: none;
  pointer-events: none;
}
.croppie-container .cr-resizer-vertical,
.croppie-container .cr-resizer-horisontal {
  position: absolute;
  pointer-events: all;
}
.croppie-container .cr-resizer-vertical::after,
.croppie-container .cr-resizer-horisontal::after {
    display: block;
    position: absolute;
    box-sizing: border-box;
    border: 1px solid black;
    background: #fff;
    width: 10px;
    height: 10px;
    content: '';
}
.croppie-container .cr-resizer-vertical {
  bottom: -5px;
  cursor: row-resize;
  width: 100%;
  height: 10px;
}
.croppie-container .cr-resizer-vertical::after {
    left: 50%;
    margin-left: -5px;
}
.croppie-container .cr-resizer-horisontal {
  right: -5px;
  cursor: col-resize;
  width: 10px;
  height: 100%;
}
.croppie-container .cr-resizer-horisontal::after {
    top: 50%;
    margin-top: -5px;
}
.croppie-container .cr-original-image {
    display: none;
}
.croppie-container .cr-vp-circle {
    border-radius: 50%;
}
.croppie-container .cr-overlay {
    z-index: 1;
    position: absolute;
    cursor: move;
    touch-action: none;
}
.croppie-container .cr-slider-wrap {
    width: 75%;
    margin: 15px auto;
    text-align: center;
}
.croppie-result {
    position: relative;
    overflow: hidden;
}
.croppie-result img {
    position: absolute;
}
.croppie-container .cr-image,
.croppie-container .cr-overlay,
.croppie-container .cr-viewport {
    transform: translateZ(0);
}
/*************************************/
/***** STYLING RANGE INPUT ***********/
/*************************************/
/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
/*************************************/
.cr-slider {
    -webkit-appearance: none;
/*removes default webkit styles*/
	/*border: 1px solid white; *//*fix for FF unable to apply focus style bug */
    width: 300px;
/*required for proper track sizing in FF*/
    max-width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: transparent;
}
.cr-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}
.cr-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top: -6px;
}
.cr-slider:focus {
    outline: none;
}
/*
.cr-slider:focus::-webkit-slider-runnable-track {
background: #ccc;
}
*/
.cr-slider::-moz-range-track {
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    border-radius: 3px;
}
.cr-slider::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #ddd;
    margin-top: -6px;
}
/*hide the outline behind the border*/
.cr-slider:-moz-focusring {
    outline: 1px solid white;
    outline-offset: -1px;
}
.cr-slider::-ms-track {
    width: 100%;
    height: 5px;
    background: transparent;
/*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
	border-color: transparent;/*leave room for the larger thumb to overflow with a transparent border */
	border-width: 6px 0;
	color: transparent;/*remove default tick marks*/
}
.cr-slider::-ms-fill-lower {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
}
.cr-slider::-ms-fill-upper {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
}
.cr-slider::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #ddd;
	margin-top:1px;
}
.cr-slider:focus::-ms-fill-lower {
	background: rgba(0, 0, 0, 0.5);
}
.cr-slider:focus::-ms-fill-upper {
	background: rgba(0, 0, 0, 0.5);
}
/*******************************************/
/***********************************/
/* Rotation Tools */
/***********************************/
.cr-rotate-controls {
	position: absolute;
	bottom: 5px;
	left: 5px;
	z-index: 1;
}
.cr-rotate-controls button {
	border: 0;
	background: none;
}
.cr-rotate-controls i:before {
	display: inline-block;
	font-style: normal;
	font-weight: 900;
	font-size: 22px;
}
.cr-rotate-l i:before {
	content: '↺';
}
.cr-rotate-r i:before {
	content: '↻';
}
.PresetDateRangePicker_panel {
  padding: 0 22px 11px
}
.PresetDateRangePicker_button {
  position: relative;
  height: 100%;
  text-align: center;
  background: 0 0;
  border: 2px solid #00a699;
  color: #00a699;
  padding: 4px 12px;
  margin-right: 8px;
  font: inherit;
  font-weight: 700;
  line-height: normal;
  overflow: visible;
  box-sizing: border-box;
  cursor: pointer
}
.PresetDateRangePicker_button:active {
  outline: 0
}
.PresetDateRangePicker_button__selected {
  color: #fff;
  background: #00a699
}
.SingleDatePickerInput {
  display: inline-block;
  background-color: #fff
}
.SingleDatePickerInput__withBorder {
  border-radius: 2px;
  border: 1px solid #dbdbdb
}
.SingleDatePickerInput__rtl {
  direction: rtl
}
.SingleDatePickerInput__disabled {
  background-color: #f2f2f2
}
.SingleDatePickerInput__block {
  display: block
}
.SingleDatePickerInput__showClearDate {
  padding-right: 30px
}
.SingleDatePickerInput_clearDate {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%)
}
.SingleDatePickerInput_clearDate__default:focus,
.SingleDatePickerInput_clearDate__default:hover {
  background: #dbdbdb;
  border-radius: 50%
}
.SingleDatePickerInput_clearDate__small {
  padding: 6px
}
.SingleDatePickerInput_clearDate__hide {
  visibility: hidden
}
.SingleDatePickerInput_clearDate_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle
}
.SingleDatePickerInput_clearDate_svg__small {
  height: 9px
}
.SingleDatePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px
}
.SingleDatePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle
}
.SingleDatePicker {
  position: relative;
  display: inline-block
}
.SingleDatePicker__block {
  display: block
}
.SingleDatePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute
}
.SingleDatePicker_picker__rtl {
  direction: rtl
}
.SingleDatePicker_picker__directionLeft {
  left: 0
}
.SingleDatePicker_picker__directionRight {
  right: 0
}
.SingleDatePicker_picker__portal {
  background-color: rgba(0,0,0,.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}
.SingleDatePicker_picker__fullScreenPortal {
  background-color: #fff
}
.SingleDatePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2
}
.SingleDatePicker_closeButton:focus,
.SingleDatePicker_closeButton:hover {
  color: darken(#cacccd,10%);
  text-decoration: none
}
.SingleDatePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}
.DayPickerKeyboardShortcuts_buttonReset {
  background: 0 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  cursor: pointer;
  font-size: 14px
}
.DayPickerKeyboardShortcuts_buttonReset:active {
  outline: 0
}
.DayPickerKeyboardShortcuts_show {
  width: 33px;
  height: 26px;
  position: absolute;
  z-index: 2
}
.DayPickerKeyboardShortcuts_show::before {
  content: "";
  display: block;
  position: absolute
}
.DayPickerKeyboardShortcuts_show__bottomRight {
  bottom: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__bottomRight::before {
  border-top: 26px solid transparent;
  border-right: 33px solid #00a699;
  bottom: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__bottomRight:hover::before {
  border-right: 33px solid #008489
}
.DayPickerKeyboardShortcuts_show__topRight {
  top: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__topRight::before {
  border-bottom: 26px solid transparent;
  border-right: 33px solid #00a699;
  top: 0;
  right: 0
}
.DayPickerKeyboardShortcuts_show__topRight:hover::before {
  border-right: 33px solid #008489
}
.DayPickerKeyboardShortcuts_show__topLeft {
  top: 0;
  left: 0
}
.DayPickerKeyboardShortcuts_show__topLeft::before {
  border-bottom: 26px solid transparent;
  border-left: 33px solid #00a699;
  top: 0;
  left: 0
}
.DayPickerKeyboardShortcuts_show__topLeft:hover::before {
  border-left: 33px solid #008489
}
.DayPickerKeyboardShortcuts_showSpan {
  color: #fff;
  position: absolute
}
.DayPickerKeyboardShortcuts_showSpan__bottomRight {
  bottom: 0;
  right: 5px
}
.DayPickerKeyboardShortcuts_showSpan__topRight {
  top: 1px;
  right: 5px
}
.DayPickerKeyboardShortcuts_showSpan__topLeft {
  top: 1px;
  left: 5px
}
.DayPickerKeyboardShortcuts_panel {
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
  margin: 33px;
  text-align: left
}
.DayPickerKeyboardShortcuts_title {
  font-size: 16px;
  font-weight: 700;
  margin: 0
}
.DayPickerKeyboardShortcuts_list {
  list-style: none;
  padding: 0;
  font-size: 14px
}
.DayPickerKeyboardShortcuts_close {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2
}
.DayPickerKeyboardShortcuts_close:active {
  outline: 0
}
.DayPickerKeyboardShortcuts_closeSvg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}
.DayPickerKeyboardShortcuts_closeSvg:focus,
.DayPickerKeyboardShortcuts_closeSvg:hover {
  fill: #82888a
}
.CalendarDay {
  box-sizing: border-box;
  cursor: pointer;
  font-size: 14px;
  text-align: center
}
.CalendarDay:active {
  outline: 0
}
.CalendarDay__defaultCursor {
  cursor: default
}
.CalendarDay__default {
  border: 1px solid #e4e7e7;
  color: #484848;
  background: #fff
}
.CalendarDay__default:hover {
  background: #e4e7e7;
  border: 1px solid #e4e7e7;
  color: inherit
}
.CalendarDay__hovered_offset {
  background: #f4f5f5;
  border: 1px double #e4e7e7;
  color: inherit
}
.CalendarDay__outside {
  border: 0;
  background: #fff;
  color: #484848
}
.CalendarDay__outside:hover {
  border: 0
}
.CalendarDay__blocked_minimum_nights {
  background: #fff;
  border: 1px solid #eceeee;
  color: #cacccd
}
.CalendarDay__blocked_minimum_nights:active,
.CalendarDay__blocked_minimum_nights:hover {
  background: #fff;
  color: #cacccd
}
.CalendarDay__highlighted_calendar {
  background: #ffe8bc;
  color: #484848
}
.CalendarDay__highlighted_calendar:active,
.CalendarDay__highlighted_calendar:hover {
  background: #ffce71;
  color: #484848
}
.CalendarDay__selected_span {
  background: #66e2da;
  border: 1px double #33dacd;
  color: #fff
}
.CalendarDay__selected_span:active,
.CalendarDay__selected_span:hover {
  background: #33dacd;
  border: 1px double #33dacd;
  color: #fff
}
.CalendarDay__selected,
.CalendarDay__selected:active,
.CalendarDay__selected:hover {
  background: #00a699;
  border: 1px double #00a699;
  color: #fff
}
.CalendarDay__hovered_span,
.CalendarDay__hovered_span:hover {
  background: #b2f1ec;
  border: 1px double #80e8e0;
  color: #007a87
}
.CalendarDay__hovered_span:active {
  background: #80e8e0;
  border: 1px double #80e8e0;
  color: #007a87
}
.CalendarDay__blocked_calendar,
.CalendarDay__blocked_calendar:active,
.CalendarDay__blocked_calendar:hover {
  background: #cacccd;
  border: 1px solid #cacccd;
  color: #82888a
}
.CalendarDay__blocked_out_of_range,
.CalendarDay__blocked_out_of_range:active,
.CalendarDay__blocked_out_of_range:hover {
  background: #fff;
  border: 1px solid #e4e7e7;
  color: #cacccd
}
.CalendarDay__hovered_start_first_possible_end {
  background: #eceeee;
  border: 1px double #eceeee
}
.CalendarDay__hovered_start_blocked_min_nights {
  background: #eceeee;
  border: 1px double #e4e7e7
}
.CalendarMonth {
  background: #fff;
  text-align: center;
  vertical-align: top;
  user-select: none
}
.CalendarMonth_table {
  border-collapse: collapse;
  border-spacing: 0
}
.CalendarMonth_verticalSpacing {
  border-collapse: separate
}
.CalendarMonth_caption {
  color: #484848;
  font-size: 18px;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 37px;
  caption-side: initial
}
.CalendarMonth_caption__verticalScrollable {
  padding-top: 12px;
  padding-bottom: 7px
}
.CalendarMonthGrid {
  background: #fff;
  text-align: left;
  z-index: 0
}
.CalendarMonthGrid__animating {
  z-index: 1
}
.CalendarMonthGrid__horizontal {
  position: absolute;
  left: 9px
}
.CalendarMonthGrid__vertical,
.CalendarMonthGrid__vertical_scrollable {
  margin: 0 auto
}
.CalendarMonthGrid_month__horizontal {
  display: inline-block;
  vertical-align: top;
  min-height: 100%
}
.CalendarMonthGrid_month__hideForAnimation {
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none
}
.CalendarMonthGrid_month__hidden {
  visibility: hidden
}
.DayPickerNavigation {
  position: relative;
  z-index: 2
}
.DayPickerNavigation__horizontal {
  height: 0
}
.DayPickerNavigation__verticalScrollable_prevNav {
  z-index: 1
}
.DayPickerNavigation__verticalDefault {
  position: absolute;
  width: 100%;
  height: 52px;
  bottom: 0;
  left: 0
}
.DayPickerNavigation__verticalScrollableDefault {
  position: relative
}
.DayPickerNavigation__bottom {
  height: auto
}
.DayPickerNavigation__bottomDefault {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: flex;
  justify-content: space-between
}
.DayPickerNavigation_button {
  cursor: pointer;
  user-select: none;
  border: 0;
  padding: 0;
  margin: 0
}
.DayPickerNavigation_button__default {
  border: 1px solid #e4e7e7;
  background-color: #fff;
  color: #757575
}
.DayPickerNavigation_button__default:focus,
.DayPickerNavigation_button__default:hover {
  border: 1px solid #c4c4c4
}
.DayPickerNavigation_button__default:active {
  background: #f2f2f2
}
.DayPickerNavigation_button__disabled {
  cursor: default;
  border: 1px solid #f2f2f2
}
.DayPickerNavigation_button__disabled:focus,
.DayPickerNavigation_button__disabled:hover {
  border: 1px solid #f2f2f2
}
.DayPickerNavigation_button__disabled:active {
  background: 0 0
}
.DayPickerNavigation_button__horizontalDefault {
  position: absolute;
  top: 18px;
  line-height: .78;
  border-radius: 3px;
  padding: 6px 9px
}
.DayPickerNavigation_bottomButton__horizontalDefault {
  position: static;
  margin: -10px 22px 30px
}
.DayPickerNavigation_leftButton__horizontalDefault {
  left: 22px
}
.DayPickerNavigation_rightButton__horizontalDefault {
  right: 22px
}
.DayPickerNavigation_button__verticalDefault {
  padding: 5px;
  background: #fff;
  box-shadow: 0 0 5px 2px rgba(0,0,0,.1);
  position: relative;
  display: inline-block;
  text-align: center;
  height: 100%;
  width: 50%
}
.DayPickerNavigation_nextButton__verticalDefault {
  border-left: 0
}
.DayPickerNavigation_nextButton__verticalScrollableDefault,
.DayPickerNavigation_prevButton__verticalScrollableDefault {
  width: 100%
}
.DayPickerNavigation_svg__horizontal {
  height: 19px;
  width: 19px;
  fill: #82888a;
  display: block
}
.DayPickerNavigation_svg__vertical {
  height: 42px;
  width: 42px;
  fill: #484848
}
.DayPickerNavigation_svg__disabled {
  fill: #f2f2f2
}
.DayPicker {
  background: #fff;
  position: relative;
  text-align: left
}
.DayPicker__horizontal {
  background: #fff
}
.DayPicker__verticalScrollable {
  height: 100%
}
.DayPicker__hidden {
  visibility: hidden
}
.DayPicker__withBorder {
  box-shadow: 0 2px 6px rgba(0,0,0,.05),0 0 0 1px rgba(0,0,0,.07);
  border-radius: 3px
}
.DayPicker_portal__horizontal {
  box-shadow: none;
  position: absolute;
  left: 50%;
  top: 50%
}
.DayPicker_portal__vertical {
  position: initial
}
.DayPicker_focusRegion {
  outline: 0
}
.DayPicker_calendarInfo__horizontal,
.DayPicker_wrapper__horizontal {
  display: inline-block;
  vertical-align: top
}
.DayPicker_weekHeaders {
  position: relative
}
.DayPicker_weekHeaders__horizontal {
  margin-left: 9px
}
.DayPicker_weekHeader {
  color: #757575;
  position: absolute;
  top: 62px;
  z-index: 2;
  text-align: left
}
.DayPicker_weekHeader__vertical {
  left: 50%
}
.DayPicker_weekHeader__verticalScrollable {
  top: 0;
  display: table-row;
  border-bottom: 1px solid #dbdbdb;
  background: #fff;
  margin-left: 0;
  left: 0;
  width: 100%;
  text-align: center
}
.DayPicker_weekHeader_ul {
  list-style: none;
  margin: 1px 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px
}
.DayPicker_weekHeader_li {
  display: inline-block;
  text-align: center
}
.DayPicker_transitionContainer {
  position: relative;
  overflow: hidden;
  border-radius: 3px
}
.DayPicker_transitionContainer__horizontal {
  transition: height .2s ease-in-out
}
.DayPicker_transitionContainer__vertical {
  width: 100%
}
.DayPicker_transitionContainer__verticalScrollable {
  padding-top: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow-y: scroll
}
.DateInput {
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
  display: inline-block;
  width: 130px;
  vertical-align: middle
}
.DateInput__small {
  width: 97px
}
.DateInput__block {
  width: 100%
}
.DateInput__disabled {
  background: #f2f2f2;
  color: #dbdbdb
}
.DateInput_input {
  font-weight: 200;
  font-size: 19px;
  line-height: 24px;
  color: #484848;
  background-color: #fff;
  width: 100%;
  padding: 11px 11px 9px;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid transparent;
  border-left: 0;
  border-radius: 0
}
.DateInput_input__small {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: .2px;
  padding: 7px 7px 5px
}
.DateInput_input__regular {
  font-weight: auto
}
.DateInput_input__readOnly {
  user-select: none
}
.DateInput_input__focused {
  outline: 0;
  background: #fff;
  border: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 2px solid #008489;
  border-left: 0
}
.DateInput_input__disabled {
  background: #f2f2f2;
  font-style: italic
}
.DateInput_screenReaderMessage {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px
}
.DateInput_fang {
  position: absolute;
  width: 20px;
  height: 10px;
  left: 22px;
  z-index: 2
}
.DateInput_fangShape {
  fill: #fff
}
.DateInput_fangStroke {
  stroke: #dbdbdb;
  fill: transparent
}
.DateRangePickerInput {
  background-color: #fff;
  display: inline-block
}
.DateRangePickerInput__disabled {
  background: #f2f2f2
}
.DateRangePickerInput__withBorder {
  border-radius: 2px;
  border: 1px solid #dbdbdb
}
.DateRangePickerInput__rtl {
  direction: rtl
}
.DateRangePickerInput__block {
  display: block
}
.DateRangePickerInput__showClearDates {
  padding-right: 30px
}
.DateRangePickerInput_arrow {
  display: inline-block;
  vertical-align: middle;
  color: #484848
}
.DateRangePickerInput_arrow_svg {
  vertical-align: middle;
  fill: #484848;
  height: 24px;
  width: 24px
}
.DateRangePickerInput_clearDates {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  padding: 10px;
  margin: 0 10px 0 5px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%)
}
.DateRangePickerInput_clearDates__small {
  padding: 6px
}
.DateRangePickerInput_clearDates_default:focus,
.DateRangePickerInput_clearDates_default:hover {
  background: #dbdbdb;
  border-radius: 50%
}
.DateRangePickerInput_clearDates__hide {
  visibility: hidden
}
.DateRangePickerInput_clearDates_svg {
  fill: #82888a;
  height: 12px;
  width: 15px;
  vertical-align: middle
}
.DateRangePickerInput_clearDates_svg__small {
  height: 9px
}
.DateRangePickerInput_calendarIcon {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 5px 0 10px
}
.DateRangePickerInput_calendarIcon_svg {
  fill: #82888a;
  height: 15px;
  width: 14px;
  vertical-align: middle
}
.DateRangePicker {
  position: relative;
  display: inline-block
}
.DateRangePicker__block {
  display: block
}
.DateRangePicker_picker {
  z-index: 1;
  background-color: #fff;
  position: absolute
}
.DateRangePicker_picker__rtl {
  direction: rtl
}
.DateRangePicker_picker__directionLeft {
  left: 0
}
.DateRangePicker_picker__directionRight {
  right: 0
}
.DateRangePicker_picker__portal {
  background-color: rgba(0,0,0,.3);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%
}
.DateRangePicker_picker__fullScreenPortal {
  background-color: #fff
}
.DateRangePicker_closeButton {
  background: 0 0;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  z-index: 2
}
.DateRangePicker_closeButton:focus,
.DateRangePicker_closeButton:hover {
  color: darken(#cacccd,10%);
  text-decoration: none
}
.DateRangePicker_closeButton_svg {
  height: 15px;
  width: 15px;
  fill: #cacccd
}
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-container-pointer-events {
  touch-action: pan-y;
}
.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
:root {
  --color_base: #000A02;
  --color_sub: #868788;
  --color_icon: #C6C7C8;
  --color_border: #E3E4E5;
  --color_background: #F4F5F6;
  --color_series: #F12B00;
  --color_link: #224B8F;
  --color_dialog_1: #71A4D9;
  --color_dialog_2: #005E15;
  --color_dialog_3: #EA930A;
  --color_underline: #F5EA68;
  --color_job: #50B478;
  --color_facebook: #1877F2;
  --color_twitter: #00ACEE;
  --color_line: #06C755;
}
/* stylelint-disable number-no-trailing-zeros */
:root {
  --easing_ease_in: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --easing_ease_out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --easing_ease_in_out: cubic-bezier(0.645, 0.045, 0.355, 1);
}
:root {
  --font_base: -apple-system, "BlinkMacSystemFont", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  --font_en: "DM Sans", sans-serif;
}
:root {
  --position_sticky_top: 14.8rem;
}
/**
 * $tr_***: opacity 1s 0s ease;
 */
:root {
  --zindex_header: 100;
  --zindex_overlay: 105;
  --zindex_modal: 110;
  --zindex_date_picker: 110;
}
.imgmargin img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.l-inner-footer {
  display: none;
}
.titleListBox {
  display: none;
}
.l-article-sub-links a {
  color: var(--color_link);
}
.l-article-sub-description > dt {
  font-weight: 700;
}
span.name1 {
  color: #093;
}
span.name2 {
  color: #039;
}
span.name3 {
  color: #f63;
}
span.name4 {
  color: #306;
}
span.name5 {
  color: #600;
}
span.name6 {
  color: #c00;
}
span.name7 {
  color: #39f;
}
span.name8 {
  color: #f39;
}
span.namered1 {
  color: #c33;
}
span.namered2 {
  color: #8c2e2e;
}
span.nameorange1 {
  color: #f60;
}
span.namepink1 {
  color: #f36;
}
span.namepink2 {
  color: #f98baf;
}
span.namepink3 {
  color: #c65c7f;
}
span.namepink4 {
  color: #c10550;
}
span.nameblue1 {
  color: #06c;
}
span.nameblue2 {
  color: #039;
}
span.nameblue3 {
  color: #09c;
}
span.nameblue4 {
  color: #336;
}
span.nameblue5 {
  color: #205489;
}
span.namepurple1 {
  color: #8354b0;
}
span.namepurple2 {
  color: #a672d7;
}
span.namebrown1 {
  color: #7c5c3c;
}
span.namegreen1 {
  color: #096;
}
span.namegreen2 {
  color: #390;
}
span.namegreen3 {
  color: #363;
}
span.namegreen4 {
  color: #099;
}
span.namegreen5 {
  color: #094c3b;
}
span.nameyellow1 {
  color: #cc3;
}
span.nameyellow2 {
  color: #e99e07;
}
span.namegray1 {
  color: #666;
}
span.namepink6 {
  color: #da00a9;
}
span.namegray2 {
  color: #333;
}
span.namered3 {
  color: #8d122c;
}
span.namepink5 {
  color: #f31942;
}
span.nameblue6 {
  color: #6496c3;
}
.p-wysiwygModule > iframe {
  display: block;
}
.insmall {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--color_sub);
  line-height: 1.75;
}
:is(iframe, .p-movieModule) + .insmall {
  margin-top: 0 !important;
  padding-top: 0.5em;
}
#otoheya #headArea,
#otoheya .top,
#otoheya .intro,
#otoheya .photo,
#otoheya .nextBox,
#otoheya .mokujiBtn {
  display: none;
}
#otoheya .profile {
  margin: 2rem 0;
  border: solid 1px #dadada;
  padding: 2rem;
}
#otoheya .titBox {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
#otoheya .btmArea {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-size: 1.8rem;
  border: solid 1px #dadada;
  padding: 1.5rem;
}
.bodyBox h2 {
  background: none;
}
.bodyBox .leadcaption {
  text-align: left;
}
.bodyBox .bookmark {
  display: none;
}
.bodyBox .aoki-profile {
  border: solid 1px #dadada;
  padding: 1.5em;
  margin: 2rem 0;
}
.bodyBox .aoki-profile dt {
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.bodyBox .aoki-profile dd {
  line-height: 1.6;
}
.bodyBox h4 {
  margin: 3rem 0;
}
.bodyBox span.sub {
  display: block;
  font-size: 1.4rem;
  color: var(--color_sub);
}
.bodyBox .entryPageNum {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-size: 1.8rem;
  border: solid 1px #dadada;
  padding: 1.5rem;
}
.bodyBox .writerProfileBox {
  margin-top: 3rem;
}
.bodyBox .cap {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--color_sub);
  line-height: 1.75;
}
.bodyBox img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 1024px) {
  .l-article-sub-links a:hover {
    opacity: 0.6;
  }
}
.u-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
  font-family: "object-fit: cover;";
}
@media (max-width: 1023px) {
  .u-sp-hidden {
    display: none !important;
  }

  .u-sp-block {
    display: block !important;
  }

  .u-sp-flex {
    display: flex !important;
  }

  .u-sp-inlineBlock {
    display: inline-block !important;
  }

  .u-sp-inline {
    display: inline !important;
  }
}
@media (min-width: 1024px) {
  .u-sp-block,
.u-sp-flex {
    display: none !important;
  }

  .u-sp-inlineBlock {
    display: none !important;
  }

  .u-sp-inline {
    display: none !important;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Document
 * ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 */
:where(html) {
  line-height: 1.15; /* 1 */
}
/* Sections
 * ========================================================================== */
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin-block-end: 0.67em;
  margin-block-start: 0.67em;
}
/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin-block-end: 0;
  margin-block-start: 0;
}
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Correct the inheritance of border color in Firefox.
 */
:where(hr) {
  box-sizing: content-box; /* 1 */
  color: inherit; /* 2 */
  height: 0; /* 1 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}
/* Tabular data
 * ========================================================================== */
/**
 * 1. Correct table border color in Chrome, Edge, and Safari.
 * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-color: currentColor; /* 1 */
  text-indent: 0; /* 2 */
}
/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}
/**
 * Remove the inheritance of text transform in Firefox.
 */
:where(button) {
  text-transform: none;
}
/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, input:is([type="button" i], [type="reset" i], [type="submit" i])) {
  -webkit-appearance: button;
}
/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}
/**
 * Remove the inheritance of text transform in Firefox.
 */
:where(select) {
  text-transform: none;
}
/**
 * Remove the margin in Firefox and Safari.
 */
:where(textarea) {
  margin: 0;
}
/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where(input[type="search" i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
:where(button, input:is([type="button" i], [type="color" i], [type="reset" i], [type="submit" i]))::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:where(button, input:is([type="button" i], [type="color" i], [type="reset" i], [type="submit" i]))::-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Remove the additional :invalid styles in Firefox.
 */
:where(:-moz-ui-invalid) {
  box-shadow: none;
}
/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: fit-content;
}
:where(dialog:not([open])) {
  display: none;
}
/*
 * Add the correct display in all browsers.
 */
:where(summary) {
  display: list-item;
}
html {
  font-size: 10px;
  box-sizing: border-box;
}
html[data-modal=true] {
  overflow: hidden;
}
html[data-wait=true] {
  cursor: wait !important;
}
*,
::before,
::after {
  box-sizing: border-box;
}
body {
  margin: auto;
  word-wrap: break-word;
  font-family: var(--font_base);
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--color_base);
  font-feature-settings: "palt";
  overscroll-behavior-y: none;
}
a {
  text-decoration: none;
  color: inherit;
}
::selection {
  background: var(--color_border);
  color: var(--color_base);
}
i[class*=iconfont] {
  display: inline-flex;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
p {
  margin: 0;
}
em {
  font-style: normal;
}
figure {
  margin: 0;
}
ol,
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
dl {
  margin: 0;
  padding: 0;
}
dd {
  margin: 0;
}
input,
select {
  vertical-align: middle;
  border-radius: 0;
}
img {
  vertical-align: top;
}
fieldset,
legend {
  margin: 0;
  padding: 0;
}
fieldset {
  border: 0;
  min-width: 0;
}
legend {
  display: block;
}
hr {
  border: 0;
}
blockquote {
  margin: auto;
}
button {
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}
/* stylelint-disable */
@font-face {
  font-family: "iconfont";
  src: url("../fonts/iconfont.woff2?t=1657864072685") format("woff2"), url("../fonts/iconfont.woff?t=1657864072685") format("woff"), url("../fonts/iconfont.ttf?t=1657864072685") format("truetype");
}
[class^=iconfont-]::before, [class*=" iconfont-"]::before {
  font-family: "iconfont" !important;
  font-size: inherit;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
}
.iconfont-apple-music:before {
  content: "\ea01";
}
.iconfont-arrow-bottom:before {
  content: "\ea02";
}
.iconfont-arrow-left:before {
  content: "\ea03";
}
.iconfont-arrow-right:before {
  content: "\ea04";
}
.iconfont-arrow-series:before {
  content: "\ea05";
}
.iconfont-arrow-top:before {
  content: "\ea06";
}
.iconfont-bookmark:before {
  content: "\ea07";
}
.iconfont-calendar:before {
  content: "\ea08";
}
.iconfont-camera-circle:before {
  content: "\ea09";
}
.iconfont-camera:before {
  content: "\ea0a";
}
.iconfont-check-circle:before {
  content: "\ea0b";
}
.iconfont-check:before {
  content: "\ea0c";
}
.iconfont-chevron-right:before {
  content: "\ea0d";
}
.iconfont-clock:before {
  content: "\ea0e";
}
.iconfont-close:before {
  content: "\ea0f";
}
.iconfont-external:before {
  content: "\ea10";
}
.iconfont-eye-slash:before {
  content: "\ea11";
}
.iconfont-eye:before {
  content: "\ea12";
}
.iconfont-face:before {
  content: "\ea13";
}
.iconfont-facebook:before {
  content: "\ea14";
}
.iconfont-heart:before {
  content: "\ea15";
}
.iconfont-instagram:before {
  content: "\ea16";
}
.iconfont-line:before {
  content: "\ea17";
}
.iconfont-paper:before {
  content: "\ea18";
}
.iconfont-plus:before {
  content: "\ea19";
}
.iconfont-search:before {
  content: "\ea1a";
}
.iconfont-spark:before {
  content: "\ea1b";
}
.iconfont-speech:before {
  content: "\ea1c";
}
.iconfont-spotify:before {
  content: "\ea1d";
}
.iconfont-trash:before {
  content: "\ea1e";
}
.iconfont-twitter:before {
  content: "\ea1f";
}
.iconfont-user:before {
  content: "\ea20";
}
.iconfont-youtube:before {
  content: "\ea21";
}
.js-carousel {
  opacity: 0;
  transition: opacity 0.4s;
}
.js-carousel.swiper-container-initialized {
  opacity: 1;
}
.croppie-root {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  width: 100%;
  height: calc(var(--dvh, 100vh));
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: var(--zindex_modal);
}
.croppie-root[aria-hidden=true] {
  width: 0;
  height: 0;
  overflow: hidden;
}
.croppie-root::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  background: url("/assets/img/common/loader_white.svg") no-repeat;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s 0s ease;
  animation: rotate 1s 0s linear infinite;
}
.croppie-root.is-processing::after {
  opacity: 1;
  z-index: 1;
}
.croppie-container {
  height: auto;
}
.croppie-container .cr-viewport,
.croppie-container .cr-resizer {
  box-shadow: 0 0 2000px 2000px rgba(255, 255, 255, 0.85);
}
.cr-boundary,
.cr-slider-wrap,
.croppie-action {
  transition: opacity 0.4s 0s ease;
}
.is-processing .cr-boundary,
.is-processing .cr-slider-wrap,
.is-processing .croppie-action {
  pointer-events: none;
  opacity: 0.4;
}
.cr-boundary {
  border-radius: 5px;
}
.croppie-action {
  order: 1;
}
.croppie-action > button {
  margin: 0 20px;
  width: 100px;
  height: 40px;
  border-radius: 20px;
  background-color: #fff;
}
.js-datePicker .CalendarDay__today {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  background-color: var(--color_series);
}
.js-datePicker .CalendarMonth_caption {
  text-align: left;
  font-size: 2rem;
  padding: 27px 5px 50px;
  line-height: 1;
  color: var(--color_base);
}
.js-datePicker .CalendarMonth_caption {
  text-align: left;
}
.js-datePicker .CalendarDay__default {
  border: none;
  border-radius: 50%;
}
.js-datePicker .CalendarMonth.CalendarMonth_1 {
  min-width: 350px;
}
.js-datePicker .CalendarMonthGrid__horizontal {
  left: 0;
}
.js-datePicker .CalendarMonth_table {
  display: block;
  min-width: 100%;
}
.js-datePicker .CalendarMonth_table tbody {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.js-datePicker .CalendarMonth_table tr {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.js-datePicker .CalendarMonth_table td {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.js-datePicker .DayPicker__withBorder {
  min-width: 350px;
  padding-bottom: 17px;
}
.js-datePicker .DayPicker_transitionContainer.DayPicker_transitionContainer__horizontal {
  min-width: 350px;
}
.js-datePicker .CalendarDay.CalendarDay__default {
  width: 33px !important;
  height: 33px !important;
}
.js-datePicker .DayPicker_weekHeader {
  top: 61px;
}
.l-about__heading {
  font-weight: 700;
}
.l-about__eyecatch > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-about__label {
  display: inline-flex;
  font-weight: 700;
  color: var(--color_series);
  line-height: 1.7142857143;
}
.l-about__statement {
  font-weight: 700;
}
.l-about__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-about__logo > img {
  width: 23.5rem;
}
.l-about__subheading {
  font-weight: 700;
}
@media (max-width: 1023px) {
  .l-about__header {
    padding: 2.8rem 0;
  }

  .l-about__heading {
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .l-about__eyecatch {
    height: 100vw;
  }

  .l-about__label {
    font-size: 1.3rem;
  }

  .l-about__statement {
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
    line-height: 1.3928571429;
  }

  .l-about__content {
    padding-bottom: 2rem;
  }

  .l-about__lead {
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
    line-height: 2;
  }
  .l-about__lead > p:not(:last-child) {
    margin-bottom: 0.5rem;
  }

  .l-about__logo {
    height: 23rem;
    margin: 0 -1.5rem 2.5rem;
    border-top: 1px solid var(--color_border);
    border-bottom: 1px solid var(--color_border);
  }

  .l-about__subsection:not(:last-child) {
    margin-bottom: 2.5rem;
  }

  .l-about__subheading {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
  }

  .l-about__text {
    font-size: 1.4rem;
    line-height: 2;
  }

  .l-about__button {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .l-about__header {
    padding: 4.5rem 0;
  }

  .l-about__heading {
    font-size: 3.6rem;
    line-height: 1.3888888889;
  }

  .l-about__eyecatch {
    height: 55rem;
  }

  .l-about__label {
    font-size: 1.4rem;
  }

  .l-about__statement {
    margin-bottom: 5.5rem;
    font-size: 3.6rem;
    line-height: 1.3611111111;
  }

  .l-about__content {
    padding: 0 0 6rem 14.6rem;
  }

  .l-about__lead {
    margin-bottom: 6.5rem;
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }
  .l-about__lead > p:not(:last-child) {
    margin-bottom: 0.5rem;
  }

  .l-about__logo {
    height: 30rem;
    border: 1px solid var(--color_border);
    margin-bottom: 5.5rem;
  }

  .l-about__subsection:not(:last-child) {
    padding-bottom: 6rem;
    margin-bottom: 5.5rem;
    border-bottom: 1px solid var(--color_border);
  }

  .l-about__subheading {
    margin-bottom: 3.5rem;
    font-size: 2rem;
  }

  .l-about__text {
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }

  .l-about__button {
    margin-top: 3.5rem;
  }
}
.l-container {
  --padding: 1.5rem;
  max-width: 160rem;
  margin: auto;
  padding-right: var(--padding);
  padding-left: var(--padding);
  box-sizing: content-box;
}
@media (min-width: 1024px) {
  .l-container {
    --padding: 3rem;
  }
}
@media (min-width: 1199px) {
  .l-container {
    --padding: 4rem;
  }
}
@media (min-width: 1366px) {
  .l-container {
    --padding: 6rem;
  }
}
.l-content__sub {
  display: none;
}
@media (max-width: 1023px) {
  .l-content {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .l-content {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 1199px) {
  .l-content {
    display: grid;
    grid-template-columns: calc(100% - 30rem - 6rem) 30rem;
    column-gap: 6rem;
  }

  .l-content__main {
    position: relative;
    z-index: 1;
  }

  .l-content__sub {
    display: block;
  }
}
.l-footer__bottom {
  padding-top: 3rem;
  border-top: 1px solid var(--color_border);
}
.l-footer__link > dt {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025em;
  color: var(--color_sub);
}
.l-footer__link ul {
  display: flex;
  margin-top: -0.75rem;
  flex-wrap: wrap;
  font-family: var(--font_en);
  font-weight: 700;
  line-height: 1;
}
.l-footer__link ul > li {
  display: flex;
  padding-top: 0.75em;
}
.l-footer__link ul > li:not(:last-child)::after {
  content: "/";
  padding: 0 0.4em;
}
.l-footer__media > dt {
  font-family: var(--font_en);
  font-size: 1.2rem;
  font-weight: 700;
}
.l-footer__media ul {
  display: flex;
  align-items: center;
}
.l-footer__media ul > li:not(:last-child) {
  margin-right: 2.5rem;
}
.l-footer__media ul > li > a {
  display: block;
  line-height: 1;
  font-size: 2.2rem;
}
.l-footer__media ul > li > a[aria-label=YouTube] {
  font-size: 2.6rem;
}
.l-footer__navigation {
  font-size: 1.2rem;
}
.l-footer__logo {
  display: block;
}
.l-footer__logo > img {
  width: 100%;
}
.l-footer__copyright {
  display: block;
  font-family: var(--font_en);
  font-size: 1.1rem;
  color: var(--color_sub);
}
.l-footer__banner {
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (max-width: 1023px) {
  .l-footer__container {
    padding-top: 2.5rem;
    padding-bottom: 4.5rem;
  }

  .l-footer__grow {
    padding-bottom: 3rem;
  }

  .l-footer__contents {
    padding: 3rem 0 2.5rem;
    border-top: 1px solid var(--color_border);
  }

  .l-footer__link:not(:first-child) {
    margin-top: 3rem;
  }
  .l-footer__link > dt {
    margin-bottom: 1em;
    font-size: 1.2rem;
  }
  .l-footer__link ul {
    font-size: 1.4rem;
  }

  .l-footer__media {
    margin-top: 3rem;
  }
  .l-footer__media > dt {
    margin-bottom: 1rem;
  }
  .l-footer__media ul {
    font-size: 1.4rem;
  }
  .l-footer__media ul > li:not(:last-child) {
    margin-right: 2.5rem;
  }

  .l-footer__navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.75rem;
  }

  .l-footer__logo {
    width: 15rem;
  }

  .l-footer__copyright {
    margin-top: 3.5rem;
  }

  .l-footer__banner {
    margin: 2rem 0;
  }
}
@media (min-width: 1024px) {
  .l-footer a:hover {
    opacity: 0.6;
  }

  .l-footer__container {
    padding-top: 3rem;
    padding-bottom: 5.5rem;
  }

  .l-footer__top {
    display: flex;
  }

  .l-footer__bottom {
    display: flex;
    margin-top: 2.5rem;
  }

  .l-footer__grow {
    flex: 1;
    padding-right: 9.5rem;
  }

  .l-footer__contents {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
  }

  .l-footer__link {
    display: flex;
    align-items: flex-start;
  }
  .l-footer__link:not(:first-child) {
    margin-top: 4rem;
  }
  .l-footer__link > dt {
    width: 10rem;
    padding-top: 0.25em;
    flex-shrink: 0;
    font-size: 1.4rem;
  }
  .l-footer__link > dd {
    flex-grow: 1;
    max-width: 55rem;
  }
  .l-footer__link ul {
    font-size: 1.4rem;
  }

  .l-footer__media {
    display: flex;
    align-items: center;
    margin-top: 4rem;
  }
  .l-footer__media > dt {
    margin-right: 2.4rem;
  }
  .l-footer__media ul {
    display: flex;
    align-items: center;
  }
  .l-footer__media ul > li:not(:last-child) {
    margin-right: 2rem;
  }

  .l-footer__navigation {
    display: flex;
    align-items: center;
    flex: 1;
  }
  .l-footer__navigation > li:not(:last-child) {
    margin-right: 2.5rem;
  }

  .l-footer__copyright {
    flex-shrink: 0;
  }
}
.l-gallery {
  position: fixed;
  inset: 0;
  z-index: var(--zindex_modal);
  color: #fff;
}
.l-gallery[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
}
.l-gallery__header {
  padding: 1.5rem 0;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.l-gallery__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.l-gallery__container {
  position: relative;
}
.l-gallery__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  color: #000;
  cursor: pointer;
}
.l-gallery__arrow:hover {
  opacity: 0.7;
}
.l-gallery__arrow.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.3);
}
.l-gallery__close {
  color: #fff;
}
.l-gallery__slider {
  margin-bottom: 1rem;
}
.l-gallery__item > figcaption {
  display: block;
  font-size: 1.2rem;
  line-height: 1.75;
}
.l-gallery__image {
  overflow: hidden;
}
.l-gallery__image .react-transform-component {
  width: unset !important;
  height: unset !important;
}
.l-gallery__image .react-transform-element {
  width: unset !important;
  height: unset !important;
}
.l-gallery__image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 1023px) {
  .l-gallery__container {
    height: 100%;
    padding: 0 5vw 3rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .l-gallery__slider .swiper-wrapper {
    height: auto !important;
  }

  .l-gallery__header {
    display: flex;
    align-items: center;
  }

  .l-gallery__buttons {
    display: flex;
    flex-shrink: 0;
    margin-right: 2rem;
  }
  .l-gallery__buttons > li:not(:last-child) {
    margin-right: 2rem;
  }

  .l-gallery__count {
    flex: 1;
  }

  .l-gallery__arrow {
    width: 4rem;
    height: 4rem;
  }

  .l-gallery__close {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 2rem;
  }

  .l-gallery__item {
    transition-property: opacity !important;
  }
  .l-gallery__item > figcaption {
    font-size: 1.2rem;
  }

  .l-gallery__image {
    width: 100%;
    max-height: 80vh;
    padding-bottom: 0.4rem;
  }

  .l-gallery__iframe {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .l-gallery__iframe iframe {
    position: absolute;
    top: 0;
  }
}
@media (min-width: 1024px) {
  .l-gallery {
    display: flex;
    justify-content: center;
    padding-bottom: 5vh;
  }

  .l-gallery__container {
    display: flex;
    flex-direction: column;
    height: 95vh;
  }

  .l-gallery__header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5vh;
    flex-shrink: 0;
  }

  .l-gallery__content {
    width: 85vh;
    margin: auto;
    flex: 1;
    position: relative;
  }

  .l-gallery__close {
    position: absolute;
    top: 0;
    right: -5.9rem;
    font-size: 3rem;
  }
  .l-gallery__close:hover {
    opacity: 0.7;
  }

  .l-gallery__arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 4.8rem;
    height: 4.8rem;
  }
  .l-gallery__arrow.-prev {
    left: -6.8rem;
  }
  .l-gallery__arrow.-next {
    right: -6.8rem;
  }

  .l-gallery__item {
    display: flex;
    flex-direction: column;
    transition-property: opacity !important;
  }
  .l-gallery__item.swiper-slide-active {
    z-index: 10;
  }
  .l-gallery__item > figcaption {
    height: 5vh;
    flex-shrink: 0;
    overflow: auto;
  }

  .l-gallery__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85vh;
    padding-bottom: 1rem;
  }
  .l-gallery__image > img {
    max-height: 100%;
  }

  .l-gallery__buttons {
    display: none;
  }

  .l-gallery__iframe {
    width: 560px;
    height: 315px;
  }
  .l-gallery__iframe iframe {
    width: 100%;
    height: 100%;
  }
}
.l-happening__heading {
  font-family: var(--font_en);
  font-weight: 700;
  line-height: 1.4;
}
.l-happening__date {
  font-family: var(--font_en);
  font-weight: 700;
}
.l-happening__controls {
  position: relative;
}
.l-happening__pager {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: 0;
  line-height: 1;
}
.l-happening__pager.-prev {
  left: 0;
}
.l-happening__pager.-prev > i {
  margin-right: 1rem;
}
.l-happening__pager.-next {
  right: 0;
}
.l-happening__pager.-next > i {
  margin-left: 1rem;
}
.l-happening__pager.-disabled {
  pointer-events: none;
}
.l-happening__pager > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--color_border);
  border-radius: 50%;
  font-size: 1.8rem;
}
@media (max-width: 1023px) {
  .l-happening {
    padding-bottom: 4rem;
  }

  .l-happening__heading {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }

  .l-happening__head {
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color_border);
  }

  .l-happening__date {
    font-size: 3rem;
  }

  .l-happening__arrows {
    height: 4rem;
    margin-bottom: 3rem;
    position: relative;
  }

  .l-happening__main {
    padding-top: 2rem;
  }

  .l-happening__pager {
    font-size: 1.3rem;
  }
  .l-happening__pager > i {
    width: 4rem;
    height: 4rem;
  }
}
@media (min-width: 1024px) {
  .l-happening__heading {
    padding: 1rem 0 3rem;
    font-size: 3.6rem;
  }

  .l-happening__content {
    display: grid;
    grid-template-columns: 21rem 1fr;
    padding: 5.5rem 0 6rem;
    border-top: 1px solid var(--color_border);
  }

  .l-happening__head {
    position: sticky;
    top: var(--position_sticky_top);
    left: 0;
    z-index: 1;
  }

  .l-happening__date {
    display: flex;
    flex-wrap: wrap;
    padding-top: 0.5rem;
  }
  .l-happening__date > span {
    display: block;
    width: 100%;
  }
  .l-happening__date > span:not(.l-happening__year) {
    font-size: 5rem;
  }

  .l-happening__year {
    font-size: 2.4rem;
  }

  .l-happening__calendar {
    margin-top: 1.8rem;
  }

  .l-happening__controls {
    margin-top: 4rem;
  }

  .l-happening__pager {
    font-size: 1.4rem;
  }
  .l-happening__pager:hover {
    opacity: 0.6;
  }
  .l-happening__pager > i {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.l-header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: var(--zindex_header);
  background: #fff;
  border-bottom: 1px solid var(--color_border);
}
:root[data-modal=true] .l-header {
  z-index: 1;
}
.l-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__heading {
  font-size: 0;
}
.l-header__logo {
  display: block;
  width: 20.7rem;
  flex-shrink: 0;
}
.l-header__logo > img {
  width: 100%;
}
.l-header__content {
  display: flex;
  flex: 1;
}
.l-header__content.-left {
  justify-content: flex-start;
}
.l-header__content.-right {
  justify-content: flex-end;
}
.l-header__user {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.l-header__user > span {
  display: inline-flex;
  justify-content: center;
  position: relative;
}
.l-header__user[data-notification=true] > span::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--color_series);
  position: absolute;
  right: -0.6rem;
  bottom: -0.4rem;
}
.l-header__bottom {
  border-top: 1px solid var(--color_border);
}
@media (max-width: 1023px) {
  .l-header__container {
    height: 5.6rem;
  }

  .l-header__logo {
    width: 12.5rem;
  }

  .l-header__content {
    margin-right: -1.5rem;
  }
  .l-header__content .p-search {
    display: none;
  }

  .l-header__user {
    width: 4.8rem;
    height: 1.8rem;
    margin-left: -1.5rem;
  }
  .l-header__user > span {
    width: 1.8rem;
  }

  .l-header__ticker {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }

  .l-header__menu {
    clip-path: inset(0);
    transition: visibility 0.6s var(--easing_ease_out), clip-path 0.6s var(--easing_ease_out);
    transform: translate3d(0, 0, 0);
  }
  .l-header__menu[aria-hidden=true] {
    visibility: hidden;
    clip-path: inset(0 0 100%);
  }

  .l-header[data-expanded=true] .l-header__menu {
    clip-path: inset(0);
  }
}
@media (min-width: 1024px) {
  .l-header[data-shrunk=true] .l-header__container {
    padding-top: 0;
    padding-bottom: 0;
  }
  .l-header[data-shrunk=true] .l-header__logo {
    transform: scale(0.77) translate3d(0, 0, 0) rotate(0.0001deg);
  }
  .l-header[data-shrunk=true] .l-header__content {
    transform: translate3d(0, 0, 0);
  }

  .l-header__container {
    height: 6rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-sizing: content-box;
    transition: padding 0.3s var(--easing_ease_out);
    transform: translate3d(0, 0, 0);
  }

  .l-header__logo {
    width: 20.7rem;
    transition: transform 0.3s var(--easing_ease_out);
    transform: scale(1) translate3d(0, 0, 0) rotate(0.0001deg);
  }
  .l-header__logo:hover {
    opacity: 0.6;
  }

  .l-header__content {
    transition: transform 0.3s var(--easing_ease_out);
  }
  .l-header__content.-left {
    transform: translate3d(3rem, 0, 0);
  }
  .l-header__content.-right {
    transform: translate3d(-3rem, 0, 0);
  }

  .l-header__user {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.8rem;
  }
  .l-header__user:hover {
    opacity: 0.6;
  }
  .l-header__user > span {
    width: inherit;
  }

  .l-header__search {
    width: 22.5rem;
  }

  .l-header__bottomContainer {
    display: flex;
    align-items: center;
  }

  .l-header__ticker {
    width: 100%;
    overflow: hidden;
  }

  .l-header__navigation {
    flex-shrink: 0;
  }
}
.l-menu {
  --offset: 5.7rem;
  width: 100%;
  height: calc(var(--svh) - var(--offset));
  padding: 0 1.5rem 4rem;
  position: absolute;
  top: var(--offset);
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
.l-menu__keywords {
  padding: 2rem 0;
}
.l-menu__keywords > dt {
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7142857143;
}
.l-menu__navigation {
  padding-top: 2rem;
  border-top: 1px solid var(--color_border);
}
.l-menu__navigation > ul > li:not(:last-child) {
  margin-bottom: 1.6rem;
}
.l-menu__item {
  display: inline-flex;
  align-items: center;
}
.l-menu__item > b {
  display: inline-flex;
  font-family: var(--font_en);
  font-size: 1.8rem;
  font-weight: 700;
}
.l-menu__item > span {
  display: inline-flex;
  margin-left: 1.4rem;
  font-size: 1.1rem;
  color: var(--color_sub);
}
.l-menu__search {
  margin-top: 3rem;
}
.l-mypage__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-mypage__heading {
  flex: 1;
  padding-right: 2rem;
}
.l-mypage__logout {
  flex-shrink: 0;
}
.l-mypage__logout > button {
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: var(--color_link);
}
@media (max-width: 1023px) {
  .l-mypage__header {
    margin-bottom: 15px;
  }

  .l-mypage__heading {
    font-size: 1.4rem;
  }

  .l-mypage__logout {
    font-size: 1rem;
  }

  .l-mypage__content {
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .l-mypage__header {
    margin-bottom: 30px;
  }

  .l-mypage__heading {
    font-size: 2rem;
  }

  .l-mypage__logout {
    font-size: 1.2rem;
  }
  .l-mypage__logout:hover {
    opacity: 0.6;
  }

  .l-mypage__content {
    margin-bottom: 60px;
  }
}
.l-production__header {
  border-bottom: 1px solid var(--color_border);
}
.l-production__hgroup {
  display: flex;
  align-items: center;
}
.l-production__heading {
  font-weight: 700;
  line-height: 1.5;
}
.l-production__index {
  margin-top: -1px;
}
.l-production__subheading {
  font-weight: 700;
  line-height: 1.5;
}
.l-production__list[aria-hidden=true] {
  display: none;
}
.l-production__list > li:not(:last-child) {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color_border);
}
@media (max-width: 1023px) {
  .l-production__header {
    padding-bottom: 2rem;
  }

  .l-production__hgroup {
    justify-content: space-between;
  }

  .l-production__heading {
    font-size: 1.8rem;
  }

  .l-production__index {
    margin-bottom: 2rem;
  }

  .l-production__selected {
    display: flex;
    flex-direction: column;
    padding-bottom: 1.2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color_border);
  }

  .l-production__subheading {
    font-size: 3rem;
  }

  .l-production__total {
    align-self: flex-end;
    font-size: 1.2rem;
    color: var(--color_sub);
  }

  .l-production__arrow {
    display: none;
  }

  .l-production__initial + .l-production__initial {
    margin-top: -1px;
  }

  .l-production__productionList {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .l-production__header {
    padding: 1rem 0 3rem;
  }

  .l-production__heading {
    font-size: 3.6rem;
  }

  .l-production__followButton {
    margin-left: 1rem;
  }

  .l-production__index {
    position: relative;
  }

  .l-production__initialContainer {
    padding: 1.5rem 0;
    border-top: 1px solid var(--color_border);
    border-bottom: 1px solid var(--color_border);
    overflow: auto;
    scrollbar-width: none;
  }
  .l-production__initialContainer::-webkit-scrollbar {
    display: none;
  }
  .l-production__initialContainer[data-start=true] .l-production__arrow.-prev {
    opacity: 0;
    visibility: hidden;
  }
  .l-production__initialContainer[data-end=true] .l-production__arrow.-next {
    opacity: 0;
    visibility: hidden;
  }
  .l-production__initialContainer[data-arrow=false] .l-production__arrow {
    visibility: hidden;
  }

  .l-production__initialContent {
    display: flex;
  }

  .l-production__arrow {
    padding: 1rem;
    position: absolute;
    top: 1px;
    bottom: 1px;
  }
  .l-production__arrow:hover::before {
    opacity: 0.6;
  }
  .l-production__arrow.-prev {
    width: 11rem;
    left: 0;
    text-align: left;
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  }
  .l-production__arrow.-prev::before {
    display: inline-flex;
    transform: scaleX(-1);
  }
  .l-production__arrow.-next {
    width: 11rem;
    right: 0;
    text-align: right;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 67%, white 100%);
  }

  .l-production__initial:not(:last-child) {
    margin-right: 1rem;
  }

  .l-production__content {
    display: grid;
    grid-template-columns: 21rem 1fr;
    padding: 3rem 0 6rem;
  }

  .l-production__subheading {
    font-size: 3.6rem;
  }

  .l-production__total {
    display: none;
  }

  .l-production__productionList {
    margin-top: 5.7rem;
  }
}
@media (max-width: 1023px) {
  .l-result__search {
    padding-top: 2rem;
  }

  .l-result__notfound {
    padding: 2.4rem 0 3rem;
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .l-result__search {
    padding: 3rem 0;
    border-bottom: 1px solid var(--color_border);
  }

  .l-result__notfound {
    padding: 7.2rem 0 6rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 1023px) {
  .l-series__content {
    padding: 2.5rem 0 3rem;
  }
}
@media (min-width: 1024px) {
  .l-series__content {
    padding: 3.6rem 0 6rem;
  }
}
@media (max-width: 1023px) {
  .l-top {
    margin: -1.5rem 0 -2rem;
  }

  .l-top__news {
    margin-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .l-top__news {
    margin-bottom: 4rem;
  }
}
.c-avatar {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 100%;
}
.c-avatar input {
  position: absolute;
  visibility: hidden;
  z-index: -1;
}
.c-avatar__image {
  position: absolute;
  top: 0;
  border-radius: 50%;
  overflow: hidden;
}
.c-avatar__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-avatar__icon {
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}
.c-avatar__icon:focus {
  outline: 5px auto -webkit-focus-ring-color;
}
@media (max-width: 1023px) {
  .c-avatar__icon {
    font-size: 2.4rem;
    height: 2.4rem;
  }
}
@media (min-width: 1024px) {
  .c-avatar__icon {
    font-size: 2.8rem;
    height: 2.8rem;
  }
}
.c-banner img {
  max-width: 100%;
}
.c-billboardBanner {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background: var(--color_background);
}
.c-billboardBanner.-top {
  margin-bottom: 1rem;
}
.c-billboardBanner.-bottom {
  margin-top: 3rem;
  margin-bottom: 6rem;
}
@media (max-width: 1023px) {
  .c-billboardBanner {
    text-align: center;
  }
}
.c-button {
  display: table;
  height: var(--height);
  border-radius: var(--border-radius);
  font-size: var(--font-size);
  color: var(--color_base);
}
.c-button:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}
.c-button:not(.-medium, .-small) {
  width: 100%;
}
.c-button:not(.-medium, .-small) .c-button__icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.8rem;
  height: 1em;
  margin: auto;
}
.c-button.-medium .c-button__icon, .c-button.-small .c-button__icon {
  margin-right: 0.5rem;
}
.c-button.-outline {
  border: 1px solid var(--color_border);
  background: #fff;
}
.c-button.-dark {
  background-color: var(--color_base);
  color: #fff;
}
.c-button.-light {
  background-color: #fff;
}
.c-button.-center {
  margin-right: auto;
  margin-left: auto;
}
.c-button.-link {
  color: var(--color_link);
}
.c-button[data-bookmarked=true] {
  border-color: var(--color_base);
  background: var(--color_base);
  color: #fff;
}
.c-button[data-bookmarked=true] .c-button__label.-bookmark {
  display: none;
}
.c-button[data-bookmarked=true] .c-button__label.-bookmarked {
  display: block;
}
.c-button__label.-bookmarked {
  display: none;
}
.c-button__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 2.5rem;
  position: relative;
}
@media (max-width: 1023px) {
  .c-button {
    max-width: 28rem;
  }
  .c-button:not(.-medium, .-small) {
    --height: 4.4rem;
    --border-radius: 2.2rem;
  }
  .c-button:not(.-small) {
    --font-size: 1.3rem;
  }
  .c-button.-medium {
    --height: 4rem;
    --border-radius: 2rem;
  }
  .c-button.-small {
    --height: 2.8rem;
    --border-radius: 1.4rem;
    --font-size: 1.2rem;
  }
}
@media (min-width: 1024px) {
  .c-button {
    max-width: 30rem;
  }
  .c-button:hover {
    opacity: 0.6;
  }
  .c-button:not(.-medium, .-small) {
    --height: 4.8rem;
    --border-radius: 2.4rem;
    --font-size: 1.4rem;
  }
  .c-button.-medium, .c-button.-small {
    --font-size: 1.3rem;
  }
  .c-button.-medium {
    --height: 4.4rem;
    --border-radius: 2.2rem;
  }
  .c-button.-medium .c-button__icon {
    margin-left: -0.5rem;
  }
  .c-button.-wide {
    max-width: 36rem;
  }
  .c-button.-small {
    --height: 3.2rem;
    --border-radius: 1.6rem;
    min-width: 15rem;
  }
}
.c-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
}
.c-checkbox__input {
  position: absolute;
  opacity: 0;
}
.c-checkbox__input:checked + .c-checkbox__icon {
  background-color: var(--color_link);
  border-color: var(--color_link);
}
.c-checkbox__input:checked + .c-checkbox__icon::before {
  color: #fff;
}
[data-state=invalid] .c-checkbox__input + .c-checkbox__icon {
  border-color: var(--color_series);
}
[data-state=invalid] .c-checkbox__input + .c-checkbox__icon::before {
  color: #FFF4F2;
}
.c-checkbox__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: inherit;
  height: inherit;
  border: 2px solid var(--color_border);
  border-radius: 50%;
}
.c-checkbox__icon:before {
  display: inline-block;
  font-family: "iconfont";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  text-decoration: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  content: "\ea0c";
  font-size: 1.1rem;
  color: var(--color_border);
  margin-left: 1px;
}
.c-checkButton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
}
.c-checkButton__ui {
  margin-left: 2rem;
}
@media (max-width: 1023px) {
  .c-checkButton__text {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .c-checkButton__text {
    font-size: 1.5rem;
  }
}
.c-creativeBanner {
  position: sticky;
  top: var(--position_sticky_top);
  left: 0;
}
.c-followButton {
  display: block;
  border: 1px solid var(--color_border);
  background: #fff;
  border-radius: 2.2rem;
  font-size: 1.2rem;
}
.c-followButton > span {
  display: inline-flex;
  align-items: center;
  height: 100%;
  line-height: 1.5;
}
.c-followButton > span::before {
  display: inline-flex;
  margin-right: 0.5rem;
  font-size: 1em;
}
.c-followButton[data-following=true] {
  border-color: var(--color_base);
  background: var(--color_base);
  color: #fff;
}
.c-followButton[data-following=true] > span::before {
  display: none;
}
@media (max-width: 1023px) {
  .c-followButton {
    height: 2.9rem;
    padding: 0 1.4rem;
  }
}
@media (min-width: 1024px) {
  .c-followButton {
    height: 3.3rem;
    padding: 0 1.8rem;
  }
  .c-followButton:hover {
    opacity: 0.6;
  }
}
.c-heading {
  font-size: var(--heading_size);
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 1023px) {
  .c-heading {
    --heading_size: 2.4rem;
  }
  .c-heading.-small {
    --heading_size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .c-heading {
    --heading_size: 3.6rem;
  }
  .c-heading.-small {
    --heading_size: 2.2rem;
  }
}
.c-input {
  position: relative;
}
.c-input__input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--color_border);
  border-radius: 5px;
  padding: 0 1.5rem;
}
[class*=-icon-] .c-input__input {
  padding-right: 48px;
}
.has-error .c-input__input, [data-state=invalid] .c-input__input {
  background-color: #FFF4F2;
  border-color: var(--color_series);
}
.c-input__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.c-input__icon::before {
  font-size: 2rem;
  color: var(--color_icon);
  cursor: pointer;
}
[data-show=false] .c-input__icon:before {
  display: inline-block;
  font-family: "iconfont";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  text-decoration: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  content: "\ea12";
}
[data-show=true] .c-input__icon:before {
  display: inline-block;
  font-family: "iconfont";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  text-decoration: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  content: "\ea11";
}
.c-link {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
  color: var(--color_link);
}
.c-link::before {
  margin-right: 0.2rem;
}
.c-link__icon {
  margin-left: 0.4rem;
}
@media (min-width: 1024px) {
  .c-link.-mobile-arrow::before {
    display: none;
  }
  .c-link.-desktop-large {
    font-size: 1.8rem;
  }
  .c-link:hover {
    opacity: 0.6;
  }
}
@media (min-width: 1024px) {
  .c-menuButton {
    display: none;
  }
}
@media (max-width: 1023px) {
  .c-menuButton {
    width: 4.8rem;
    height: 5.6rem;
  }
  .c-menuButton > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 0.8rem;
    margin: auto;
    position: relative;
  }

  .c-menuButton__line {
    display: block;
    width: 100%;
    height: 0.2rem;
    background: var(--color_base);
    position: absolute;
    left: 0;
  }
  .c-menuButton__line.-top {
    top: 0;
    animation: default-top 0.4s var(--easing_ease_out) 0s;
    animation-fill-mode: backwards;
  }
  .c-menuButton__line.-bottom {
    top: 0.6rem;
    animation: default-bottom 0.4s var(--easing_ease_out) 0s;
    animation-fill-mode: backwards;
  }

  .c-menuButton[aria-expanded=true] .c-menuButton__line.-top {
    animation: close-top 0.4s var(--easing_ease_out) 0s;
    animation-fill-mode: forwards;
  }
  .c-menuButton[aria-expanded=true] .c-menuButton__line.-bottom {
    animation: close-bottom 0.4s var(--easing_ease_out) 0s;
    animation-fill-mode: forwards;
  }
}
@keyframes default-top {
  0% {
    transform: translate3d(0, 3px, 0) rotate(-45deg);
  }
  33% {
    transform: translate3d(0, 3px, 0) rotate(-45deg);
  }
  67% {
    transform: translate3d(0, 3px, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes close-top {
  0% {
    transform: translate3d(0, 0, 0);
  }
  33% {
    transform: translate3d(0, 3px, 0);
  }
  67% {
    transform: translate3d(0, 3px, 0) rotate(-45deg);
  }
  100% {
    transform: translate3d(0, 3px, 0) rotate(-45deg);
  }
}
@keyframes default-bottom {
  0% {
    transform: translate3d(0, -3px, 0) rotate(45deg);
  }
  33% {
    transform: translate3d(0, -3px, 0) rotate(45deg);
  }
  67% {
    transform: translate3d(0, -3px, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
@keyframes close-bottom {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  33% {
    transform: translate3d(0, -3px, 0) rotate(0deg);
  }
  67% {
    transform: translate3d(0, -3px, 0) rotate(45deg);
  }
  100% {
    transform: translate3d(0, -3px, 0) rotate(45deg);
  }
}
.c-movie {
  padding-top: 56.25%;
  position: relative;
}
.c-movie > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-radio {
  position: relative;
  display: block;
  background-color: var(--color_background);
}
.c-radio__input {
  position: absolute;
  width: 16px;
  height: 16px;
  margin-right: 6px;
}
[data-state=invalid] .c-radio__input {
  appearance: none;
  border-radius: 50%;
  border: 1px solid var(--color_series);
  background-color: #FFF4F2;
}
@media (max-width: 1023px) {
  .c-radio {
    padding: 7px 10px 8px 32px;
  }

  .c-radio__input {
    top: 10px;
    left: 10px;
    padding-left: 32px;
  }

  .c-radio__text {
    font-size: 1.3rem;
    line-height: 1.6923076923;
  }
}
@media (min-width: 1024px) {
  .c-radio {
    padding: 17px 20px 17px 42px;
  }

  .c-radio__input {
    top: 20px;
    left: 20px;
  }

  .c-radio__text {
    font-size: 1.5rem;
    line-height: 1.4666666667;
    vertical-align: -0.4rem;
  }
}
.c-spinner {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}
.c-spinner::before {
  content: "";
  width: 4.5rem;
  height: 4.5rem;
  background: url(../img/common/loader.svg) 50% 50%/cover no-repeat;
  animation: spin 1.5s var(--easing_ease_in_out) 0s infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  67% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.c-tag {
  display: inline-flex;
  align-items: center;
  height: 3.2rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
  background: var(--color_background);
  font-size: 1.2rem;
}
@media (min-width: 1024px) {
  .c-tag:hover {
    background: #EEF0F1;
  }
}
.c-textarea {
  display: block;
  border: 1px solid var(--color_border);
  border-radius: 0.5rem;
  background: #fff;
  outline: none;
  appearance: none;
  resize: vertical;
}
.c-textarea::placeholder {
  color: var(--color_base);
  opacity: 0.25;
}
@media (max-width: 1023px) {
  .c-textarea {
    min-height: 9rem;
    padding: 0.5rem 1rem;
    font-size: 1.6rem;
    line-height: 2;
  }
  .c-textarea.-large {
    min-height: 15rem;
  }
}
@media (min-width: 1024px) {
  .c-textarea {
    min-height: 12rem;
    padding: 0.5rem 1.5rem;
    font-size: 1.4rem;
    line-height: 2.2857142857;
  }
  .c-textarea.-large {
    min-height: 20rem;
  }
}
.c-thumbnail {
  display: block;
  padding-top: 66.6666666667%;
  position: relative;
}
.c-thumbnail > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.c-time {
  font-size: 1.4rem;
  color: var(--color_sub);
}
.c-time:before {
  display: inline-block;
  font-family: "iconfont";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  text-decoration: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  content: "\ea0e";
  font-size: 1.2rem;
  margin-right: 3px;
  vertical-align: -1px;
}
.c-toggle {
  position: relative;
  width: 50px;
  height: 30px;
  background-color: var(--color_sub);
  border-radius: 16px;
  cursor: pointer;
}
.c-toggle.is-processing {
  pointer-events: none;
  opacity: 0.5;
}
.c-toggle[aria-pressed=true] {
  background-color: var(--color_link);
}
.c-toggle[aria-pressed=true] span {
  transform: translate3d(calc(100% - 2px), 0, 0);
}
.c-toggle span {
  position: absolute;
  top: 3px;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  transform: translate3d(3px, 0, 0);
}
.p-accordionModule__item {
  border: 1px solid var(--color_border);
}
.p-accordionModule__item + .p-accordionModule__item {
  margin-top: -1px;
}
.p-accordionModule__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem 1.2rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
}
.p-accordionModule__icon {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  margin-left: 2.4rem;
  position: relative;
}
.p-accordionModule__icon::before, .p-accordionModule__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: 50% 50% no-repeat;
}
.p-accordionModule__icon::before {
  background-image: url(../img/background/accordion_plus.svg);
}
.p-accordionModule__icon::after {
  visibility: hidden;
  background-image: url(../img/background/accordion_minus.svg);
}
.p-accordionModule__title[aria-expanded=true] .p-accordionModule__icon::before {
  visibility: hidden;
}
.p-accordionModule__title[aria-expanded=true] .p-accordionModule__icon::after {
  visibility: visible;
}
.p-accordionModule__container {
  overflow: hidden;
  transition: height 0.3s var(--easing_ease_out);
  transform: translate3d(0, 0, 0);
}
.p-accordionModule__container[data-expanded=false] {
  height: 0;
}
.p-accordionModule__content {
  margin: 0 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color_border);
  font-size: 1.4rem;
  line-height: 1.7857142857;
}
@media (max-width: 1023px) {
  .p-accordionModule__title {
    font-size: 1.6rem;
    line-height: 1.6875;
  }
}
@media (min-width: 1024px) {
  .p-accordionModule__title {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.p-account__content.-fluid {
  flex: 1;
}
@media (max-width: 1023px) {
  .p-account__content:not(:last-child) {
    padding-right: 0;
  }

  .p-account__avatar {
    width: 9.5rem;
    height: 9.5rem;
    margin: 0 auto 10px;
  }
}
@media (min-width: 1024px) {
  .p-account {
    display: flex;
    column-gap: 40px;
  }

  .p-account__content:not(:last-child) {
    padding-right: 40px;
    border-right: 1px solid var(--color_border);
  }

  .p-account__avatar {
    width: 12rem;
  }
}
.p-article .cdx-text-color {
  color: var(--color);
}
.p-article .cdx-text-marker {
  background: linear-gradient(transparent 64%, var(--color) 64%);
}
.p-article__eyecatch {
  display: block;
  text-align: center;
  background: var(--color_background);
}
.p-article__eyecatch > img {
  max-width: 100%;
  height: auto;
}
.p-article__header {
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--color_border);
}
.p-article__banner {
  display: flex;
  justify-content: center;
  text-align: center;
}
.p-article__series {
  display: inline-flex;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--color_series);
}
.p-article__meta {
  display: inline-flex;
  color: var(--color_sub);
}
.p-article__meta > * {
  position: relative;
}
.p-article__meta > *:not(:first-child)::before {
  content: "";
  width: 1px;
  background: var(--color_border);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.p-article__authors {
  display: flex;
  align-items: center;
  overflow: auto;
}
.p-article__authors > li {
  white-space: nowrap;
}
.p-article__authors > li:not(:last-child) {
  margin-right: 2rem;
}
.p-article__compatibleAuthors {
  font-weight: 700;
  line-height: 1.5;
}
.p-article__content {
  position: relative;
  background: #fff;
  border-top: 1px solid var(--color_border);
}
.p-article__share {
  display: flex;
  flex-wrap: wrap;
  font-size: 2.4rem;
}
.p-article__share > li {
  display: inline-flex;
}
.p-article__share > li:not(:last-child) {
  margin-right: 2.4rem;
}
.p-article__share > li > button,
.p-article__share > li > a {
  display: inline-flex;
}
.p-article__share > li > button[aria-label=Twitter],
.p-article__share > li > a[aria-label=Twitter] {
  color: var(--color_twitter);
}
.p-article__share > li > button[aria-label=Facebook],
.p-article__share > li > a[aria-label=Facebook] {
  color: var(--color_facebook);
}
.p-article__share > li > button[aria-label=LINE],
.p-article__share > li > a[aria-label=LINE] {
  color: var(--color_line);
}
.p-article__share > li > button:hover,
.p-article__share > li > a:hover {
  opacity: 0.6;
}
.p-article__action > li:not(:last-child) {
  margin-right: 2.4rem;
}
.p-article__actionButton {
  display: block;
  background: #fff;
  border-radius: 50%;
  border: 2px solid;
  color: var(--color_base);
  font-size: 1.3rem;
  line-height: 1;
}
.p-article__actionButton i.iconfont-bookmark {
  transform: translateY(0.1rem);
}
.p-article__actionButton[data-bookmarked=true] {
  background: var(--color_base);
  border-color: var(--color_base);
  color: #fff;
}
.p-article__actionButton:hover {
  opacity: 0.6;
}
.p-article__tags {
  padding-top: 3rem;
  border-top: 1px solid var(--color_border);
}
.p-article__fullBanner {
  margin: 0 -1.5rem 3rem;
}
.p-article__fullBanner > img {
  width: 100%;
}
.p-article__category {
  color: var(--color_link);
}
.p-article__body {
  position: relative;
  word-break: break-word;
}
.p-article__body[data-expanded=false] {
  overflow: hidden;
}
.p-article__cover {
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 67%, white 100%);
  transition: opacity 0.06s linear;
}
.p-article__cover[aria-hidden=true] {
  opacity: 0;
}
.p-article__line {
  display: block;
  width: 100%;
  z-index: -1;
  z-index: 100;
  pointer-events: none;
}
.p-article__line.-top {
  height: 1px;
  position: absolute;
  top: calc(90% - 120vh);
  left: 0;
  margin: auto !important;
}
.p-article__line.-bottom {
  position: absolute;
  height: 1px;
  top: 90%;
  left: 0;
  margin: auto !important;
}
.p-article__floating {
  width: 100%;
  padding: 20px 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: var(--zindex_modal);
  background: #fff;
  transform: translate3d(0, 0, 0);
  transition: transform 0.45s var(--easing_ease_in_out);
}
.p-article__floating[aria-hidden=true] {
  transform: translate3d(0, 100%, 0);
}
[data-modal=true] .p-article__floating {
  z-index: -1;
}
.p-article__afterBanner {
  display: flex;
  justify-content: center;
  text-align: center;
}
.p-article__carouselArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  background: rgba(0, 10, 2, 0.1);
  color: #fff;
  cursor: pointer;
}
.p-article__carouselArrow.-prev {
  left: 1rem;
}
.p-article__carouselArrow.-next {
  right: 1rem;
}
.p-article__carouselArrow.swiper-button-disabled {
  visibility: hidden;
}
@media (max-width: 1023px) {
  .p-article {
    margin-top: -2.5rem;
  }

  .p-article__eyecatch,
.p-article__movie {
    margin: 0 -1.5rem 2rem;
  }

  .p-article__header {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }

  .p-article__banner {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .p-article__series {
    font-size: 1.3rem;
  }

  .p-article__newsTags {
    margin-top: 1.8rem;
  }

  .p-article__meta {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  .p-article__meta > *:not(:first-child) {
    padding-left: 0.6rem;
    margin-left: 0.6rem;
  }
  .p-article__meta > *:not(:first-child)::before {
    height: 1rem;
  }

  .p-article__authors {
    height: 6.4rem;
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
  }

  .p-article__compatibleAuthors {
    padding: 10px 0 12px;
    font-size: 1.1rem;
  }

  .p-article__content {
    padding-top: 3rem;
    margin-top: -1px;
  }
  .p-article__content.-news {
    padding-bottom: 3rem;
    padding-top: 0.5rem;
    border-top: 0;
  }
  .p-article__content.-seires {
    padding-top: 0;
    border-top: 0;
  }

  .p-article__buttons {
    display: flex;
    align-items: center;
  }
  .p-article__buttons.-sticky {
    display: none;
  }
  .p-article__buttons.-header {
    margin-top: 2rem;
  }
  .p-article__buttons .p-article__action {
    display: flex;
    justify-content: flex-end;
    flex: 1;
  }

  .p-article__body > *:not(:first-child) {
    margin-top: 3rem;
  }
  .p-article__body[data-expanded=false] {
    height: 19.2rem;
  }

  .p-article__cover {
    padding-top: 10rem;
    margin-top: -10rem;
  }

  .p-article__actionButton {
    width: 4rem;
    height: 4rem;
  }

  .p-article__tags {
    margin: 3rem -1.5rem 0;
    padding: 1.5rem 1.5rem 0;
  }

  .p-article__bookmark {
    margin: 2rem 0;
  }

  .p-article__share.-mobile-bottom {
    margin: 2rem 0;
  }

  .p-article__afterBanner {
    margin-top: 3rem;
  }

  .p-article__carouselArrow {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-article__eyecatch,
.p-article__movie {
    margin-bottom: 3.5rem;
  }

  .p-article__header {
    padding-bottom: 3.5rem;
  }

  .p-article__banner {
    margin-top: 3.5rem;
    margin-bottom: 1rem;
  }

  .p-article__series {
    font-size: 1.4rem;
  }

  .p-article__newsTags {
    margin-top: 2.5rem;
  }

  .p-article__meta {
    margin-top: 2rem;
    font-size: 1.3rem;
  }
  .p-article__meta > *:not(:first-child) {
    padding-left: 1.2rem;
    margin-left: 0.8rem;
  }
  .p-article__meta > *:not(:first-child)::before {
    height: 1.3rem;
  }

  .p-article__authors {
    height: 8rem;
  }

  .p-article__compatibleAuthors {
    padding: 26px 0;
    font-size: 1.2rem;
  }

  .p-article__content {
    display: grid;
    grid-template-columns: 25rem 1fr;
    padding: 3rem 0 6rem;
  }

  .p-article__buttons.-sticky {
    position: sticky;
    top: var(--position_sticky_top);
    left: 0;
  }
  .p-article__buttons.-header {
    display: none;
  }

  .p-article__main {
    position: relative;
  }

  .p-article__body > *:not(:first-child) {
    margin-top: 3.5rem;
  }
  .p-article__body[data-expanded=false] {
    height: 18rem;
  }

  .p-article__cover {
    padding-top: 8rem;
    margin-top: -8rem;
  }

  .p-article__action {
    margin-top: 2.4rem;
  }

  .p-article__actionButton {
    width: 3rem;
    height: 3rem;
  }

  .p-article__tags {
    margin-top: 6rem;
  }
  .p-article__tags.-desktop-nomargin {
    margin-top: 0;
  }

  .p-article__bookmark {
    margin: 2rem 0 3rem;
  }

  .p-article__share.-mobile-bottom {
    display: none;
  }

  .p-article__afterBanner {
    margin-top: 3.5rem;
  }

  .p-article__carouselArrow {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 2.4rem;
  }
  .p-article__carouselArrow:hover {
    opacity: 0.6;
  }
}
.p-articleBlock[data-checked="1"] {
  opacity: 0;
  transition: opacity 0.45s ease-in;
}
.p-articleBlock[data-checked="1"][data-loaded=true] {
  opacity: 1;
}
@media (max-width: 1023px) {
  .p-articleBlock > *:not(:first-child) {
    margin-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-articleBlock > *:not(:first-child) {
    margin-top: 3rem;
  }
}
.p-articleCard__group {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: normal;
  color: var(--color_series);
  line-height: 1.5;
}
.p-articleCard__title {
  font-weight: 700;
}
.p-articleCard__lead {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: var(--color_sub);
}
.p-articleCard__sponsor {
  display: block;
  color: var(--color_sub);
  font-size: 1.2rem;
}
.p-articleCard__author {
  display: flex;
  align-items: center;
  padding-right: 1.5rem;
}
.p-articleCard__author > img {
  width: 2.6rem;
  height: 2.6rem;
  margin-right: 0.5rem;
  object-fit: cover;
  border-radius: 50%;
}
.p-articleCard__author > span {
  display: block;
  font-size: 1.2rem;
  color: var(--color_sub);
  line-height: 1.5;
}
.p-articleCard__compatibleAuthor {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.p-articleCard__compatibleAuthor > p {
  font-size: 1.2rem;
  line-height: 1.4166666667;
  color: var(--color_sub);
}
.p-articleCard__reaction {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  color: var(--color_series);
}
.p-articleCard__reaction::before {
  display: block;
  margin-right: 0.4rem;
  font-size: 1.8rem;
  transform: translateY(1px);
}
@media (max-width: 1023px) {
  .p-articleCard {
    display: block;
  }

  .p-articleCard__image {
    margin-bottom: 1rem;
  }

  .p-articleCard__group {
    font-size: 1.2rem;
  }

  .p-articleCard__title {
    font-size: 1.8rem;
    line-height: 1.5333333333;
  }

  .p-articleCard__lead {
    display: none;
  }

  .p-articleCard__compatibleAuthor {
    -webkit-line-clamp: 1;
    margin-right: 4rem;
  }

  .p-articleCard__sponsor {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .p-articleCard__meta {
    display: flex;
    align-items: center;
    min-height: 2.6rem;
    margin-top: 0.5rem;
  }

  .p-articleCard__reaction {
    flex-grow: 1;
    justify-content: flex-end;
  }

  .p-articleCard.-mobile-large .p-articleCard__image {
    margin-bottom: 1.2rem;
  }
  .p-articleCard.-mobile-large .p-articleCard__title {
    font-size: 1.8rem;
    line-height: 1.3888888889;
  }
}
@media (min-width: 1024px) {
  .p-articleCard:hover .p-articleCard__title {
    opacity: 0.6;
  }

  .p-articleCard__group {
    font-size: 1.3rem;
  }

  .p-articleCard__title {
    font-size: 1.6rem;
    line-height: 1.4375;
  }

  .p-articleCard__lead {
    display: -webkit-box;
  }

  .p-articleCard__author {
    margin-top: 1rem;
  }

  .p-articleCard__compatibleAuthor {
    margin-top: 1.6rem;
  }

  .p-articleCard__reaction {
    margin-top: 2rem;
  }

  .p-articleCard:not(.-desktop-horizontal) {
    display: block;
  }
  .p-articleCard:not(.-desktop-horizontal) .p-articleCard__image {
    margin-bottom: 1.2rem;
  }

  .p-articleCard.-desktop-horizontal {
    display: flex;
  }
  .p-articleCard.-desktop-horizontal .p-articleCard__image {
    width: 30rem;
    flex-shrink: 0;
    align-self: flex-start;
  }
  .p-articleCard.-desktop-horizontal .p-articleCard__text {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 3rem;
  }
  .p-articleCard.-desktop-horizontal .p-articleCard__title {
    font-size: 2rem;
    line-height: 1.4;
  }
  .p-articleCard.-desktop-horizontal .p-articleCard__sponsor {
    margin-top: 0.8rem;
  }
  .p-articleCard.-desktop-horizontal .p-articleCard__meta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
  }

  .p-articleCard.-desktop-image-small {
    align-items: center;
  }
  .p-articleCard.-desktop-image-small .p-articleCard__image {
    width: 24rem;
  }
  .p-articleCard.-desktop-image-small .p-articleCard__meta {
    justify-content: flex-start;
  }
  .p-articleCard.-desktop-image-small .p-articleCard__reaction {
    margin-top: 0;
    align-self: flex-end;
  }

  .p-articleCard.-desktop-horizontal-medium .p-articleCard__title {
    font-size: 2.3rem;
    line-height: 1.3913043478;
  }

  .p-articleCard.-desktop-horizontal-large .p-articleCard__image {
    width: 50%;
    padding-right: 1.9rem;
  }
  .p-articleCard.-desktop-horizontal-large .p-articleCard__group {
    margin-bottom: 1em;
    font-size: 1.4rem;
  }
  .p-articleCard.-desktop-horizontal-large .p-articleCard__title {
    font-size: 3.6rem;
    line-height: 1.3888888889;
  }
  .p-articleCard.-desktop-horizontal-large .p-articleCard__lead {
    margin-top: 1em;
    font-size: 1.8rem;
    line-height: 1.3888888889;
  }
  .p-articleCard.-desktop-horizontal-large .p-articleCard__text {
    padding-left: 1.9rem;
  }
  .p-articleCard.-desktop-horizontal-large .p-articleCard__sponsor {
    margin-top: 2rem;
  }
  .p-articleCard.-desktop-horizontal-large .p-articleCard__meta {
    margin-top: 1.5rem;
  }
}
.p-articleList.-no-pad:last-child {
  padding-bottom: 0;
}
@media (max-width: 1023px) {
  .p-articleList:last-child {
    padding-bottom: 3rem;
  }
  .p-articleList > li {
    margin-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-articleList:last-child {
    padding-bottom: 6rem;
  }
  .p-articleList > li {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color_border);
  }
}
.p-articleModule {
  display: flex;
  padding: 2rem;
  background: var(--color_background);
}
.p-articleModule__thumbnail {
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}
.p-articleModule__content > p {
  flex-grow: 1;
  font-weight: 700;
}
.p-articleModule__author {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.p-articleModule__author > img {
  width: 2.6rem;
  height: 2.6rem;
  margin-right: 0.5rem;
  object-fit: cover;
  border-radius: 50%;
}
.p-articleModule__author > span {
  font-size: 1.2rem;
  color: var(--color_sub);
}
@media (max-width: 1023px) {
  .p-articleModule__content > p {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }

  .p-articleModule__thumbnail {
    width: 9rem;
    height: 6rem;
    margin-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .p-articleModule:hover {
    background: #EEF0F1;
  }

  .p-articleModule__content > p {
    font-size: 1.6rem;
    line-height: 1.4375;
  }

  .p-articleModule__thumbnail {
    width: 12rem;
    height: 8rem;
    margin-right: 2rem;
  }
}
@media (max-width: 1023px) {
  .p-articles > li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-articles {
    display: grid;
    grid-template-areas: "a a" "b c" "d e";
  }
  .p-articles > li {
    padding: 3rem 0;
    border-bottom: 1px solid var(--color_border);
  }
  .p-articles > li:nth-child(1) {
    grid-area: a;
  }
  .p-articles > li:nth-child(2) {
    grid-area: b;
  }
  .p-articles > li:nth-child(3) {
    grid-area: c;
  }
  .p-articles > li:nth-child(4) {
    grid-area: d;
  }
  .p-articles > li:nth-child(5) {
    grid-area: e;
  }
  .p-articles > li:not(:nth-child(1)):nth-child(odd) {
    padding-left: 1.9rem;
  }
  .p-articles > li:nth-child(even) {
    padding-right: 1.9rem;
  }
}
@media (min-width: 1024px){
  .p-articles > li:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
  }
  .p-articles > li:nth-child(2) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
  }
  .p-articles > li:nth-child(3) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
  }
  .p-articles > li:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
  }
  .p-articles > li:nth-child(5) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
  }
}
.p-blockModule[data-pattern=gray] {
  background-color: var(--color_background);
}
.p-blockModule[data-pattern=yellow] {
  background-color: rgba(245, 234, 104, 0.2);
}
.p-blockModule__content > *:not(:first-child) {
  margin-top: 1.5rem;
}
.p-blockModule__content > h3 {
  font-size: 2rem;
  line-height: 1.95;
}
.p-blockModule__content > h3:not(:first-child) {
  margin-top: 1.5rem;
}
.p-blockModule__content > h3:not(:last-child) {
  margin-bottom: 1.5rem;
}
.p-blockModule__content > h4 {
  font-size: 1.8rem;
  line-height: 1.3888888889;
}
.p-blockModule__content > h4:not(:first-child) {
  margin-top: 1.5rem;
}
.p-blockModule__content > h4:not(:last-child) {
  margin-bottom: 1.5rem;
}
.p-blockModule__content > p {
  font-size: 1.4rem;
  line-height: 2;
}
.p-blockModule__link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color_link);
}
@media (max-width: 1023px) {
  .p-blockModule {
    padding: 2rem 1.5rem;
    margin: 0 -1.5rem;
  }

  .p-blockModule__content > p {
    font-size: 1.3rem;
    line-height: 1.7692307692;
  }
}
@media (min-width: 1024px) {
  .p-blockModule {
    padding: 2rem 1.5rem 2.5rem;
  }

  .p-blockModule__content > p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.p-breadcrumb {
  height: 4.5rem;
  padding-top: 1.8rem;
  border-bottom: 1px solid var(--color_border);
  overflow: hidden;
  font-size: 1.2rem;
}
.p-breadcrumb__list {
  display: flex;
  padding-bottom: 2rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.p-breadcrumb__list > li {
  flex-shrink: 0;
}
.p-breadcrumb__list > li:not(:last-child) {
  padding-right: 1rem;
  margin-right: 1rem;
  position: relative;
}
.p-breadcrumb__list > li:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 1.4rem;
  background: var(--color_border);
  transform: rotate(15deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.p-breadcrumb__list > li > a {
  color: var(--color_sub);
}
@media (max-width: 1023px) {
  .p-breadcrumb {
    margin-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .p-breadcrumb__list > li > a:hover {
    color: var(--color_base);
  }
}
.p-cardItemModule {
  background: #fff;
}
.p-cardItemModule > dt {
  font-weight: 700;
}
@media (max-width: 1023px) {
  .p-cardItemModule {
    height: 100%;
    padding: 1.6rem 2rem;
  }
  .p-cardItemModule > dt {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .p-cardItemModule > dd > p {
    font-size: 1.3rem;
    line-height: 1.7692307692;
  }
}
@media (min-width: 1024px) {
  .p-cardItemModule {
    display: flex;
    padding: 1.5rem 0;
  }
  .p-cardItemModule > dt {
    width: 23rem;
    padding: 0 0 0 2rem;
    flex-shrink: 0;
    font-size: 1.6rem;
    line-height: 1.375;
  }
  .p-cardItemModule > dd {
    flex: 1;
    padding: 0 2rem;
  }
  .p-cardItemModule > dd > p {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
}
.p-cardModule {
  background: var(--color_background);
}
.p-cardModule > dt {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3888888889;
}
@media (max-width: 1023px) {
  .p-cardModule {
    margin: 0 -1.5rem;
    padding-bottom: 1.5rem;
  }
  .p-cardModule > dt {
    padding: 1.5rem;
  }

  .p-cardModule__list {
    display: flex;
    padding-left: 1.5rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .p-cardModule__list > li {
    width: 80vw;
    flex-shrink: 0;
    margin-right: 1.5rem;
    scroll-snap-align: center;
  }
}
@media (min-width: 1024px) {
  .p-cardModule {
    padding: 0 1.5rem 1.5rem;
  }
  .p-cardModule > dt {
    padding: 1.6rem 0 1.4rem;
  }

  .p-cardModule__list > li:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.p-comicModule > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.p-comicModule > img:not(:last-child) {
  margin-bottom: 1.5rem;
}
.p-comment {
  padding-top: 2.4rem;
  border-top: 1px solid var(--color_border);
}
.p-comment > dt {
  display: flex;
  align-items: center;
}
.p-comment > dt > span {
  font-size: 1.6rem;
  font-weight: 700;
}
.p-comment__items {
  border-bottom: 1px solid var(--color_border);
}
.p-comment__items:empty {
  margin-top: 3rem;
}
.p-comment__items > *:not(:first-child) {
  border-top: 1px solid var(--color_border);
}
.p-comment__count {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0 0.8rem;
  margin-left: 0.8rem;
  border-radius: 1rem;
  background: var(--color_background);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.p-comment__overlay {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 12rem;
  padding-bottom: 2.5rem;
  margin-top: -12rem;
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 0.75) 25%, white 50%, white 100%);
}
.p-comment__more {
  width: 28.5rem;
  height: 4.4rem;
  border-radius: 2.2rem;
  border: 1px solid var(--color_border);
  font-size: 1.3rem;
  background: #fff;
}
.p-comment__more[disabled], .p-comment__more[disabled=true] {
  opacity: 0.6;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .p-comment {
    padding-top: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .p-comment {
    padding-top: 2.4rem;
  }

  .p-comment__more:hover {
    opacity: 0.6;
  }
}
.p-commented {
  border: 2px solid var(--color_border);
}
.p-commented.-notExist {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color_border);
}
@media (max-width: 1023px) {
  .p-commented {
    min-height: 174px;
  }
  .p-commented.-notExist {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-commented {
    min-height: 240px;
  }
  .p-commented.-notExist {
    font-size: 1.8rem;
  }
}
.p-commentForm {
  display: flex;
  align-items: flex-start;
  padding-top: 2rem;
  transition: opacity 0.3s ease-out;
}
.p-commentForm[aria-disabled=true] {
  opacity: 0.6;
  pointer-events: none;
}
.p-commentForm__avator {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.p-commentForm__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.5rem 0 0 1.5rem;
}
.p-commentForm__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-commentForm__header > p {
  font-size: 1.4rem;
  font-weight: 700;
}
.p-commentForm__remainings {
  font-size: 1.2rem;
  color: var(--color_sub);
}
.p-commentForm__textarea {
  margin-top: 1rem;
}
.p-commentForm__button {
  align-self: flex-end;
}
.p-commentForm__button[disabled], .p-commentForm__button[disabled=true] {
  opacity: 0.6;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .p-commentForm__avator {
    width: 4rem;
    height: 4rem;
  }

  .p-commentForm__header > p {
    font-size: 1.3rem;
  }

  .p-commentForm__button {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .p-commentForm__avator {
    width: 5rem;
    height: 5rem;
  }

  .p-commentForm__header > p {
    font-size: 1.4rem;
  }

  .p-commentForm__button {
    margin-top: 2rem;
  }
}
.item-enter {
  opacity: 0;
}
.item-enter-active {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}
.item-exit {
  opacity: 1;
}
.item-exit-active {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.p-commentItem {
  padding: 2rem 0;
  overflow: hidden;
}
.p-commentItem__inner {
  display: flex;
  align-items: flex-start;
}
.p-commentItem__avator {
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--color_icon);
}
.p-commentItem__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.5rem 0 0 1.5rem;
}
.p-commentItem__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-commentItem__meta {
  display: flex;
  align-items: center;
}
.p-commentItem__userName {
  display: block;
  font-weight: 700;
}
.p-commentItem__createdAt {
  color: var(--color_sub);
}
.p-commentItem__action {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}
.p-commentItem__delete {
  font-size: 1.4rem;
  color: var(--color_icon);
}
.p-commentItem__comment {
  display: block;
  font-size: 1.3rem;
  line-height: 1.6923076923;
  white-space: pre-wrap;
}
.p-commentItem__banned {
  color: var(--color_sub);
  font-size: 1.3rem;
  line-height: 1.6923076923;
}
@media (max-width: 1023px) {
  .p-commentItem__avator {
    width: 4rem;
    height: 4rem;
  }

  .p-commentItem__userName {
    font-size: 1.3rem;
  }

  .p-commentItem__createdAt {
    font-size: 1.3rem;
  }

  .p-commentItem__comment {
    margin-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .p-commentItem__avator {
    width: 5rem;
    height: 5rem;
  }

  .p-commentItem__userName {
    font-size: 1.4rem;
  }

  .p-commentItem__createdAt {
    font-size: 1.4rem;
  }

  .p-commentItem__comment {
    margin-top: 0.5rem;
    padding-right: 7rem;
  }

  .p-commentItem__delete:hover {
    opacity: 0.6;
  }
}
.p-commentModal[aria-hidden=true] {
  visibility: hidden;
}
.p-commentModal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: var(--zindex_modal);
  cursor: pointer;
}
.p-commentModal__content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: var(--zindex_modal);
  pointer-events: none;
}
.p-commentModal__body {
  padding: 2.5rem 3rem;
  background: #fff;
  border-radius: 0.5rem;
  pointer-events: auto;
}
.p-commentModal__confirmation {
  margin-bottom: 1em;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.p-commentModal__buttons {
  display: flex;
  justify-content: center;
}
.p-commentModal__buttons > li {
  padding: 0 1rem;
}
.p-commentModal__button {
  min-width: 10rem;
  padding: 1rem 0;
  background: var(--color_base);
  border-radius: 2.2rem;
  font-size: 1.3rem;
  color: #fff;
}
.p-datePicker {
  position: relative;
}
.p-datePicker__heading {
  font-size: 1.2rem;
  color: var(--color_base);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.p-datePicker__content {
  position: relative;
}
.p-datePicker__trigger {
  display: block;
  border-radius: 50%;
  background: var(--color_base);
  color: #fff;
}
.p-datePicker__trigger :is(.iconfont-calendar, .iconfont-close)::before {
  display: inline-flex;
}
.p-datePicker__trigger .iconfont-calendar::before {
  transform: translateY(1px);
}
.p-datePicker__trigger .iconfont-close::before {
  transform: translateY(0.15rem);
}
.p-datePicker__picker {
  position: absolute;
  transition: visibility 0.6s, opacity 0.6s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.p-datePicker__picker[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  z-index: var(--zindex_date_picker);
}
.p-datePicker__picker::after {
  content: "";
  position: absolute;
  background: #fff;
  border: 1px solid var(--color_border);
  z-index: 1;
}
@media (max-width: 1023px) {
  .p-datePicker__trigger {
    width: 4rem;
    height: 4rem;
    margin-top: 1.2rem;
    font-size: 1.8rem;
  }

  .p-datePicker__heading {
    display: none;
  }

  .p-datePicker__picker {
    right: 0;
    transform: translate3d(0, 13px, 0);
  }
  .p-datePicker__picker::after {
    width: 15px;
    height: 15px;
    top: -8px;
    right: 13px;
    border-bottom-width: 0;
    border-right-width: 0;
    transform: scale(1, 0.8) rotate(45deg);
  }
}
@media (min-width: 1024px) {
  .p-datePicker__trigger {
    position: relative;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    z-index: 1;
  }

  .p-datePicker__picker {
    top: 50%;
    left: 44px;
    transform: translateY(-50%);
  }
  .p-datePicker__picker::after {
    width: 11px;
    height: 11px;
    top: 50%;
    left: -7px;
    margin-top: -8px;
    border-bottom-width: 0;
    border-right-width: 0;
    transform: rotate(-45deg);
  }
}
.p-document__heading {
  font-size: 1.8rem;
  line-height: 1.4;
}
.p-document__body a {
  color: var(--color_link);
  text-decoration: underline;
  text-underline-position: from-font;
}
@media screen and (min-width: 768px) {
  .p-document__body a:hover {
    text-decoration: none;
  }
}
.p-document__list {
  counter-reset: n;
}
.p-document__list + * {
  margin-top: 2rem;
}
.p-document__list > li {
  counter-increment: n;
  padding-left: 3rem;
  position: relative;
}
.p-document__list > li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.p-document__list > li::before {
  content: counter(n) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.p-document__list > li .p-document__orderedList {
  margin-top: 1rem;
}
.p-document__orderedList {
  counter-reset: order;
}
.p-document__orderedList + * {
  margin-top: 2rem;
}
.p-document__orderedList > li {
  display: flex;
  counter-increment: order;
}
.p-document__orderedList > li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.p-document__orderedList > li::before {
  content: "(" counter(order) ")";
  margin-right: 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .p-document {
    margin-bottom: 5px;
  }

  .p-document__header {
    margin-bottom: 10px;
  }

  .p-document__content {
    font-size: 1.4rem;
    line-height: 1.8571428571;
  }

  .p-document__section:not(:last-child) {
    margin-bottom: 20px;
  }

  .p-document__heading {
    margin-bottom: 3px;
  }

  .p-document__body > p:not(:last-child) {
    margin-bottom: 22px;
  }

  .p-document__tabContainer {
    padding-top: 15px;
  }
}
@media (min-width: 1024px) {
  .p-document {
    margin-bottom: -24px;
  }

  .p-document__header {
    margin-bottom: 37px;
  }

  .p-document__content {
    padding-left: 23.2505643341%;
    margin-left: auto;
    line-height: 2;
  }

  .p-document__section {
    margin-bottom: 56px;
  }
  .p-document__section:not(:last-child) {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--color_border);
  }

  .p-document__heading {
    margin-bottom: 4px;
  }

  .p-document__body > p:not(:last-child) {
    margin-bottom: 27px;
  }

  .p-document__tabContainer {
    padding-top: 40px;
  }
}
.p-embeddedModule {
  max-width: 55rem;
}
.p-embeddedModule__caption {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color_sub);
}
.p-eyecatch {
  display: block;
}
.p-eyecatch > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .p-eyecatch {
    height: 120vw;
  }
}
@media (min-width: 1024px) {
  .p-eyecatch {
    height: 55rem;
    margin-bottom: 2rem;
  }
}
.p-feedback {
  box-sizing: content-box;
  transition: opacity 0.45s linear, height 0.6s var(--easing_ease_out);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}
.p-feedback__content {
  border-top: 1px solid var(--color_border);
}
.p-feedback__content > dt {
  display: flex;
  align-items: center;
}
.p-feedback__content > dt > span {
  font-size: 1.6rem;
  font-weight: 700;
}
.p-feedback__count {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0 0.8rem;
  margin-left: 0.8rem;
  border-radius: 1rem;
  background: var(--color_background);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.p-feedback__text {
  margin-bottom: 1.6rem;
  position: relative;
  text-align: center;
  font-weight: 700;
  color: #707070;
}
.p-feedback__text.-floating {
  margin-top: 0;
}
.p-feedback__text > span {
  display: block;
  width: 100%;
}
.p-feedback__text > span.-after {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.45s linear;
}
.p-feedback__text[data-complete=true] .-before {
  opacity: 0;
}
.p-feedback__text[data-complete=true] .-after {
  opacity: 1;
}
.p-feedback__scores {
  display: flex;
  justify-content: center;
}
.p-feedback__score {
  transition: opacity 0.45s linear 0.15s, visibility 0.45s linear 0.15s;
}
.p-feedback__score[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
}
.p-feedback__score > input[type=radio] {
  display: none;
}
.p-feedback__label {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  border-radius: 50%;
  font-weight: 700;
  color: rgba(0, 10, 2, 0.2);
  cursor: pointer;
}
.p-feedback__label[data-score="1"] {
  background-color: #D6D6D6;
}
.p-feedback__label[data-score="2"] {
  background-color: #BBCAE2;
}
.p-feedback__label[data-score="3"] {
  background-color: #A5D0E3;
}
.p-feedback__label[data-score="4"] {
  background-color: #83CCD9;
}
.p-feedback__label[data-score="5"] {
  background-color: #83D9C8;
}
.p-feedback__label[data-score="6"] {
  background-color: #AAD39E;
}
.p-feedback__label[data-score="7"] {
  background-color: #B9D373;
}
.p-feedback__label[data-score="8"] {
  background-color: #D9C583;
}
.p-feedback__label[data-score="9"] {
  background-color: #D9A483;
}
.p-feedback__label[data-score="10"] {
  background-color: #D98383;
}
input[type=radio]:checked + .p-feedback__label {
  color: var(--color_base);
  border-color: var(--color_base);
}
@media (max-width: 1023px) {
  .p-feedback__content {
    padding: 2rem 0 2.5rem;
  }

  .p-feedback__text {
    margin-top: 2rem;
    font-size: 1.4rem;
  }

  .p-feedback__label {
    width: min(3.3rem, 8.8vw);
    height: min(3.3rem, 8.8vw);
    font-size: 1.2rem;
  }
}
@media (min-width: 1024px) {
  .p-feedback__content {
    padding: 2.4rem 0 3.5rem;
  }

  .p-feedback__text {
    margin-top: 3rem;
    font-size: 1.6rem;
  }

  .p-feedback__scores > li {
    margin: 0 0.4rem;
  }

  .p-feedback__label {
    width: 3.9rem;
    height: 3.9rem;
    font-size: 1.4rem;
  }
  .p-feedback__label:hover {
    color: var(--color_base);
    border-color: var(--color_base);
  }
}
.p-figureModule__image {
  display: flex;
  justify-content: center;
  background: var(--color_background);
}
.p-figureModule__caption {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--color_sub);
  line-height: 1.75;
}
.p-figureModule.isFreeAspect .p-figureModule__image > img {
  max-width: 100%;
  height: auto;
}
.p-figureModule.isCopyProtection {
  pointer-events: none;
}
.p-figureModule.isCopyProtection * {
  pointer-events: none;
}
.p-figureModule:not(.isFreeAspect) .p-figureModule__image {
  display: flex;
  justify-content: center;
}
.p-figureModule:not(.isFreeAspect) .p-figureModule__image > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.p-form__supply.-required::before, .p-form__title.-required::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--color_series);
  border-radius: 50%;
}
.p-form {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.p-form.-fluid {
  width: auto;
}
.p-form__field {
  display: flex;
  flex-direction: column;
}
.p-form__field:not(:last-child) {
  margin: 0 0 17px;
}
.p-form__title {
  font-weight: 700;
  line-height: 1.4;
}
.p-form__title:last-child {
  margin-bottom: 0;
}
.p-form__title.-required::after {
  content: "";
  margin-left: 7px;
}
.p-form__caption {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  margin-bottom: -5px;
}
.p-form__caption a {
  color: var(--color_link);
}
.p-form__caption:first-child {
  margin-top: 0;
}
.p-form__hr {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color_border);
}
.p-form__supply {
  font-size: 1.2rem;
  line-height: 1.6666666667;
}
.p-form__supply.-right {
  text-align: right;
}
.p-form__supply.-required::before {
  content: "";
  margin-right: 7px;
}
.p-form__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-form__nav .c-button:not(:first-child) {
  margin-top: 15px;
}
.p-form__checkText {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.p-form__info {
  font-size: 1.1rem;
  margin-top: 11px;
  text-align: right;
  /**
   * エラースタイル
   */
  /**
   * 左寄せ
   */
}
[dara-error] .p-form__info[aria-hidden=true] {
  display: none;
}
[data-state=invalid] .p-form__info[aria-hidden=false] {
  color: var(--color_series);
}
.p-form__info.-left {
  text-align: left;
}
a.p-form__info {
  color: var(--color_link) !important;
}
.p-form__wysiwyg {
  font-size: 1.4rem;
  line-height: 2;
}
.p-form__edit {
  color: var(--color_link);
  border-left: 1px solid var(--color_border);
}
.p-form__recaptcha > div {
  margin: auto;
}
@media (max-width: 1023px) {
  .p-form__section:not(:last-child) {
    margin: 0 0 20px;
  }

  .p-form__title {
    font-size: 1.3rem;
    margin-bottom: 7px;
  }

  .p-form__list > li:not(:first-child) {
    margin-top: 3px;
  }

  .p-form__caption {
    margin-top: 6px;
  }

  .p-form__hr {
    margin: 20px 0;
  }

  .p-form__supply {
    margin-top: -4px;
    margin-bottom: 12px;
  }

  .p-form__nav {
    margin-top: 20px;
  }

  .p-form__checkText {
    font-size: 1.2rem;
  }
  .p-form__checkText .c-checkbox {
    margin-right: 8px;
  }

  .p-form__result {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    margin-bottom: -5px;
  }

  .p-form__wysiwyg:not(:last-child) {
    margin-bottom: 20px;
  }

  .p-form__edit {
    font-size: 1.1rem;
    margin-left: 8px;
    padding-left: 8px;
  }

  .p-form__controlls > li:not(:last-child) {
    margin-bottom: 20px;
  }

  .p-form__avatar {
    width: 95px;
    margin: 10px auto 0;
  }
}
@media (min-width: 1024px) {
  .p-form__section:not(:last-child) {
    margin: 0 0 30px;
  }

  .p-form__title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .p-form__list > li:not(:first-child) {
    margin-top: 5px;
  }

  .p-form__caption {
    margin-top: 16px;
  }

  .p-form__hr {
    margin: 30px 0;
  }

  .p-form__supply {
    margin-bottom: 22px;
  }

  .p-form__nav {
    margin-top: 30px;
  }

  .p-form__checkText {
    font-size: 1.4rem;
  }
  .p-form__checkText .c-checkbox {
    margin-right: 10px;
  }

  .p-form__result {
    font-size: 1.5rem;
    line-height: 1.4666666667;
    margin-bottom: -3px;
  }

  .p-form__wysiwyg.-center {
    text-align: center;
  }
  .p-form__wysiwyg:not(:last-child) {
    margin-bottom: 30px;
  }

  .p-form__edit {
    font-size: 1.3rem;
    margin-left: 12px;
    padding-left: 12px;
    vertical-align: 1px;
  }

  .p-form__controlls > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .p-form__avatar {
    width: 120px;
    margin: 15px 0 20px;
  }
}
.p-greenCompany {
  position: relative;
  z-index: 1;
  color: #fff;
}
.p-greenCompany::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(23, 91, 86, 0.95) 0%, rgba(23, 91, 86, 0) 100%);
  opacity: 0.95;
}
.p-greenCompany__catch,
.p-greenCompany__heading {
  font-weight: 700;
}
@media (max-width: 1023px) {
  .p-greenCompany {
    padding: 3.6rem 0 4rem;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
    background: url(../img/green_company/background_sp.jpg) 50% 50%/cover no-repeat;
  }

  .p-greenCompany__header {
    padding: 0 1.5rem;
    margin-bottom: 4.5rem;
  }

  .p-greenCompany__catch {
    font-size: 1.3rem;
  }

  .p-greenCompany__heading {
    margin-top: 1rem;
    font-size: 3.2rem;
  }

  .p-greenCompany__list {
    display: flex;
    padding-top: 1rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .p-greenCompany__list::-webkit-scrollbar {
    display: none;
  }
  .p-greenCompany__list > li {
    width: 80vw;
    flex-shrink: 0;
    padding-left: 1.5rem;
    scroll-snap-align: center;
    box-sizing: content-box;
  }
  .p-greenCompany__list > li:last-child {
    padding-right: 1.5rem;
  }

  .p-greenCompany__button {
    margin-top: 3rem;
  }
}
@media (min-width: 1024px) {
  .p-greenCompany {
    padding: 4rem 4rem 8rem;
    background: url(../img/green_company/background_pc.jpg) 50% 50%/cover no-repeat;
  }

  .p-greenCompany__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8.5rem;
  }

  .p-greenCompany__catch {
    font-size: 1.6rem;
  }

  .p-greenCompany__heading {
    margin-top: 2rem;
    font-size: 3.6rem;
  }

  .p-greenCompany__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2rem;
    row-gap: 2.5rem;
  }
}
.p-greenCompanyItem {
  display: block;
  width: 100%;
  position: relative;
  color: #fff;
}
.p-greenCompanyItem__image {
  width: 100%;
  object-fit: cover;
}
.p-greenCompanyItem__label {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.4rem 1.5rem 0.4rem 0.4rem;
  border-radius: 1.5rem;
  position: absolute;
  top: -0.8rem;
  left: -1rem;
  font-size: 1.2rem;
  background: #f33;
}
.p-greenCompanyItem__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 0.4rem;
  background: url(../img/green_company/background_check.svg) 50% 50%/cover no-repeat;
  color: #f33;
}
.p-greenCompanyItem__name {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .p-greenCompanyItem__image {
    height: 53.3333333333vw;
  }
}
@media (min-width: 1024px) {
  .p-greenCompanyItem:hover {
    opacity: 0.6;
  }

  .p-greenCompanyItem__image {
    height: 12rem;
  }
}
.p-happening {
  padding-bottom: 2.2rem;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid var(--color_border);
}
.p-happening__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-happening__heading {
  font-weight: 700;
}
.p-happening__share {
  display: flex;
  justify-content: flex-end;
  font-size: 1.8rem;
  color: var(--color_sub);
}
.p-happening__shareButton {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  width: 24px;
  height: 24px;
}
.p-happening__image img {
  max-width: 100%;
  height: auto;
}
.p-happening__image > figcaption {
  display: block;
  font-size: 1.1rem;
  color: var(--color_sub);
  line-height: 1.7272727273;
}
.p-happening__text {
  line-height: 2;
}
.p-happening__link {
  margin-top: 1rem;
}
@media (max-width: 1023px) {
  .p-happening__heading {
    font-size: 1.8rem;
    line-height: 1.3888888889;
  }

  .p-happening__share {
    gap: 10px;
  }

  .p-happening__image {
    margin-top: 2rem;
  }
  .p-happening__image > figcaption {
    margin-top: 0.2rem;
  }

  .p-happening__text {
    margin-top: 1.6rem;
    font-size: 1.4rem;
  }

  .p-happening__tags {
    margin-top: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-happening__heading {
    font-size: 2rem;
    line-height: 1.25;
  }

  .p-happening__share {
    gap: 5px;
  }

  .p-happening__content {
    display: flex;
    margin-top: 2rem;
  }

  .p-happening__image {
    width: 24rem;
    flex-shrink: 0;
    margin-right: 3rem;
  }
  .p-happening__image > figcaption {
    margin-top: 0.5rem;
  }

  .p-happening__text {
    flex: 1;
    font-size: 1.6rem;
  }

  .p-happening__tags {
    margin-top: 2rem;
  }
}
.p-headingModule {
  position: relative;
  font-weight: 700;
}
.p-headingModule[data-level="4"] {
  font-size: 1.6rem;
}
@media (max-width: 1023px) {
  .p-headingModule[data-level="2"] {
    padding-bottom: 2.4rem;
    font-size: 2rem;
    line-height: 1.4;
    background: url(../img/background/h2.svg) 0 100%/4rem 0.3rem no-repeat;
  }
  .p-headingModule[data-level="3"] {
    font-size: 1.8rem;
    line-height: 1.3888888889;
  }
}
@media (min-width: 1024px) {
  .p-headingModule[data-level="2"] {
    padding-bottom: 3.6rem;
    font-size: 2.8rem;
    line-height: 1.3928571429;
    background: url(../img/background/h2.svg) 0 100%/5rem 0.3rem no-repeat;
  }
  .p-headingModule[data-level="3"] {
    font-size: 2rem;
    line-height: 1.95;
  }
}
.p-iframeModule {
  position: relative;
  padding-top: 56.25%;
}
.p-iframeModule__view {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.p-iframeModule__view iframe {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.p-indexModule {
  border-top: 1px solid var(--color_border);
  border-bottom: 1px solid var(--color_border);
}
.p-indexModule > dt {
  font-family: var(--font_en);
  font-weight: 700;
}
.p-indexModule__list {
  counter-reset: index;
}
.p-indexModule__list > li {
  display: flex;
  align-items: flex-start;
  counter-increment: index;
}
.p-indexModule__list > li::before {
  content: counter(index) ".";
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
  font-family: var(--font_en);
  font-weight: 700;
}
.p-indexModule__list > li a:hover {
  opacity: 0.6;
}
@media (max-width: 1023px) {
  .p-indexModule {
    padding: 2.4rem 0;
  }
  .p-indexModule:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .p-indexModule > dt {
    margin-bottom: 1.6rem;
    font-size: 1.5rem;
  }

  .p-indexModule__list {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .p-indexModule__list > li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .p-indexModule__list > li::before {
    width: 2.4rem;
    padding-right: 1rem;
  }
}
@media (min-width: 1024px) {
  .p-indexModule {
    display: flex;
    align-items: flex-start;
    padding: 2.8rem 0;
  }
  .p-indexModule > dt {
    padding-right: 7rem;
    flex-shrink: 0;
    font-size: 1.8rem;
  }
  .p-indexModule > dd {
    flex: 1;
  }

  .p-indexModule__list {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
  .p-indexModule__list > li:not(:last-child) {
    margin-bottom: 2rem;
  }
  .p-indexModule__list > li::before {
    width: 3.5rem;
    padding-right: 1.2rem;
    font-size: 1.8rem;
  }
}
.p-informationModule {
  border: 1px solid var(--color_border);
}
.p-informationModule > dt {
  padding: 1.8rem 0 1.2rem;
  border-bottom: 1px solid var(--color_border);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2222222222;
}
.p-informationModule > dt:empty {
  display: none;
}
.p-informationModule__image > img,
.p-informationModule__image > picture > img {
  max-width: 100%;
}
.p-informationModule__image.isCopyProtection {
  pointer-events: none;
}
.p-informationModule__image.isCopyProtection * {
  pointer-events: none;
}
.p-informationModule__carousel {
  margin-top: 15px;
  margin-bottom: 15px;
}
.p-informationModule__carousel:first-child {
  margin-top: 0;
}
.p-informationModule__carousel:last-child {
  margin-bottom: 0;
}
.p-informationModule__carouselImage {
  position: relative;
  padding-top: 66.7%;
  background: var(--color_background);
}
.p-informationModule__carouselImage > img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translateX(-50%) translateY(-50%);
}
.p-informationModule__detail > *:not(:last-child) {
  margin-bottom: 1.5rem;
}
.p-informationModule__text {
  font-size: 1.4rem;
  line-height: 1.7857142857;
}
.p-informationModule__link > li:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media (max-width: 1023px) {
  .p-informationModule {
    padding: 0 1.5rem 1.5rem;
  }
  .p-informationModule[data-type=multi] > dt {
    border-bottom: none;
  }

  .p-informationModule__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 66.6666666667vw;
    background: var(--color_background);
    margin-top: -1px;
  }
  .p-informationModule__image > img,
.p-informationModule__image > picture > img {
    max-height: 100%;
  }

  .p-informationModule__detail {
    padding-top: 1.5rem;
  }

  .p-informationModule__link > li:not(:last-child) {
    margin-bottom: 0.2rem;
  }
}
@media (min-width: 1024px) {
  .p-informationModule {
    padding: 0 1.5rem;
  }
  .p-informationModule > dd {
    display: flex;
    padding: 1.5rem 0 2rem;
  }
  .p-informationModule[data-type=multi] > dd {
    display: block;
  }

  .p-informationModule__image {
    width: 22rem;
    padding: 0 2.5rem;
    margin-right: 3rem;
    flex-shrink: 0;
  }
  .p-informationModule__image > img,
.p-informationModule__image > picture > img {
    max-width: 100%;
  }

  .p-informationModule__detail {
    flex: 1;
  }

  .p-informationModule__link > li:not(:last-child) {
    margin-bottom: 0.5rem;
  }

  .p-informationModule__carousel:not(.swiper-container-initialized) {
    opacity: 1;
  }
  .p-informationModule__carousel:not(.swiper-container-initialized) .swiper-button-prev,
.p-informationModule__carousel:not(.swiper-container-initialized) .swiper-button-next {
    display: none;
  }
  .p-informationModule__carousel:not(.swiper-container-initialized) .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .p-informationModule__carousel:not(.swiper-container-initialized) .p-informationModule__carouselItem {
    width: calc(33.333% - 7px);
  }
}
.p-initial__list {
  display: flex;
}
.p-initial__list > li {
  flex-shrink: 0;
}
.p-initial__list > li:not(:last-child) {
  margin-right: 1rem;
}
.p-initial__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color_border);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}
.p-initial__item[aria-selected=true] {
  border-color: var(--color_base);
  background: var(--color_base);
  color: #fff;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .p-initial {
    border-top: 1px solid var(--color_border);
    border-bottom: 1px solid var(--color_border);
    position: relative;
  }

  .p-initial__container {
    padding: 1.2rem 0;
    overflow: auto;
    scrollbar-width: none;
  }
  .p-initial__container::-webkit-scrollbar {
    display: none;
  }
  .p-initial__container[data-start=true] .p-initial__arrow.-prev {
    opacity: 0;
    visibility: hidden;
  }
  .p-initial__container[data-end=true] .p-initial__arrow.-next {
    opacity: 0;
    visibility: hidden;
  }
  .p-initial__container[data-arrow=false] .p-initial__arrow {
    visibility: hidden;
  }

  .p-initial__item {
    min-width: 4rem;
    height: 4rem;
    border-radius: 2rem;
    font-size: 1.4rem;
  }
  .p-initial__item.-alphabet {
    padding: 0 2.2rem;
  }

  .p-initial__arrow {
    width: 9rem;
    position: absolute;
    top: 0;
    bottom: 0;
    transition: opacity 0.1s linear, visibility 0.1s linear;
  }
  .p-initial__arrow::before {
    position: relative;
    top: 2px;
  }
  .p-initial__arrow.-prev {
    left: 0;
    text-align: left;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, white 90%, white 100%);
  }
  .p-initial__arrow.-prev::before {
    display: inline-flex;
    transform: scaleX(-1);
  }
  .p-initial__arrow.-next {
    right: 0;
    text-align: right;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 90%, white 100%);
  }
}
@media (min-width: 1024px) {
  .p-initial__item {
    min-width: 5rem;
    padding: 0 1.6rem;
    height: 5rem;
    border-radius: 2.5rem;
    font-size: 1.8rem;
  }
  .p-initial__item.-alphabet {
    padding: 0 2.4rem;
  }
  .p-initial__item:hover {
    opacity: 0.6;
  }

  .p-initial__arrow {
    display: none;
  }
}
.p-interaction__content {
  border: 1px solid var(--color_border);
}
.-register .p-interaction__content {
  padding-top: 0;
}
.p-interaction__section {
  max-width: 450px;
  margin: auto;
}
.p-interaction__wysiwyg {
  /**
   * .p-interaction__wysiwyg -> 中央寄せ
   */
}
.p-interaction__wysiwyg h2 {
  font-weight: 400;
}
.p-interaction__wysiwyg p {
  font-size: 1.4rem;
  line-height: 2;
}
.p-interaction__wysiwyg p + p {
  margin-top: 15px;
}
.p-interaction__wysiwyg .center {
  text-align: center;
}
.p-interaction__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-interaction__navText {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 13px;
  color: var(--color_dialog_2);
}
.p-interaction__navText.-hasError {
  color: var(--color_series);
}
@media (max-width: 1023px) {
  .p-interaction {
    margin-bottom: 40px;
  }

  .p-interaction__header {
    margin-bottom: 25px;
  }

  .p-interaction__content {
    padding: 27px 15px 30px;
  }

  .p-interaction__section:not(:last-child) {
    margin-bottom: 20px;
  }

  .p-interaction__wysiwyg h2 {
    font-size: 2.2rem;
    line-height: 1.2727272727;
    margin-bottom: 12px;
  }

  .p-interaction__nav:not(:first-child) {
    margin-top: 21px;
  }
}
@media (min-width: 1024px) {
  .p-interaction {
    margin-bottom: 60px;
  }

  .p-interaction__header {
    margin-bottom: 45px;
  }
  .-register .p-interaction__header {
    margin-bottom: 25px;
  }

  .p-interaction__content {
    padding: 57px 40px 60px;
  }

  .p-interaction__section:not(:last-child) {
    margin-bottom: 40px;
  }

  .p-interaction__wysiwyg h2 {
    font-size: 2.4rem;
    line-height: 1.1666666667;
    margin-bottom: 17px;
  }
  .p-interaction__wysiwyg p {
    letter-spacing: 0.025em;
  }

  .p-interaction__message {
    text-align: center;
  }

  .p-interaction__nav:not(:first-child) {
    margin-top: 21px;
  }
}
@media (max-width: 1023px) {
  .p-items.-mobile-vertical .p-items__list > li:not(:last-child) {
    margin-bottom: 2rem;
  }

  .p-items.-mobile-horizontal {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
    overflow: hidden;
  }
  .p-items.-mobile-horizontal .p-items__list {
    display: flex;
    padding-left: 1.5rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .p-items.-mobile-horizontal .p-items__list::-webkit-scrollbar {
    display: none;
  }
  .p-items.-mobile-horizontal .p-items__list > li {
    width: 80vw;
    flex-shrink: 0;
    margin-right: 1.5rem;
    scroll-snap-align: center;
  }
}
@media (min-width: 1024px) {
  .p-items__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    row-gap: 3rem;
  }
}
.p-jobCompanyModule {
  background: #fff;
}
.p-jobCompanyModule > img,
.p-jobCompanyModule > picture > img {
  flex-shrink: 0;
}
.p-jobCompanyModule + .p-jobCompanyModule {
  margin-top: 1rem;
}
.p-jobCompanyModule__description {
  flex: 1;
}
.p-jobCompanyModule__description > dt {
  font-weight: 700;
}
.p-jobCompanyModule__description > dd > a {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--color_job);
}
@media (max-width: 1023px) {
  .p-jobCompanyModule {
    padding: 1.5rem;
  }
  .p-jobCompanyModule > img,
.p-jobCompanyModule > picture > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
  }

  .p-jobCompanyModule__description > dt {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.375;
  }
  .p-jobCompanyModule__description > dd {
    font-size: 1.3rem;
    line-height: 1.7692307692;
  }
  .p-jobCompanyModule__description > dd > a {
    margin-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .p-jobCompanyModule {
    display: flex;
    padding: 2rem;
  }
  .p-jobCompanyModule > img,
.p-jobCompanyModule > picture > img {
    width: 21rem;
    margin-right: 2rem;
  }

  .p-jobCompanyModule__description > dt {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    line-height: 1.3888888889;
  }
  .p-jobCompanyModule__description > dd {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }
  .p-jobCompanyModule__description > dd > a {
    margin-top: 1.2rem;
  }
}
.p-jobModule {
  padding: 1.5rem;
  background: var(--color_job);
}
.p-jobModule__heading {
  padding-top: 0.5rem;
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.p-jobModule__reqruitment {
  padding-top: 1.8rem;
}
.p-jobModule__subheading {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1023px) {
  .p-jobModule {
    margin: 0 -1.5rem;
  }
}
@media (min-width: 1024px) {
  .p-jobModule__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.p-jobOccupationModule {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 1.5rem 1rem;
  background: #fff;
}
.p-jobOccupationModule > img,
.p-jobOccupationModule > picture > img {
  width: 9rem;
  margin-right: 1.4rem;
  flex-shrink: 0;
}
.p-jobOccupationModule__description {
  flex: 1;
}
.p-jobOccupationModule__description > dt {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5625;
}
.p-jobOccupationModule__description > dd {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1.2rem;
  color: var(--color_sub);
  line-height: 1.5;
}
.p-jobOccupationModule__company {
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--color_border);
}
.p-jobOccupationModule__company > img,
.p-jobOccupationModule__company > picture > img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 1rem;
  border-radius: 50%;
}
.p-jobOccupationModule__company > b {
  font-size: 1.2rem;
  font-weight: normal;
}
@media (max-width: 1023px) {
  .p-jobOccupationModule:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.p-largeImageModule > img {
  display: block;
  width: 100%;
}
.p-largeImageModule > figcaption {
  display: block;
  padding: 0 var(--padding);
  font-size: 1.2rem;
  color: var(--color_sub);
}
@media (max-width: 1023px) {
  .p-largeImageModule {
    margin: 0 -1.5rem;
  }
  .p-largeImageModule > figcaption {
    margin-top: 0.5em;
  }
}
@media (min-width: 1024px) {
  .p-largeImageModule > figcaption {
    margin-top: 1em;
  }
}
.p-linkModule {
  display: inline-flex;
  background: rgba(34, 75, 143, 0.08);
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color_link);
  line-height: 1.9285714286;
}
.p-linkModule[target=_blank] span:after {
  display: inline-block;
  font-family: "iconfont";
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  text-decoration: none;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  content: "\ea10";
}
.p-linkModule[target=_blank] span::after {
  display: inline-flex;
  align-items: center;
  margin-left: 0.1rem;
  font-size: 1.3rem;
  transform: translateY(1px);
}
@media (max-width: 1023px) {
  .p-linkModule {
    padding: 0.7rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .p-linkModule {
    padding: 0.8rem 2rem;
  }
  .p-linkModule:hover {
    opacity: 0.6;
  }
}
.p-listBanner {
  display: flex;
  justify-content: center;
}
@media (max-width: 1023px) {
  .p-listBanner {
    padding: 2rem 0;
  }
}
.p-listHeader {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color_border);
}
.p-listHeader .c-followButton {
  margin-left: 1rem;
}
.p-listHeader__heading {
  display: flex;
  align-items: center;
}
.p-listHeader__total {
  align-self: flex-end;
  color: var(--color_sub);
}
.p-listHeader__link {
  align-self: flex-end;
  color: var(--color_link);
  font-weight: 700;
}
.p-listHeader__link i {
  margin-left: 2px;
}
@media (max-width: 1023px) {
  .p-listHeader {
    padding-bottom: 1rem;
  }
  .p-listHeader.-result {
    padding-bottom: 2.5rem;
  }

  .p-listHeader__heading {
    justify-content: space-between;
  }

  .p-listHeader__total {
    margin-top: 2rem;
    font-size: 1.2rem;
  }

  .p-listHeader__link {
    font-size: 1.1rem;
  }

  .p-listHeader.-news .p-listHeader__total {
    margin-top: 0.5em;
  }
}
@media (min-width: 1024px) {
  .p-listHeader {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
  .p-listHeader.-result {
    padding-bottom: 3.2rem;
  }

  .p-listHeader__followButton {
    margin-left: 1rem;
  }

  .p-listHeader__total {
    margin-top: 0.5rem;
    font-size: 1.3rem;
  }

  .p-listHeader__link {
    font-size: 1.3rem;
  }
  .p-listHeader__link i {
    vertical-align: -2px;
  }
}
.p-mailmagazine__hero {
  background-color: var(--color_background);
}
.p-mailmagazine__heading {
  display: inline-block;
  width: 19rem;
}
.p-mailmagazine__heading img {
  max-width: 100%;
}
.p-mailmagazine__heroContent {
  text-align: center;
}
.p-mailmagazine__heroImage {
  display: block;
}
.p-mailmagazine__heroImage > img {
  max-width: 100%;
  height: auto;
}
.p-mailmagazine__content {
  max-width: 600px;
  margin: auto;
}
.p-mailmagazine__list {
  font-weight: 700;
}
.p-mailmagazine__supply {
  background-color: var(--color_background);
}
.p-mailmagazine__form {
  border: 1px solid var(--color_border);
}
@media (max-width: 1023px) {
  .p-mailmagazine__header {
    margin-bottom: 21px;
  }

  .p-mailmagazine__heading {
    margin-bottom: 19px;
  }

  .p-mailmagazine__hero {
    padding: 4.5rem 1.5rem 0;
  }

  .p-mailmagazine__heroImage {
    width: 19rem;
    height: 13.8rem;
    margin: 40px auto 0;
  }

  .p-mailmagazine__content {
    padding: 22px 0 20px;
  }

  .p-mailmagazine__list {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    padding: 0 10px;
  }
  .p-mailmagazine__list > li:not(:last-child) {
    margin-bottom: 23px;
  }

  .p-mailmagazine__supply {
    padding: 21px 30px;
    font-size: 1.4rem;
    line-height: 1.7142857143;
    margin-top: 16px;
  }

  .p-mailmagazine__form {
    padding: 17px 15px 30px;
  }
}
@media (min-width: 1024px) {
  .p-mailmagazine {
    padding-bottom: 21px;
  }

  .p-mailmagazine__header {
    margin-bottom: 31px;
  }

  .p-mailmagazine__hero {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    padding: 0 40px;
  }

  .p-mailmagazine__heading {
    margin-bottom: 17px;
  }

  .p-mailmagazine__heroContent {
    flex: 1;
    padding: 30px 0;
  }

  .p-mailmagazine__heroImage {
    width: 29rem;
    height: 20.9rem;
    margin-top: 30px;
  }

  .p-mailmagazine__content {
    padding: 45px 0 60px;
  }

  .p-mailmagazine__list {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
  .p-mailmagazine__list > li:not(:last-child) {
    margin-bottom: 26px;
  }

  .p-mailmagazine__supply {
    padding: 23px 35px;
    font-size: 1.4rem;
    line-height: 2;
    margin-top: 42px;
  }

  .p-mailmagazine__form {
    padding: 60px 0;
  }
}
.p-mediakit__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.p-mediakit__wysiwyg {
  line-height: 2;
}
.p-mediakit__wysiwyg > h2:first-child {
  margin-top: 0;
}
.p-mediakit__wysiwyg > h2:last-child {
  margin-bottom: 0;
}
.p-mediakit__wysiwyg > p:last-child {
  margin-bottom: 0;
}
.p-mediakit__wysiwyg a {
  color: var(--color_link);
  font-weight: 700;
}
.p-mediakit__wysiwyg a > i {
  vertical-align: -2px;
  font-weight: 400;
}
.p-mediakit__wysiwyg a:hover {
  opacity: 0.6;
}
.p-mediakit__image {
  position: relative;
  padding-top: 75%;
}
.p-mediakit__image img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .p-mediakit {
    margin-bottom: 20px;
  }

  .p-mediakit__header {
    margin-bottom: 30px;
  }

  .p-mediakit__section {
    margin-bottom: 10px;
  }

  .p-mediakit__wysiwyg {
    font-size: 1.4rem;
  }
  .p-mediakit__wysiwyg > h2 {
    font-size: 1.8rem;
  }
  .p-mediakit__wysiwyg > p {
    margin-bottom: 15px;
  }
  .p-mediakit__wysiwyg a > i {
    margin-right: 3px;
  }

  .p-mediakit__image {
    margin-bottom: 20px;
    width: calc(100% + var(--padding) * 2);
    margin-left: calc(var(--padding) * -1);
  }
}
@media (min-width: 1024px) {
  .p-mediakit {
    margin-bottom: 40px;
  }

  .p-mediakit__header {
    margin-bottom: 50px;
  }

  .p-mediakit__section {
    padding-bottom: 29px;
    margin-bottom: 29px;
    border-bottom: 1px solid var(--color_border);
  }

  .p-mediakit__wysiwyg {
    font-size: 1.8rem;
  }
  .p-mediakit__wysiwyg > h2 {
    font-size: 2rem;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .p-mediakit__wysiwyg > p {
    margin-bottom: 21px;
  }
  .p-mediakit__wysiwyg a > i {
    margin-right: 8px;
  }

  .p-mediakit__image {
    margin-bottom: 40px;
  }
}
.p-movieModule {
  padding: 1.5rem 1.5rem 2rem;
  border: 1px solid var(--color_border);
}
.p-movieModule__player {
  padding-top: 56.25%;
  position: relative;
}
.p-movieModule__player > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-movieModule__title {
  display: block;
  margin-top: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.p-movieModule__link {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--color_border);
}
@media (max-width: 1023px) {
  .p-movieModule__link > li:not(:last-child) {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .p-movieModule__link {
    display: flex;
    flex-wrap: wrap;
  }
  .p-movieModule__link > li:not(:last-child) {
    margin-right: 2rem;
  }
}
.p-mypage__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -4px;
  margin-bottom: 15px;
}
.p-mypage__header.-large {
  display: block;
}
.p-mypage__heading {
  display: flex;
  align-items: center;
}
.p-mypage__heading::before {
  vertical-align: -1px;
  font-weight: 400;
}
.p-mypage__link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--color_link);
  font-weight: 700;
}
.p-mypage__link::before {
  order: 2;
  margin-left: 0.2rem;
}
.p-mypage__count {
  display: flex;
  justify-content: flex-end;
  color: var(--color_sub);
}
.p-mypage__section:last-child {
  padding-bottom: 0;
}
.-col-3 .p-mypage__carousel .swiper-slide {
  width: calc(33.3333% - 20px);
}
.p-mypage__commented {
  color: var(--color_border);
  border: 2px solid var(--color_border);
}
@media (max-width: 1023px) {
  .p-mypage__heading {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .-small .p-mypage__heading {
    font-size: 1.3rem;
  }
  .-large .p-mypage__heading {
    font-size: 1.8rem;
  }
  .p-mypage__heading::before {
    font-size: 1.5rem;
    margin-right: 6px;
  }
  .p-mypage__heading[class*=eye]::before {
    font-size: 1.8rem;
  }

  .p-mypage__link {
    font-size: 1.2rem;
  }

  .p-mypage__count {
    font-size: 1.2rem;
  }

  .p-mypage__content {
    padding-top: 25px;
  }

  .p-mypage__section:not(:last-child) {
    margin-bottom: 40px;
  }

  .p-mypage__carousel {
    margin-right: calc(var(--padding) * -1);
  }

  .p-mypage__slide {
    width: calc(50% - 16px);
  }

  .p-mypage__commented {
    font-size: 1.6rem;
    min-height: 174px;
  }

  .p-mypage__button {
    margin-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-mypage__heading {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .-small .p-mypage__heading {
    font-size: 1.6rem;
  }
  .-large .p-mypage__heading {
    font-size: 3.6rem;
  }
  .-large .p-mypage__heading::before {
    font-size: 1.8rem;
  }
  .p-mypage__heading::before {
    font-size: 1.7rem;
    margin-right: 8px;
  }
  .p-mypage__heading[class*=eye]::before {
    font-size: 2rem;
  }

  .p-mypage__link {
    font-size: 1.3rem;
  }

  .p-mypage__count {
    font-size: 1.3rem;
  }

  .p-mypage__content {
    padding-top: 40px;
  }

  .p-mypage__section:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color_border);
  }

  .p-mypage__commented {
    font-size: 1.8rem;
    min-height: 240px;
  }

  .p-mypage__list {
    border-top: 1px solid var(--color_border);
  }

  .p-mypage__button {
    margin-top: 4rem;
  }
}
.p-navigation__list {
  display: flex;
  align-items: center;
  padding-left: 1.8rem;
  font-family: var(--font_en);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.8461538462;
}
.p-navigation__list > li {
  position: relative;
  cursor: default;
}
.p-navigation__list > li > a,
.p-navigation__list > li > span {
  display: flex;
  align-items: center;
  height: 4.8rem;
}
.p-navigation__list > li > a:hover,
.p-navigation__list > li > span:hover {
  opacity: 0.6;
}
.p-navigation__list > li:not(:last-child) > a,
.p-navigation__list > li:not(:last-child) > span {
  padding-right: 1.1rem;
  padding-left: 1.1rem;
}
.p-navigation__list > li:last-child > a,
.p-navigation__list > li:last-child > span {
  padding-left: 1.1rem;
}
.p-navigation__list > li:hover .p-navigation__tooltip {
  visibility: visible;
}
.p-navigation__tooltip {
  visibility: hidden;
  width: 35rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--color_border);
  position: absolute;
  top: 4rem;
  left: -1.8rem;
}
.p-navigation__tooltip::before, .p-navigation__tooltip::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 8px 7px;
  position: absolute;
  left: 2.5em;
}
.p-navigation__tooltip::before {
  bottom: 100%;
  border-color: transparent transparent var(--color_border) transparent;
}
.p-navigation__tooltip::after {
  bottom: calc(100% - 1px);
  border-color: transparent transparent #fff transparent;
}
.p-navigation__tooltip > dt {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.8461538462;
}
.p-news {
  background: var(--color_background);
}
.p-news__header {
  font-family: var(--font_en);
  font-weight: 700;
  line-height: 1;
}
.p-news__heading {
  font-size: inherit;
}
.p-news__date {
  font-size: inherit;
}
.p-news__calendarButton {
  width: 4rem;
  height: 4rem;
  margin-left: 1rem;
  border-radius: 50%;
  background: var(--color_base);
  color: #fff;
  font-size: 1.6rem;
}
.p-news__calendarButton::before {
  display: block;
  transform: translateY(-1px);
}
.p-news__list {
  line-height: 1.8;
}
.p-news__list > li > a {
  display: flex;
  align-items: flex-start;
}
.p-news__list > li > a em {
  padding-left: 0.2rem;
  color: var(--color_sub);
}
.p-news__list > li .c-time {
  margin-left: 5px;
}
@media (max-width: 1023px) {
  .p-news {
    padding: 2.5rem 1.5rem;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }

  .p-news__header {
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }
  .p-news__header::before {
    width: 7.4rem;
    height: 7.1rem;
    right: 0;
    bottom: -0.5rem;
  }

  .p-news__date {
    display: none;
  }

  .p-news__list {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
  .p-news__list > li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .p-news__list > li > a::before {
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 1.6rem;
    transform: translateY(6px);
  }

  .p-news__button {
    margin-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-news {
    padding: 3.5rem 4rem 3rem;
  }

  .p-news__header {
    display: flex;
    align-items: center;
    padding-bottom: 1.6rem;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid;
    font-size: 3rem;
  }
  .p-news__header::before {
    width: 9.7rem;
    height: 9.4rem;
    right: 0.5rem;
    bottom: 1.2rem;
  }

  .p-news__date {
    display: flex;
    align-items: center;
    margin-left: 2.3rem;
    padding-left: 2.4rem;
    position: relative;
  }
  .p-news__date::before {
    content: "";
    width: 1px;
    height: 2.2rem;
    background: var(--color_base);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }

  .p-news__list {
    line-height: 1.8;
  }
  .p-news__list > li:not(:last-child) {
    margin-bottom: 3rem;
  }
  .p-news__list > li > a:hover {
    opacity: 0.6;
  }
  .p-news__list > li > a::before {
    display: inline-flex;
    margin-right: 0.4rem;
    transform: translateY(5px);
    font-size: 1.8rem;
  }

  .p-news__button {
    margin-top: 3rem;
  }

  .p-news__calendarButton:hover {
    opacity: 0.6;
  }
}
.p-newsCard {
  display: flex;
  align-items: flex-start;
}
.p-newsCard__image {
  flex-shrink: 0;
}
.p-newsCard__text {
  flex: 1;
}
.p-newsCard__title {
  font-weight: 700;
}
.p-newsCard__date {
  color: var(--color_sub);
}
.p-newsCard__category {
  color: var(--color_link);
}
.p-newsCard__meta {
  display: flex;
  line-height: 1;
}
.p-newsCard__meta > *:not(:first-child) {
  border-left: 1px solid var(--color_border);
}
@media (max-width: 1023px) {
  .p-newsCard__image {
    width: 9rem;
  }

  .p-newsCard__text {
    padding-left: 1.5rem;
  }

  .p-newsCard__title {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }

  .p-newsCard__meta {
    margin-top: 0.6rem;
    font-size: 1.2rem;
  }
  .p-newsCard__meta > *:not(:first-child) {
    margin-left: 0.8rem;
    padding-left: 0.8rem;
  }
}
@media (min-width: 1024px) {
  .p-newsCard__image {
    width: 30rem;
  }

  .p-newsCard__text {
    padding-left: 3rem;
  }

  .p-newsCard__title {
    font-size: 2.3rem;
    line-height: 1.4347826087;
  }

  .p-newsCard__meta {
    margin-top: 1.6rem;
    font-size: 1.3rem;
  }
  .p-newsCard__meta > *:not(:first-child) {
    margin-left: 1rem;
    padding-left: 1rem;
  }
}
.p-newsletter {
  background: var(--color_background);
}
.p-newsletter__heading {
  margin-bottom: 1rem;
  font-family: var(--font_en);
  font-weight: 700;
}
.p-newsletter__text {
  font-weight: 700;
  color: var(--color_sub);
  line-height: 2;
  letter-spacing: 0.025em;
  text-align: center;
}
.p-newsletter__image {
  display: block;
}
.p-newsletter__image > img {
  max-width: 100%;
}
@media (max-width: 1023px) {
  .p-newsletter {
    padding-top: 2rem;
    text-align: center;
  }

  .p-newsletter__heading {
    font-size: 3.6rem;
  }

  .p-newsletter__text {
    font-size: 1.2rem;
  }

  .p-newsletter__button {
    margin-top: 2rem;
  }

  .p-newsletter__image {
    padding-top: 3rem;
  }
  .p-newsletter__image > img {
    width: 21rem;
  }
}
@media (min-width: 1024px) {
  .p-newsletter__container {
    display: flex;
    justify-content: center;
  }

  .p-newsletter__content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8rem;
  }
  .p-newsletter__content > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .p-newsletter__heading {
    font-size: 4.8rem;
  }

  .p-newsletter__text {
    font-size: 1.4rem;
  }

  .p-newsletter__button {
    margin-top: 2.5rem;
  }

  .p-newsletter__image {
    width: 45.8rem;
    flex-shrink: 0;
  }
}
@media (max-width: 1023px) {
  .p-newsList {
    padding-bottom: 3rem;
  }
  .p-newsList[data-added=true] {
    margin-top: -3rem;
  }
  .p-newsList > li {
    margin-top: 2rem;
  }
  .p-newsList > li:not(:last-child) {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color_border);
  }
}
@media (min-width: 1024px) {
  .p-newsList {
    padding-bottom: 6rem;
  }
  .p-newsList[data-added=true] {
    margin-top: -6rem;
  }
  .p-newsList > li {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color_border);
  }
}
.p-notFound__header {
  border-bottom: 1px solid var(--color_border);
}
.p-notFound__content {
  line-height: 2;
}
@media (max-width: 1023px) {
  .p-notFound {
    padding-bottom: 20px;
  }

  .p-notFound__header {
    padding-bottom: 27px;
    margin-bottom: 23px;
  }

  .p-notFound__heaing {
    font-size: 1.8rem;
  }

  .p-notFound__content {
    font-size: 1.4rem;
  }

  .p-notFound__text {
    margin-bottom: 22px;
  }
}
@media (min-width: 1024px) {
  .p-notFound {
    padding-bottom: 40px;
  }

  .p-notFound__header {
    padding-bottom: 35px;
    margin-bottom: 31px;
  }

  .p-notFound__heaing {
    font-size: 3.6rem;
  }

  .p-notFound__content {
    font-size: 1.8rem;
  }

  .p-notFound__text {
    margin-bottom: 29px;
  }
}
.p-playlist.-full iframe[src*="embed.music.apple.com"] {
  min-width: 100%;
}
@media (max-width: 1023px) {
  .p-playlist__button {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .p-playlist__button {
    margin-top: 3rem;
  }
}
.p-playlistItemModule {
  background: #fff;
}
.p-playlistItemModule__item {
  flex: 1;
  font-weight: 700;
}
.p-playlistItemModule__item > dt {
  color: var(--color_sub);
}
@media (max-width: 1023px) {
  .p-playlistItemModule {
    padding: 2rem 1.5rem 0;
  }

  .p-playlistItemModule__item {
    padding: 0 0.5rem 1.5rem;
  }
  .p-playlistItemModule__item > dt {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
  }
  .p-playlistItemModule__item > dd {
    font-size: 1.5rem;
  }

  .p-playlistItemModule__link {
    display: flex;
    border-top: 1px solid var(--color_border);
  }
  .p-playlistItemModule__link > li {
    flex: 1;
    flex-shrink: 0;
  }
  .p-playlistItemModule__link > li > a {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
  }
}
@media (min-width: 1024px) {
  .p-playlistItemModule {
    display: flex;
    align-items: center;
    padding: 2rem 0;
  }

  .p-playlistItemModule__item {
    flex: 1;
    padding: 0 2rem;
  }
  .p-playlistItemModule__item > dt {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  .p-playlistItemModule__item > dd {
    font-size: 1.6rem;
  }

  .p-playlistItemModule__link {
    flex-shrink: 0;
    padding: 0 2.5rem;
    border-left: 1px solid var(--color_border);
  }
}
.p-playlistModule {
  padding: 0 1.5rem 1.5rem;
  background: var(--color_background);
}
.p-playlistModule > dt {
  padding: 1.6rem 0 1.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3888888889;
}
.p-playlistModule__list > li:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 1023px) {
  .p-playlistModule {
    margin: 0 -1.5rem;
  }
}
.p-production {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-production__image {
  display: block;
  width: 12rem;
  height: 12rem;
  margin-bottom: 1.8rem;
  border-radius: 50%;
  object-fit: cover;
}
.p-production__name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.35;
}
.p-production__title {
  font-size: 1.3rem;
  color: var(--color_sub);
  line-height: 2.0769230769;
}
@media (max-width: 1023px) {
  .p-production {
    display: none;
  }
}
.p-productionCard {
  display: flex;
}
.p-productionCard__image {
  display: block;
  flex-shrink: 0;
}
.p-productionCard__image > img {
  object-fit: cover;
  border-radius: 50%;
}
.p-productionCard__description {
  flex: 1;
}
.p-productionCard__description > dt {
  font-weight: 700;
}
.p-productionCard__title {
  color: var(--color_sub);
}
@media (max-width: 1023px) {
  .p-productionCard__image > img {
    width: 9rem;
    height: 9rem;
  }

  .p-productionCard__description {
    padding-left: 1.5rem;
  }
  .p-productionCard__description > dt {
    font-size: 1.5rem;
  }

  .p-productionCard__title {
    margin-top: 0.6rem;
    font-size: 1.2rem;
  }

  .p-productionCard__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-top: 0.8rem;
    font-size: 1.3rem;
    line-height: 1.6923076923;
  }
}
@media (min-width: 1024px) {
  .p-productionCard a:hover {
    opacity: 0.6;
  }

  .p-productionCard__image > img {
    width: 12rem;
    height: 12rem;
  }

  .p-productionCard__description {
    padding: 0.5rem 0 0 3rem;
  }
  .p-productionCard__description > dt {
    font-size: 2rem;
  }

  .p-productionCard__title {
    margin-top: 0.8rem;
    font-size: 1.3rem;
  }

  .p-productionCard__text {
    margin-top: 1rem;
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.p-productionList__header {
  display: flex;
  align-items: center;
}
.p-productionList__heading {
  line-height: 1.5;
}
.p-productionList__total {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0 0.8rem;
  margin-left: 1rem;
  border-radius: 1rem;
  background: var(--color_background);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}
@media (max-width: 1023px) {
  .p-productionList {
    padding-top: 2rem;
    border-top: 1px solid var(--color_border);
  }

  .p-productionList__header {
    padding-bottom: 1.5rem;
  }

  .p-productionList__heading {
    font-size: 1.6rem;
  }

  .p-productionList__item:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-productionList__header {
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color_border);
  }

  .p-productionList__heading {
    font-size: 1.8rem;
    font-weight: 700;
  }

  .p-productionList__list {
    border-top: 1px solid var(--color_background);
  }

  .p-productionList__item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color_background);
  }
}
.p-profile.-tag {
  border-bottom: 1px solid var(--color_border);
}
.p-profile__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 1rem;
}
.p-profile__picture {
  display: block;
}
.p-profile__image {
  display: block;
  width: 9.5rem;
  height: 9.5rem;
  margin-bottom: 1.8rem;
  border-radius: 50%;
  object-fit: cover;
}
.p-profile__name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.35;
}
.p-profile__title {
  font-size: 1.3rem;
  color: var(--color_sub);
  line-height: 2.0769230769;
}
.p-profile__content {
  line-height: 2;
}
.p-profile__link {
  line-height: 2;
}
.p-profile__media {
  display: flex;
  font-size: 2.4rem;
}
.p-profile__media > li:not(:last-child) {
  margin-right: 2.4rem;
}
.p-profile__media > li > a {
  display: inline-flex;
}
.p-profile__media > li > a[aria-label=Facebook] {
  color: var(--color_facebook);
}
.p-profile__media > li > a[aria-label=Twitter] {
  color: var(--color_twitter);
}
@media (max-width: 1023px) {
  .p-profile {
    margin-top: -1px;
  }
  .p-profile.-tag {
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
  }
  .p-profile.-production {
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--color_border);
  }

  .p-profile__picture {
    margin-bottom: 2.3rem;
  }

  .p-profile__content {
    font-size: 1.4rem;
  }

  .p-profile__link {
    margin-top: 0.5rem;
  }

  .p-profile__media {
    margin-top: 1rem;
    line-height: 1;
  }
}
@media (min-width: 1024px) {
  .p-profile {
    margin-right: auto;
    margin-left: auto;
  }
  .p-profile.-tag {
    padding: 6rem 11rem;
    margin-bottom: 3.5rem;
  }

  .p-profile__header {
    display: none;
  }

  .p-profile__picture {
    margin-bottom: 3rem;
  }

  .p-profile__content {
    font-size: 1.8rem;
  }

  .p-profile__link {
    margin-top: 1rem;
  }

  .p-profile__media {
    margin-top: 3rem;
  }
}
.p-profileItemModule {
  background: #fff;
}
.p-profileItemModule__image {
  width: 9.5rem;
}
.p-profileItemModule__image > img {
  width: 9.5rem;
  height: 9.5rem;
  object-fit: cover;
  border-radius: 50%;
}
.p-profileItemModule__image > picture {
  display: block;
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 50%;
  overflow: hidden;
}
.p-profileItemModule__image > picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-profileItemModule__text > dt {
  font-weight: 700;
}
.p-profileItemModule__link {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2;
}
@media (max-width: 1023px) {
  .p-profileItemModule {
    padding: 2rem 1.5rem;
  }
  .p-profileItemModule:not(:last-child) {
    margin-bottom: 1rem;
  }

  .p-profileItemModule__image {
    margin-bottom: 1.5rem;
  }

  .p-profileItemModule__text > dt {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    line-height: 1.375;
  }
  .p-profileItemModule__text > dd > p {
    font-size: 1.3rem;
    line-height: 1.7692307692;
  }

  .p-profileItemModule__link {
    margin-top: 1rem;
  }
  .p-profileItemModule__link > li:not(:last-child) {
    margin-bottom: 0.2rem;
  }
}
@media (min-width: 1024px) {
  .p-profileItemModule {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: #fff;
  }
  .p-profileItemModule:not(:last-child) {
    margin-bottom: 1.5rem;
  }

  .p-profileItemModule__image {
    margin-right: 2rem;
    flex-shrink: 0;
  }

  .p-profileItemModule__text {
    flex: 1;
  }
  .p-profileItemModule__text > dt {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    line-height: 1.3888888889;
  }
  .p-profileItemModule__text > dd > p {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }

  .p-profileItemModule__link {
    margin-top: 1.4rem;
  }
  .p-profileItemModule__link > li:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
.p-profileModule {
  padding: 1.5rem;
  background: var(--color_background);
}
.p-profileModule > dt {
  margin-bottom: 1.3rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3888888889;
}
@media (max-width: 1023px) {
  .p-profileModule {
    margin: 0 -1.5rem;
  }
}
.p-recommendedSection__heading {
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1023px) {
  .p-recommendedSection {
    padding-top: 2.5rem;
  }
  .p-recommendedSection.-margin-top {
    margin-top: 0.5rem;
  }

  .p-recommendedSection__heading {
    margin-bottom: 1em;
    font-size: 1.8rem;
    letter-spacing: 0.025em;
  }
}
@media (min-width: 1024px) {
  .p-recommendedSection {
    padding-top: 3rem;
  }
  .p-recommendedSection.-margin-top {
    margin-top: 3rem;
  }

  .p-recommendedSection__heading {
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
  }
}
.p-registerInfo {
  border-bottom: 1px solid var(--color_border);
}
.p-registerInfo__heading {
  font-weight: 400;
  border-bottom: 1px solid var(--color_border);
}
.p-registerInfo__list img {
  max-width: 100%;
  height: auto;
}
.p-registerInfo__caption {
  font-weight: 700;
}
@media (max-width: 1023px) {
  .p-registerInfo {
    padding: 15px 0 21px;
    margin-bottom: 21px;
  }

  .p-registerInfo__heading {
    font-size: 1.3rem;
    line-height: 2.4615384615;
    padding-bottom: 5px;
    margin-bottom: 25px;
  }

  .p-registerInfo__title {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  .p-registerInfo__list > li:not(:last-child) {
    margin-bottom: 20px;
  }
  .p-registerInfo__list > li figure {
    display: flex;
    align-items: center;
  }
  .p-registerInfo__list > li img {
    width: 100px;
    height: 100px;
    margin-right: 20px;
  }

  .p-registerInfo__caption {
    font-size: 1.3rem;
    line-height: 1.5384615385;
  }
}
@media (min-width: 1024px) {
  .p-registerInfo {
    padding: 31px 0 36px;
    margin-bottom: 38px;
  }

  .p-registerInfo__header {
    margin-bottom: 30px;
  }

  .p-registerInfo__heading {
    font-size: 1.6rem;
    line-height: 2;
    padding-bottom: 10px;
  }

  .p-registerInfo__title {
    margin-bottom: 78px;
  }

  .p-registerInfo__list {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 0 50px;
  }
  .p-registerInfo__list > li {
    max-width: 180px;
  }

  .p-registerInfo__caption {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    margin-top: 1.7rem;
    text-align: center;
  }
}
.p-relatedArticles {
  border-top: 1px solid var(--color_border);
}
.p-relatedArticles.-spacialFeature {
  border: 0;
}
.p-relatedArticles__heading {
  font-weight: 700;
}
.p-relatedArticles__list > li:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 1023px) {
  .p-relatedArticles {
    padding-top: 2.5rem;
  }
  .p-relatedArticles.-spacialFeature {
    padding-top: 0;
  }

  .p-relatedArticles__heading {
    margin-bottom: 2.2rem;
    font-size: 1.8rem;
    line-height: 1.3888888889;
  }

  .p-relatedArticles__button {
    margin-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-relatedArticles {
    padding-top: 5.5rem;
  }
  .p-relatedArticles.-spacialFeature {
    padding-top: 0;
    padding-bottom: 3rem;
  }

  .p-relatedArticles__heading {
    margin-bottom: 3.6rem;
    font-size: 2rem;
  }

  .p-relatedArticles__button {
    margin-top: 3rem;
  }
}
.p-search {
  display: flex;
  background: var(--color_background);
  border-radius: 0.5rem;
  overflow: hidden;
}
.p-search__button {
  width: 4.6rem;
  flex-shrink: 0;
}
.p-search__input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  color: inherit;
  font-family: inherit;
  line-height: 1;
  box-shadow: none;
}
.p-search__input::placeholder {
  color: var(--color_base);
  opacity: 0.25;
}
.p-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
@media (max-width: 1023px) {
  .p-search {
    height: 4.6rem;
  }

  .p-search__input {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .p-search {
    height: 3.6rem;
  }
  .p-search.-large {
    height: 4.6rem;
  }
  .p-search.-header {
    width: 22.5rem;
  }
  .p-search:hover {
    background-color: #eef0f1;
  }

  .p-search__input {
    font-size: 1.3rem;
  }
}
.p-section__heading {
  margin-bottom: 0.875em;
  font-family: var(--font_en);
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1023px) {
  .p-section.-margin-top {
    margin-top: 2rem;
  }

  .p-section__heading {
    font-size: 2.3rem;
  }

  .p-section__content {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-section.-margin-top {
    margin-top: 4rem;
  }

  .p-section__heading {
    font-size: 3.2rem;
  }

  .p-section__content {
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color_border);
  }

  .p-section__button {
    margin-top: 3rem;
  }
}
.p-series + .p-series, .p-series[data-added=true] {
  border-top: 1px solid var(--color_border);
}
.p-series__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-series__heading {
  display: flex;
  align-items: center;
  padding-right: 1.5rem;
  font-weight: 700;
  color: var(--color_series);
  line-height: 1.2;
}
.p-series__link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--color_link);
  font-weight: 700;
}
.p-series__link::before {
  order: 2;
  margin-left: 0.2rem;
}
@media (max-width: 1023px) {
  .p-series + .p-series {
    margin-top: 2rem;
    padding: 2rem 0;
  }
  .p-series[data-added=true] {
    padding-top: 2rem;
  }

  .p-series__header {
    margin-bottom: 1.4rem;
  }

  .p-series__heading {
    font-size: 1.6rem;
  }
  .p-series__heading::before {
    margin-right: 0.3rem;
    font-size: 0.6rem;
  }

  .p-series__link {
    font-size: 1.2rem;
  }
}
@media (min-width: 1024px) {
  .p-series {
    padding-bottom: 4rem;
  }
  .p-series + .p-series {
    padding-top: 3.6rem;
  }
  .p-series:last-child {
    padding-bottom: 1rem;
  }
  .p-series[data-added=true] {
    padding-top: 3.6rem;
  }

  .p-series__header {
    margin-bottom: 1.8rem;
  }

  .p-series__heading {
    font-size: 1.8rem;
    line-height: 1;
  }
  .p-series__heading::before {
    margin-right: 0.5rem;
    font-size: 0.8rem;
  }

  .p-series__link {
    font-size: 1.3rem;
  }
  .p-series__link:hover {
    opacity: 0.6;
  }
}
@media (max-width: 1023px) {
  .p-seriesModule {
    padding-top: 3rem;
    border-top: 1px solid var(--color_border);
  }
  .p-seriesModule > li:not(:first-child) {
    padding-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-seriesModule > li {
    padding: 2rem 0;
    border-top: 1px solid var(--color_border);
  }
}
.p-settings__section:not(:last-child) {
  margin-bottom: 35px;
}
.p-settings__content {
  border: 1px solid var(--color_border);
}
.p-settings__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-settings__itemControl {
  margin-left: 25px;
}
.p-settings__list.-dotted li::before {
  content: "・";
  margin-right: 0.3rem;
}
.p-settings__list > li a {
  color: var(--color_link);
}
.p-settings__leave {
  color: var(--color_link);
}
.p-settings__leave i {
  margin-right: 10px;
  vertical-align: -2px;
  font-size: 1.6rem;
}
.p-settings__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1023px) {
  .p-settings__content {
    padding: 25px 15px;
  }

  .p-settings__itemHeading {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }

  .p-settings__itemText {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .p-settings__list > li:not(:last-child) {
    margin-bottom: 20px;
  }

  .p-settings__grid {
    border-right: 1px solid var(--color_border);
    border-bottom: 1px solid var(--color_border);
    border-left: 1px solid var(--color_border);
    border-radius: 5px;
  }

  .p-settings__gridItem {
    border-top: 1px solid var(--color_border);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  .p-settings__nav {
    margin-top: 20px;
  }
}
@media (min-width: 1024px) {
  .p-settings__content {
    padding: 40px;
  }

  .p-settings__itemHeading {
    font-size: 1.8rem;
    margin-bottom: 0.9rem;
  }

  .p-settings__itemText {
    margin-right: 30px;
    font-size: 1.6rem;
  }

  .p-settings__list > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .p-settings__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .p-settings__gridItem {
    border-right: 1px solid var(--color_border);
    border-bottom: 1px solid var(--color_border);
    /**
    * 左のボーダー（奇数）
    */
    /**
    * 上のボーダー（最初から2つ目まで）
    */
    /**
    * 上の角丸
    */
    /**
    * 2つ以上の場合の下の角丸
    */
    /**
    * 1つの場合の下の角丸
    */
  }
  .p-settings__gridItem:nth-child(odd) {
    border-left: 1px solid var(--color_border);
  }
  .p-settings__gridItem:nth-child(-n+2) {
    border-top: 1px solid var(--color_border);
  }
  .p-settings__gridItem:nth-child(1) {
    border-top-left-radius: 5px;
  }
  .p-settings__gridItem:nth-child(2) {
    border-top-right-radius: 5px;
  }
  .p-settings__gridItem:nth-last-child(1) {
    border-bottom-right-radius: 5px;
  }
  .p-settings__gridItem:nth-last-child(2) {
    border-bottom-left-radius: 5px;
  }
  .p-settings__gridItem:first-child:last-child {
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
  }

  .p-settings__leave {
    font-size: 1.4rem;
  }

  .p-settings__nav {
    margin-top: 30px;
  }
}
.p-slideshowModule {
  width: 100%;
  overflow: hidden;
}
.p-slideshowModule__image {
  position: relative;
  padding-top: 66.7%;
  background: var(--color_background);
}
.p-slideshowModule__image > img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translateX(-50%) translateY(-50%);
}
.p-slideshowModule__image > figcaption {
  position: relative;
  display: block;
  font-size: 1.2rem;
  color: var(--color_sub);
  line-height: 1.75;
  background: rgba(235, 235, 235, 0.6);
  padding: 5px 15px;
  z-index: 1;
}
/**
 * 記事詳細の、複数のカルーセルタイプで同じボタンスタイルを使うため、 project/_article.scss に移動
 * ここでの個別指定が不要な事が確定次第、コメント削除
 */
.p-slideshowModule__thumbnails {
  margin-top: 0.8rem;
}
.p-slideshowModule__thumbnail {
  padding-top: 66.6666666667%;
  position: relative;
  opacity: 0.5;
  cursor: pointer;
}
.p-slideshowModule__thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.swiper-slide-thumb-active .p-slideshowModule__thumbnail {
  opacity: 1;
}
.swiper-slide-thumb-active .p-slideshowModule__thumbnail::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 3px solid;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 1024px) {
  .p-slideshowModule__thumbnail:hover {
    opacity: 1;
  }
}
.p-smallAuthor {
  display: grid;
}
.p-smallAuthor__image {
  border-radius: 50%;
  object-fit: cover;
}
.p-smallAuthor__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.5;
}
.p-smallAuthor__text > span {
  color: var(--color_sub);
}
.p-smallAuthor__text > em {
  font-weight: 700;
}
@media (max-width: 1023px) {
  .p-smallAuthor {
    grid-template-columns: 4rem 1fr;
  }

  .p-smallAuthor__image {
    width: 4rem;
    height: 4rem;
  }

  .p-smallAuthor__text {
    padding-left: 0.6rem;
  }
  .p-smallAuthor__text > span {
    font-size: 1rem;
  }
  .p-smallAuthor__text > em {
    font-size: 1.1rem;
  }
}
@media (min-width: 1024px) {
  .p-smallAuthor {
    grid-template-columns: 5rem 1fr;
  }
  .p-smallAuthor:hover {
    opacity: 0.6;
  }

  .p-smallAuthor__image {
    width: 5rem;
    height: 5rem;
  }

  .p-smallAuthor__text {
    padding-left: 1rem;
  }
  .p-smallAuthor__text > span {
    font-size: 1.1rem;
  }
  .p-smallAuthor__text > em {
    font-size: 1.2rem;
  }
}
.p-specialFeature {
  position: relative;
  color: #fff;
}
.p-specialFeature::before {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-specialFeature__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.p-specialFeature__heading {
  display: flex;
  align-items: center;
  font-family: var(--font_en);
  font-weight: 700;
}
.p-specialFeature__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3888888889;
}
@media (max-width: 1023px) {
  .p-specialFeature {
    min-height: 106.6666666667vw;
    padding: 3.5rem 3rem;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
  .p-specialFeature::before {
    width: 100%;
    opacity: 0.5;
    background: linear-gradient(to bottom, #17325b 0%, rgba(23, 50, 91, 0) 100%);
  }
  .p-specialFeature.-margin-top {
    margin-top: 4rem;
  }

  .p-specialFeature__heading {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  .p-specialFeature__heading::before {
    margin-right: 0.5rem;
  }

  .p-specialFeature__title {
    font-size: 3.2rem;
    line-height: 1.40625;
  }

  .p-specialFeature__lead {
    display: none;
  }

  .p-specialFeature__button {
    margin-top: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .p-specialFeature {
    min-height: 44.3rem;
    padding: 4rem 50% 4rem 4rem;
  }
  .p-specialFeature::before {
    width: 69.2840646651%;
    opacity: 0.75;
    background: linear-gradient(to right, #17325b 0%, rgba(23, 50, 91, 0) 100%);
  }
  .p-specialFeature.-margin-top {
    margin-top: 6rem;
  }

  .p-specialFeature__heading {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
  }
  .p-specialFeature__heading::before {
    margin-right: 0.8rem;
  }

  .p-specialFeature__title {
    font-size: 3.6rem;
    line-height: 1.3888888889;
  }

  .p-specialFeature__lead {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .p-specialFeature__button {
    margin-top: 2.2rem;
  }
}
.p-specialFeatureCard__image {
  position: relative;
}
.p-specialFeatureCard__image::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(to bottom, #17325a 0%, rgba(23, 50, 90, 0) 100%);
  opacity: 0.7;
}
.p-specialFeatureCard__title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  font-weight: 700;
  color: #fff;
}
.p-specialFeatureCard__text {
  line-height: 2;
}
@media (max-width: 1023px) {
  .p-specialFeatureCard__title {
    padding: 2.4rem;
    font-size: 2.4rem;
    line-height: 1.25;
  }

  .p-specialFeatureCard__text {
    padding-top: 1.5rem;
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .p-specialFeatureCard {
    display: flex;
    align-items: center;
  }

  .p-specialFeatureCard__image {
    width: 44.3rem;
    flex-shrink: 0;
  }

  .p-specialFeatureCard__title {
    padding: 1.6rem 2rem;
    font-size: 3.2rem;
    line-height: 1.28125;
  }

  .p-specialFeatureCard__text {
    flex: 1;
    padding-left: 3rem;
    font-size: 1.6rem;
  }
}
.p-speechBaloonItemModule {
  display: flex;
  align-items: flex-start;
}
.p-speechBaloonItemModule:not(:last-child) {
  margin-bottom: 3rem;
}
.p-speechBaloonItemModule:nth-child(even) {
  flex-direction: row-reverse;
}
.p-speechBaloonItemModule__image {
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
}
.p-speechBaloonItemModule__name {
  font-weight: bold;
}
.p-speechBaloonItemModule__text {
  flex: 1;
  background: var(--color_background);
  position: relative;
}
.p-speechBaloonItemModule__text::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-style: solid;
}
.p-speechBaloonItemModule:nth-child(odd) .p-speechBaloonItemModule__text::before {
  right: 100%;
  border-color: transparent var(--color_background) transparent transparent;
}
.p-speechBaloonItemModule:nth-child(even) .p-speechBaloonItemModule__image {
  order: 1;
}
.p-speechBaloonItemModule:nth-child(even) .p-speechBaloonItemModule__name {
  text-align: right;
}
.p-speechBaloonItemModule:nth-child(even) .p-speechBaloonItemModule__text::before {
  left: 100%;
  border-color: transparent transparent transparent var(--color_background);
}
@media (max-width: 1023px) {
  .p-speechBaloonItemModule:not(:last-child) {
    margin-bottom: 2rem;
  }

  .p-speechBaloonItemModule__image {
    width: 4.5rem;
    height: 4.5rem;
  }

  .p-speechBaloonItemModule__name {
    font-size: 1.1rem;
    line-height: 26px;
  }
  .p-speechBaloonItemModule__name:empty {
    display: none;
  }

  .p-speechBaloonItemModule__text {
    padding: 1.8rem 2rem;
  }
  .p-speechBaloonItemModule__text::before {
    top: 1.4rem;
  }
  .p-speechBaloonItemModule__text > p {
    font-size: 1.4rem;
    line-height: 1.7857142857;
  }

  .p-speechBaloonItemModule:nth-child(odd) .p-speechBaloonItemModule__name,
.p-speechBaloonItemModule:nth-child(odd) .p-speechBaloonItemModule__text {
    margin-left: 1.3rem;
  }
  .p-speechBaloonItemModule:nth-child(odd) .p-speechBaloonItemModule__name::before,
.p-speechBaloonItemModule:nth-child(odd) .p-speechBaloonItemModule__text::before {
    border-width: 6px 4px 6px 0;
  }

  .p-speechBaloonItemModule:nth-child(even) .p-speechBaloonItemModule__name,
.p-speechBaloonItemModule:nth-child(even) .p-speechBaloonItemModule__text {
    margin-right: 1.3rem;
  }
  .p-speechBaloonItemModule:nth-child(even) .p-speechBaloonItemModule__name::before,
.p-speechBaloonItemModule:nth-child(even) .p-speechBaloonItemModule__text::before {
    border-width: 6px 0 6px 4px;
  }
}
@media (min-width: 1024px) {
  .p-speechBaloonItemModule:not(:last-child) {
    margin-bottom: 3rem;
  }

  .p-speechBaloonItemModule__image {
    width: 6rem;
    height: 6rem;
  }

  .p-speechBaloonItemModule__name {
    font-size: 1.2rem;
    line-height: 30px;
  }

  .p-speechBaloonItemModule__text {
    padding: 2.4rem 3rem;
  }
  .p-speechBaloonItemModule__text::before {
    top: 1.8rem;
  }
  .p-speechBaloonItemModule__text > p {
    font-size: 1.6rem;
    line-height: 2;
  }

  .p-speechBaloonItemModule:nth-child(odd) .p-speechBaloonItemModule__name,
.p-speechBaloonItemModule:nth-child(odd) .p-speechBaloonItemModule__text {
    margin-left: 1.6rem;
  }
  .p-speechBaloonItemModule:nth-child(odd) .p-speechBaloonItemModule__text::before {
    border-width: 12px 6px 12px 0;
  }

  .p-speechBaloonItemModule:nth-child(even) .p-speechBaloonItemModule__name,
.p-speechBaloonItemModule:nth-child(even) .p-speechBaloonItemModule__text {
    margin-right: 1.6rem;
  }
  .p-speechBaloonItemModule:nth-child(even) .p-speechBaloonItemModule__text::before {
    border-width: 12px 0 12px 6px;
  }
}
.p-submedia {
  border-top: 1px solid var(--color_border);
}
.p-submedia__header {
  display: flex;
}
.p-submedia__copy {
  font-weight: 700;
}
.p-submedia__heading > img {
  display: block;
}
.p-submedia__sponsor {
  color: var(--color_sub);
}
@media (max-width: 1023px) {
  .p-submedia {
    padding: 2rem 0;
  }

  .p-submedia__header {
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 2rem;
  }

  .p-submedia__heading {
    width: 50%;
  }

  .p-submedia__copy {
    width: 50%;
    padding-bottom: 1em;
    font-size: 1.2rem;
    order: 2;
    text-align: right;
  }

  .p-submedia__fika {
    width: 9.8rem;
  }

  .p-submedia__kompass {
    width: 18rem;
  }

  .p-submedia__sponsor {
    display: block;
    width: 100%;
    padding-left: 1em;
    font-size: 1rem;
    order: 3;
    text-align: right;
  }

  .p-submedia__button.-mobile {
    margin-top: 2.5rem;
  }
  .p-submedia__button.-desktop {
    display: none;
  }
}
@media (min-width: 1024px) {
  .p-submedia {
    display: flex;
    padding: 3rem 0;
  }

  .p-submedia__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 30rem;
    flex-shrink: 0;
  }

  .p-submedia__copy {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
  }

  .p-submedia__heading {
    margin-bottom: 1.5rem;
  }

  .p-submedia__fika {
    width: 15rem;
  }

  .p-submedia__kompass {
    width: 22rem;
  }

  .p-submedia__sponsor {
    font-size: 1.1rem;
  }

  .p-submedia__content {
    padding-left: 6rem;
    flex: 1;
  }

  .p-submedia__button.-mobile {
    display: none;
  }
  .p-submedia__button.-desktop {
    margin-top: 3rem;
  }
}
.p-tab__list {
  display: flex;
  margin-bottom: 0.5rem;
  background: #fff;
}
.p-tab__list > li {
  flex: 1;
  flex-shrink: 0;
}
.p-tab__item {
  width: 100%;
  padding: 1rem;
  position: relative;
  font-weight: 700;
  color: var(--color_base);
}
.p-tab__item::before {
  content: "";
  max-width: 100%;
  height: 1rem;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 1;
  margin: auto;
  background: #fff url(../img/background/tab_selected.svg) 50% 0 no-repeat;
  visibility: hidden;
}
.p-tab__item::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 0;
  margin: auto;
  background: var(--color_base);
  visibility: hidden;
}
.p-tab__item[aria-pressed=true] {
  pointer-events: none;
}
.p-tab__item[aria-pressed=true]::before, .p-tab__item[aria-pressed=true]::after {
  visibility: visible;
}
.p-tab__item[aria-pressed=false] {
  border-bottom: 1px solid var(--color_border);
  color: rgba(0, 10, 2, 0.25);
}
.p-tab__container {
  position: relative;
}
.p-tab__content {
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  backface-visibility: hidden;
}
.p-tab__content[aria-hidden=true] {
  transition-duration: 0.15s;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1023px) {
  .p-tab__list {
    margin: 0 -1.5rem 1.5rem;
  }

  .p-tab__item {
    font-size: 1.5rem;
  }
  .p-tab__item::before {
    width: 10rem;
  }

  .p-tab__button {
    margin-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-tab__item {
    font-size: 1.6rem;
  }
  .p-tab__item::before {
    width: 41.5rem;
    background-size: 100% auto;
  }
  .p-tab__item[aria-pressed=false]:hover {
    color: var(--color_base);
  }

  .p-tab__button {
    margin-top: 4rem;
  }
}
.p-tagDetail {
  border-bottom: 1px solid var(--color_border);
}
.p-tagDetail__content p {
  line-height: 2;
}
.p-tagDetail__link {
  line-height: 2;
}
.p-tagDetail__media {
  display: flex;
  font-size: 2.4rem;
}
.p-tagDetail__media > li:not(:last-child) {
  margin-right: 2.4rem;
}
.p-tagDetail__media > li > a {
  display: inline-flex;
}
.p-tagDetail__media > li > a[aria-label=Facebook] {
  color: var(--color_facebook);
}
.p-tagDetail__media > li > a[aria-label=Twitter] {
  color: var(--color_twitter);
}
@media (max-width: 1023px) {
  .p-tagDetail {
    margin-top: -1px;
    padding-bottom: 2rem;
  }

  .p-tagDetail__content {
    margin-top: 2.5rem;
  }
  .p-tagDetail__content p {
    font-size: 1.4rem;
  }

  .p-tagDetail__link {
    margin-top: 0.5rem;
  }

  .p-tagDetail__media {
    margin-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .p-tagDetail {
    padding: 6rem 11rem;
    margin-right: auto;
    margin-left: auto;
  }

  .p-tagDetail__content {
    margin-top: 3.5rem;
  }
  .p-tagDetail__content p {
    font-size: 1.8rem;
  }

  .p-tagDetail__link {
    margin-top: 1rem;
  }

  .p-tagDetail__media {
    margin-top: 3rem;
  }
}
.p-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: -0.5rem;
}
.p-tags > li {
  padding-top: 0.5rem;
}
.p-tags > li:not(:last-child) {
  margin-right: 0.5rem;
}
.p-terms__header {
  line-height: 1;
}
.p-terms__list > li {
  border-bottom: 1px solid var(--color_border);
}
.p-terms__list > li:last-child {
  margin-bottom: 0;
}
.p-terms__list a {
  color: var(--color_link);
  font-weight: 700;
}
.p-terms__list a > i {
  vertical-align: -2px;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .p-terms {
    margin-bottom: 20px;
  }

  .p-terms__header {
    margin-bottom: 5px;
  }

  .p-terms__list > li {
    padding: 16px 0 18px;
  }
  .p-terms__list a {
    font-size: 1.4rem;
  }
  .p-terms__list a > i {
    margin-right: 3px;
  }
}
@media (min-width: 1024px) {
  .p-terms {
    margin-bottom: 60px;
  }

  .p-terms__header {
    margin-bottom: 13px;
  }

  .p-terms__content {
    max-width: 76.7494356659%;
    margin-left: auto;
  }

  .p-terms__list > li {
    padding: 28px 0 27px;
  }
  .p-terms__list a {
    font-size: 1.8rem;
  }
  .p-terms__list a > i {
    margin-right: 8px;
  }
}
.p-ticker {
  display: flex;
  align-items: center;
}
.p-ticker > dt {
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  font-family: var(--font_en);
  font-weight: 700;
}
.p-ticker > dt::after {
  content: "";
  width: 1px;
  height: 1.6rem;
  background: var(--color_base);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.p-ticker > dd {
  display: flex;
  overflow: hidden;
  flex: 1;
  white-space: nowrap;
  font-size: 1.3rem;
}
.p-ticker__link {
  display: flex;
  width: 100%;
  transform: translate3d(0, 0, 0);
}
.p-ticker__text {
  width: auto;
}
.p-ticker__text > span {
  display: inline-flex;
  padding-left: 1em;
}
@media (max-width: 1023px) {
  .p-ticker {
    height: 4.4rem;
    padding-left: 1.5rem;
  }
  .p-ticker > dt {
    padding-right: 1.4rem;
    font-size: 1.2rem;
  }
  .p-ticker > dt::before {
    margin-right: 0.3rem;
  }
  .p-ticker > dd > span {
    padding-left: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .p-ticker {
    height: 3.8rem;
    padding: 0 1.8rem 0 2rem;
    border-radius: 0.5rem;
    background: var(--color_background);
  }
  .p-ticker > dt {
    padding-right: 1.6rem;
    font-size: 1.3rem;
  }
  .p-ticker > dt::before {
    margin-right: 0.8rem;
  }
  .p-ticker > dd > span {
    padding-left: 1.5rem;
  }

  .p-ticker__link a:hover {
    opacity: 0.6;
  }
}
.p-topicCard {
  display: block;
  padding: 1.5rem 2rem;
  position: relative;
  border: 1px solid var(--color_border);
}
.p-topicCard__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3888888889;
}
.p-topicCard__arrow {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  font-size: 1.8rem;
}
@media (max-width: 1023px) {
  .p-topicCard {
    min-height: 15.6rem;
  }
}
@media (min-width: 1024px) {
  .p-topicCard {
    min-height: 18.8rem;
  }
  .p-topicCard:hover {
    opacity: 0.6;
  }
}
.p-topicsSection__heading {
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1023px) {
  .p-topicsSection {
    padding-top: 2.5rem;
  }
  .p-topicsSection + .p-topicsSection {
    margin-top: 1.5rem;
  }

  .p-topicsSection__heading {
    margin-bottom: 1em;
    font-size: 1.8rem;
    letter-spacing: 0.025em;
  }
}
@media (min-width: 1024px) {
  .p-topicsSection {
    padding-top: 3rem;
  }
  .p-topicsSection + .p-topicsSection {
    margin-top: 3rem;
    border-top: 1px solid var(--color_border);
  }

  .p-topicsSection__heading {
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
  }
}
.p-widgetBanner {
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (max-width: 1023px) {
  .p-widgetBanner {
    margin-top: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-widgetBanner {
    gap: 40px;
    margin-top: 3rem;
  }
}
.p-wysiwygModule {
  word-break: break-word;
  line-height: 2;
}
.p-wysiwygModule h2,
.p-wysiwygModule h3,
.p-wysiwygModule h4 {
  margin-bottom: 1em;
  font-weight: 700;
}
.p-wysiwygModule h2 {
  position: relative;
}
.p-wysiwygModule h4 {
  border-left: 2px solid var(--color_base);
}
.p-wysiwygModule p {
  line-height: 2;
}
.p-wysiwygModule blockquote {
  position: relative;
}
.p-wysiwygModule blockquote::before, .p-wysiwygModule blockquote::after {
  content: "";
  position: absolute;
}
.p-wysiwygModule blockquote::before {
  top: 0;
  left: 0;
  background: url(../img/background/quote_top.svg) 0 0/cover no-repeat;
}
.p-wysiwygModule blockquote::after {
  right: 0;
  bottom: 0;
  background: url(../img/background/quote_bottom.svg) 0 0/cover no-repeat;
}
.p-wysiwygModule blockquote > p {
  line-height: 2;
}
.p-wysiwygModule blockquote > p::before, .p-wysiwygModule blockquote > p::after {
  content: "";
  height: 1px;
  margin: auto;
  position: absolute;
}
.p-wysiwygModule blockquote > p::before {
  background: var(--color_border);
  right: 0;
  left: 4rem;
}
.p-wysiwygModule blockquote > p::after {
  background: var(--color_border);
  left: 0;
}
.p-wysiwygModule blockquote > cite {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-style: normal;
  line-height: 2.5;
  color: var(--color_sub);
}
.p-wysiwygModule ol {
  counter-reset: order;
}
.p-wysiwygModule ol > li {
  display: flex;
  align-items: flex-start;
  counter-increment: order;
}
.p-wysiwygModule ol > li::before {
  content: counter(order) ".";
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
  font-family: var(--font_en);
  font-weight: 700;
}
.p-wysiwygModule ul > li {
  position: relative;
}
.p-wysiwygModule ul > li::before {
  content: "";
  border-radius: 50%;
  border: 2px solid;
  position: absolute;
}
.p-wysiwygModule table {
  width: 100%;
  table-layout: fixed;
  border: 1px solid var(--color_border);
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 1.7857142857;
}
.p-wysiwygModule table tr > th {
  padding: 1rem 1.5rem;
  border: 1px solid var(--color_border);
  background: var(--color_background);
  font-weight: 700;
  text-align: left;
}
.p-wysiwygModule table tr > td {
  padding: 1rem 1.5rem;
  border: 1px solid var(--color_border);
}
.p-wysiwygModule figure {
  display: block;
}
.p-wysiwygModule figure > img {
  max-width: 100%;
  height: auto;
}
.p-wysiwygModule figure > figcaption {
  margin-top: 0.75em;
  font-size: 1.2rem;
  color: var(--color_sub);
  line-height: 1.75;
}
.p-wysiwygModule small {
  display: block;
  font-size: 1.3rem;
  line-height: 1.7692307692;
  color: var(--color_sub);
}
.p-wysiwygModule b {
  font-weight: 700;
}
.p-wysiwygModule b[data-color="1"] {
  color: var(--color_dialog_1);
}
.p-wysiwygModule b[data-color="2"] {
  color: var(--color_dialog_2);
}
.p-wysiwygModule b[data-color="3"] {
  color: var(--color_dialog_3);
}
.p-wysiwygModule a {
  color: var(--color_link);
}
.p-wysiwygModule u {
  display: inline-flex;
  position: relative;
  text-decoration: none;
}
.p-wysiwygModule u::before {
  content: "";
  width: 100%;
  height: 0.5rem;
  background: var(--color_underline);
  position: absolute;
  bottom: 0.5em;
  left: 0;
  z-index: -1;
}
.p-wysiwygModule :is(p, .wp-caption) img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-wysiwygModule .wp-caption {
  width: auto !important;
}
.p-wysiwygModule .wp-caption-text {
  margin-top: 0.75em;
  font-size: 1.2rem;
  color: var(--color_sub);
  line-height: 1.75;
}
.p-wysiwygModule .cdx-text-color {
  color: var(--color);
}
@media (max-width: 1023px) {
  .p-wysiwygModule {
    font-size: 1.6rem;
  }
  .p-wysiwygModule > *:not(:first-child) {
    margin-top: 2rem;
  }
  .p-wysiwygModule h2 {
    padding-bottom: 2.4rem;
    font-size: 2rem;
    line-height: 1.4;
    background: url(../img/background/h2.svg) 0 100%/4rem 0.4rem no-repeat;
  }
  .p-wysiwygModule h3 {
    font-size: 1.8rem;
    line-height: 1.3888888889;
  }
  .p-wysiwygModule h4 {
    padding-left: 1.2rem;
    font-size: 1.6rem;
    line-height: 1.375;
  }
  .p-wysiwygModule p + p:not(:first-child) {
    margin-top: 2rem;
  }
  .p-wysiwygModule blockquote {
    font-size: 1.5rem;
    padding: 2.5rem 3rem;
  }
  .p-wysiwygModule blockquote::before, .p-wysiwygModule blockquote::after {
    width: 2.3rem;
    height: 2.3rem;
  }
  .p-wysiwygModule blockquote > p::before {
    top: 0.5rem;
    left: 3rem;
  }
  .p-wysiwygModule blockquote > p::after {
    right: 3rem;
    bottom: 0.5rem;
  }
  .p-wysiwygModule ol {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
  .p-wysiwygModule ol > li::before {
    width: 2.4rem;
    padding-right: 1rem;
    font-size: 1.5rem;
  }
  .p-wysiwygModule ol > li:not(:last-child) {
    margin-bottom: 0.6em;
  }
  .p-wysiwygModule ul {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
  .p-wysiwygModule ul > li {
    padding-left: 2.4rem;
  }
  .p-wysiwygModule ul > li::before {
    width: 0.9rem;
    height: 0.9rem;
    top: 0.4rem;
    left: 0.4rem;
  }
  .p-wysiwygModule ul > li:not(:last-child) {
    margin-bottom: 0.6em;
  }
}
@media (min-width: 1024px) {
  .p-wysiwygModule {
    font-size: 1.8rem;
  }
  .p-wysiwygModule > *:not(:first-child) {
    margin-top: 5.5rem;
  }
  .p-wysiwygModule h2 {
    padding-bottom: 3.6rem;
    font-size: 2.8rem;
    line-height: 1.3928571429;
    background: url(../img/background/h2.svg) 0 100%/5rem 0.5rem no-repeat;
  }
  .p-wysiwygModule h3 {
    font-size: 2rem;
    line-height: 1.95;
  }
  .p-wysiwygModule h4 {
    padding-left: 1.5rem;
    font-size: 1.8rem;
    line-height: 1.3888888889;
  }
  .p-wysiwygModule p + p:not(:first-child) {
    margin-top: 3rem;
  }
  .p-wysiwygModule blockquote {
    padding: 4rem;
    font-size: 1.6rem;
  }
  .p-wysiwygModule blockquote::before, .p-wysiwygModule blockquote::after {
    width: 3.2rem;
    height: 3.2rem;
  }
  .p-wysiwygModule blockquote > p::before {
    top: 1rem;
    left: 4rem;
  }
  .p-wysiwygModule blockquote > p::after {
    right: 4rem;
    bottom: 1rem;
  }
  .p-wysiwygModule ol {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
  .p-wysiwygModule ol > li::before {
    width: 3.5rem;
    padding-right: 1.2rem;
    font-size: 1.8rem;
  }
  .p-wysiwygModule ol > li:not(:last-child) {
    margin-bottom: 1em;
  }
  .p-wysiwygModule ul {
    font-size: 1.6rem;
    line-height: 1.4375;
  }
  .p-wysiwygModule ul > li {
    padding-left: 3.5rem;
  }
  .p-wysiwygModule ul > li::before {
    width: 1rem;
    height: 1rem;
    top: 0.6rem;
    left: 0.6rem;
  }
  .p-wysiwygModule ul > li:not(:last-child) {
    margin-bottom: 1em;
  }
}

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